diff options
author | Michael Klimenko <mklimenko29@gmail.com> | 2024-01-27 15:25:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 15:25:55 +0100 |
commit | 35a2ee914308c85ab5cb576467381443ad23f0ac (patch) | |
tree | 72bd27fadddae5c8b82facf57373234822f574fc /examples/llava/clip.cpp | |
parent | ec903c034131848da9222536ff18da07ec0882a0 (diff) |
Remove unused data and add fixes (#5154)
* Remove unused data and add fixes
* Add missing file
* Address review comments
* Replace the scope of vq allocation
Diffstat (limited to 'examples/llava/clip.cpp')
-rw-r--r-- | examples/llava/clip.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/llava/clip.cpp b/examples/llava/clip.cpp index 4a0338a3..f2cd86af 100644 --- a/examples/llava/clip.cpp +++ b/examples/llava/clip.cpp @@ -1277,7 +1277,6 @@ bool clip_model_quantize(const char * fname_inp, const char * fname_out, const i ".*weight", }; - std::vector<uint8_t> read_data(512); std::vector<uint8_t> work(512); std::vector<float> conv_buf(512); std::vector<int64_t> hist_all(1 << 4, 0); |