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
+4-9Lines changed: 4 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,10 +98,8 @@ For more detailed API documentation, see the [API Reference](doc/API.md).
98
98
99
99
If you are building a Docker image, you just need make and Docker installed:
100
100
101
-
-`DOCKER_REGISTRY=docker.io/user make docker` - builds a Docker container with the
102
-
server binary for CUDA, tagged to a specific registry
103
-
-`OS=linux GGML_CUDA=0 DOCKER_REGISTRY=docker.io/user make docker` - builds a Docker container
104
-
for Linux, with the server binary without CUDA, tagged to a specific registry
101
+
-`GGML_CUDA=1 DOCKER_REGISTRY=docker.io/user make docker` - builds a Docker container with the server binary for CUDA, tagged to a specific registry
102
+
-`OS=linux GGML_CUDA=0 DOCKER_REGISTRY=docker.io/user make docker` - builds a Docker container for Linux, with the server binary without CUDA, tagged to a specific registry
105
103
106
104
### From Source
107
105
@@ -110,15 +108,12 @@ directory and have the following dependencies met:
110
108
111
109
- Recent version of Go (ie, 1.22+)
112
110
- C++ compiler and cmake
113
-
- FFmpeg 6.1 libraries (see the [build documentation](doc/build.md) for more information)
114
111
- For CUDA, you'll need the CUDA toolkit installed including the `nvcc` compiler
115
112
116
113
The following `Makefile` targets can be used:
117
114
118
-
-`make server` - creates the server binary, and places it in the `build` directory. Should
119
-
link to Metal on macOS
120
-
-`GGML_CUDA=1 make server` - creates the server binary linked to CUDA, and places it
121
-
in the `build` directory. Should work for amd64 and arm64 (Jetson) platforms
115
+
-`OS=linux make whisper` - creates the server binary, and places it in the `build` directory. Should link to Metal on macOS
116
+
-`OS=linux GGML_CUDA=1 make whisper` - creates the server binary linked to CUDA, and places it in the `build` directory. Should work for amd64 and arm64 (Jetson) platforms
122
117
123
118
See all the other targets in the `Makefile` for more information.
0 commit comments