You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ Run the program using the following commands:
59
59
```sh
60
60
$ ls
61
61
Project.toml README.md main.jl src
62
-
$ julia main.jl
62
+
$ julia --project main.jl
63
63
```
64
64
65
65
You will see an output similar to this:
@@ -93,6 +93,7 @@ You will see an output similar to this:
93
93
Alternatively, you can launch the functionality directly from Julia:
94
94
95
95
```julia
96
+
$ julia --project
96
97
julia>using TerminalSystemMonitor: main; main()
97
98
```
98
99
@@ -104,10 +105,9 @@ Please load `CUDA.jl` package in advance:
104
105
julia>using CUDA; using TerminalSystemMonitor: main; main()
105
106
```
106
107
107
-
108
108
## Why not `htop`?
109
109
110
-
You might be familiar with the [htop](https://github.com/htop-dev/htop) command, which provides similar functionality. You can use `htop` in Julia as follows:
110
+
You might be familiar with the [htop-dev/htop](https://github.com/htop-dev/htop), which provides similar functionality. You can use the `htop` command in Julia as follows:
111
111
112
112
```julia
113
113
julia>using Htop_jll; run(Htop_jll.htop())
@@ -117,10 +117,14 @@ However, `Htop_jll` only supports Unix-based systems. The TerminalSystemMonitor.
117
117
118
118
## Why not `bottom`?
119
119
120
-
You can also use [bottom](https://github.com/ClementTsang/bottom), also known as the `btm` command:
120
+
You can also use [ClementTsang/bottom](https://github.com/ClementTsang/bottom), also known as the `btm` command:
121
121
122
122
```
123
123
btm -b
124
124
```
125
125
126
126
However, our Julia package [TerminalSystemMonitor.jl](https://github.com/AtelierArith/TerminalSystemMonitor.jl) offers a cross-platform solution that integrates directly with Julia, providing similar functionality in a familiar environment.
127
+
128
+
## Can I visualize GPU Apple Silicon processors?
129
+
130
+
Technically yes, however, you may want to chekcout [context-labs/mactop](https://github.com/context-labs/mactop) or [tlkh/asitop](https://github.com/tlkh/asitop) to start instantly. To get information regarding GPU, we need to call `powermetrics` command which requires root privilege. If you are familiar with Rust language, [vladkens/macmon](https://github.com/vladkens/macmon) is what you need. It states "sudoless performance monitoring for Apple Silicon processors".
0 commit comments