diff options
author | DannyDaemonic <DannyDaemonic@gmail.com> | 2023-05-01 09:23:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-01 18:23:47 +0200 |
commit | f4cef87edfd1b2f8d5befd4fde54ca2e03987bea (patch) | |
tree | b63939423df54fa5714e964e19e830811a990064 /examples/benchmark | |
parent | 58b367c2d757c0ea12aec672382462b42204c724 (diff) |
Add git-based build information for better issue tracking (#1232)
* Add git-based build information for better issue tracking
* macOS fix
* "build (hash)" and "CMAKE_SOURCE_DIR" changes
* Redo "CMAKE_CURRENT_SOURCE_DIR" and clearer build messages
* Fix conditional dependency on missing target
* Broke out build-info.cmake, added find_package fallback, and added build into to all examples, added dependencies to Makefile
* 4 space indenting for cmake, attempt to clean up my mess in Makefile
* Short hash, less fancy Makefile, and don't modify build-info.h if it wouldn't change it
Diffstat (limited to 'examples/benchmark')
-rw-r--r-- | examples/benchmark/CMakeLists.txt | 3 | ||||
-rw-r--r-- | examples/benchmark/benchmark-matmult.cpp | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/examples/benchmark/CMakeLists.txt b/examples/benchmark/CMakeLists.txt index 05deebc..0376961 100644 --- a/examples/benchmark/CMakeLists.txt +++ b/examples/benchmark/CMakeLists.txt @@ -2,3 +2,6 @@ set(TARGET benchmark) add_executable(${TARGET} benchmark-matmult.cpp) target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) target_compile_features(${TARGET} PRIVATE cxx_std_11) +if(TARGET BUILD_INFO) + add_dependencies(${TARGET} BUILD_INFO) +endif() diff --git a/examples/benchmark/benchmark-matmult.cpp b/examples/benchmark/benchmark-matmult.cpp index 19cbab1..2cc1a14 100644 --- a/examples/benchmark/benchmark-matmult.cpp +++ b/examples/benchmark/benchmark-matmult.cpp @@ -1,5 +1,6 @@ #include <locale.h> #include "ggml.h" +#include "build-info.h" #include <assert.h> #include <math.h> #include <cstring> @@ -90,9 +91,10 @@ int main(int argc, char ** argv) { } } - // create the ggml context + fprintf(stderr, "%s: build = %d (%s)\n", __func__, BUILD_NUMBER, BUILD_COMMIT); printf("Starting Test\n"); + // create the ggml context struct ggml_context * ctx; //const int sizex = 4096; //const int sizey = 11008; |