Skip to content

Commit 9253d45

Browse files
authored
Merge pull request ggml-org#139 from tairov/gnu
Add Makefile target to support builds on amazon linux & centos
2 parents 79933a8 + 2566ddf commit 9253d45

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ runomp: run.c
3636
win64:
3737
x86_64-w64-mingw32-gcc-win32 -Ofast -D_WIN32 -o run.exe -I. run.c win.c
3838

39+
# compiles with gnu99 standard flags for amazon linux, coreos, etc. compatibility
40+
.PHONY: rungnu
41+
rungnu:
42+
$(CC) -Ofast -std=gnu11 -o run run.c -lm
43+
44+
.PHONY: runompgnu
45+
rungnu:
46+
$(CC) -Ofast -fopenmp -std=gnu11 run.c -lm -o run
47+
3948
.PHONY: clean
4049
clean:
4150
rm -f run

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@ Depending on your system resources you may want to tweak these hyperparameters.
162162

163163
On **Windows**, use `build_msvc.bat` in a Visual Studio Command Prompt to build with msvc, or you can use `make win64` to use mingw compiler toolchain from linux or windows to build the windows target. MSVC build will automatically use openmp and max threads appropriate for your CPU unless you set `OMP_NUM_THREADS` env.
164164

165+
On **Centos 7**, **Amazon Linux 2018** use `rungnu` Makefile target: `make rungnu` or `make runompgnu` to use openmp.
166+
165167
## ack
166168

167169
I trained the llama2.c storyteller models on a 4X A100 40GB box graciously provided by the excellent [Lambda labs](https://lambdalabs.com/service/gpu-cloud), thank you.

0 commit comments

Comments
 (0)