diff options
author | Cebtenzzre <cebtenzzre@gmail.com> | 2023-09-15 16:59:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 16:59:49 -0400 |
commit | e6616cf0db2b63189fc34d0076f654af9adecdf8 (patch) | |
tree | 5a5d518c2e576972ee097297ed1551b66880914b /examples/benchmark/benchmark-matmult.cpp | |
parent | 3aefaab9e59335ebb07d5205dbc8633efd680e58 (diff) |
examples : add compiler version and target to build info (#2998)
Diffstat (limited to 'examples/benchmark/benchmark-matmult.cpp')
-rw-r--r-- | examples/benchmark/benchmark-matmult.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/benchmark/benchmark-matmult.cpp b/examples/benchmark/benchmark-matmult.cpp index f7215f43..561309ac 100644 --- a/examples/benchmark/benchmark-matmult.cpp +++ b/examples/benchmark/benchmark-matmult.cpp @@ -1,5 +1,5 @@ +#include "common.h" #include "ggml.h" -#include "build-info.h" #include <locale.h> #include <assert.h> @@ -99,7 +99,7 @@ int main(int argc, char ** argv) { exit(1); } - fprintf(stderr, "%s: build = %d (%s)\n", __func__, BUILD_NUMBER, BUILD_COMMIT); + print_build_info(); printf("Starting Test\n"); // create the ggml context |