Skip to content

Commit

Permalink
Release llamafile v0.8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Jul 28, 2024
1 parent 1839bfa commit a73ea13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion llamafile/BUILD.mk
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ o/$(MODE)/llamafile/tinyblas_cpu_sgemm_amd_fma.o \
o/$(MODE)/llamafile/tinyblas_cpu_sgemm_amd_zen4.o \
o/$(MODE)/llamafile/tinyblas_cpu_sgemm_arm80.o \
o/$(MODE)/llamafile/tinyblas_cpu_sgemm_arm82.o: \
private CCFLAGS += -O3
private CCFLAGS += -O3 -fopenmp

################################################################################
# testing
Expand All @@ -163,6 +163,9 @@ o/$(MODE)/llamafile/sgemm_vecdot_test: \
o/$(MODE)/llamafile/sgemm_vecdot_test.o \
o/$(MODE)/llama.cpp/llama.cpp.a

o/$(MODE)/llamafile/sgemm_vecdot_test: \
private LDFLAGS += -fopenmp

o/$(MODE)/llamafile/%.o: llamafile/%.cu llamafile/BUILD.mk
@mkdir -p $(@D)
build/cudacc -fPIE -g -O3 -march=native -ffast-math --use_fast_math -c -o $@ $<
Expand Down
2 changes: 1 addition & 1 deletion llamafile/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#define LLAMAFILE_MAJOR 0
#define LLAMAFILE_MINOR 8
#define LLAMAFILE_PATCH 11
#define LLAMAFILE_PATCH 12
#define LLAMAFILE_VERSION \
(100000000 * LLAMAFILE_MAJOR + 1000000 * LLAMAFILE_MINOR + LLAMAFILE_PATCH)

Expand Down

0 comments on commit a73ea13

Please sign in to comment.