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
binaries : Improve rpc-server and export-graph-ops names. (ggml-org#25045)
Tests are generally prefixed with -test, so rename export-graph-ops
accordingly.
rpc-server is probably too generic a name for /usr/bin. Because it
should work with any ggml application, it is renamed to ggml-rpc-server.
Copy file name to clipboardExpand all lines: SECURITY.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ To protect sensitive data from potential leaks or unauthorized access, it is cru
80
80
### Untrusted environments or networks
81
81
82
82
If you can't run your models in a secure and isolated environment or if it must be exposed to an untrusted network, make sure to take the following security precautions:
83
-
* Do not use the RPC backend, [rpc-server](https://github.com/ggml-org/llama.cpp/tree/master/tools/rpc) and [llama-server](https://github.com/ggml-org/llama.cpp/tree/master/tools/server) functionality (see https://github.com/ggml-org/llama.cpp/pull/13061).
83
+
* Do not use the RPC backend, [ggml-rpc-server](https://github.com/ggml-org/llama.cpp/tree/master/tools/rpc) and [llama-server](https://github.com/ggml-org/llama.cpp/tree/master/tools/server) functionality (see https://github.com/ggml-org/llama.cpp/pull/13061).
84
84
* Confirm the hash of any downloaded artifact (e.g. pre-trained model weights) matches a known-good value.
85
85
* Encrypt your data if sending it over the network.
When started, the `rpc-server` will detect and expose all available `CUDA` devices:
53
+
When started, the `ggml-rpc-server` will detect and expose all available `CUDA` devices:
54
54
55
55
```bash
56
-
$ bin/rpc-server
56
+
$ bin/ggml-rpc-server
57
57
ggml_cuda_init: GGML_CUDA_FORCE_MMQ: no
58
58
ggml_cuda_init: GGML_CUDA_FORCE_CUBLAS: no
59
59
ggml_cuda_init: found 1 CUDA devices:
@@ -67,14 +67,14 @@ Devices:
67
67
68
68
You can control the set of exposed CUDA devices with the `CUDA_VISIBLE_DEVICES` environment variable or the `--device` command line option. The following two commands have the same effect:
0 commit comments