Skip to content

Commit

Permalink
ggml : inttypes.h -> cinttypes (#0)
Browse files Browse the repository at this point in the history
ggml-ci
  • Loading branch information
ggerganov committed Nov 17, 2024
1 parent 5d9e599 commit 24203e9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ggml/src/ggml-opt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <algorithm>
#include <cmath>
#include <cstdint>
#include <inttypes.h>
#include <cinttypes>
#include <map>
#include <random>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion tests/test-opt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "ggml-opt.h"

#include <cmath>
#include <inttypes.h>
#include <cinttypes>
#include <random>
#include <string>
#include <thread>
Expand Down
1 change: 0 additions & 1 deletion tests/test-quantize-perf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#include <algorithm>
#include <assert.h>
#include <functional>
#include <inttypes.h>
#include <math.h>
#include <memory>
#include <stdio.h>
Expand Down

0 comments on commit 24203e9

Please sign in to comment.