mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 03:14:35 +00:00
Remove unused variable (#607)
* It seems some new warning were added recently that exposed this. I wrote the code that included this unused variable originally and it is indeed not needed.
This commit is contained in:
parent
1f0414feec
commit
a4755cf288
1
ggml.c
1
ggml.c
@ -1829,7 +1829,6 @@ static void ggml_vec_dot_q4_0(const int n, float * restrict s, const void * rest
|
|||||||
|
|
||||||
const int superblock_size = 8;
|
const int superblock_size = 8;
|
||||||
const int superblock_count = nb / superblock_size;
|
const int superblock_count = nb / superblock_size;
|
||||||
const int remainder = nb % superblock_size;
|
|
||||||
|
|
||||||
for (int superblock_ix = 0; superblock_ix < superblock_count; superblock_ix += 1) {
|
for (int superblock_ix = 0; superblock_ix < superblock_count; superblock_ix += 1) {
|
||||||
int i = superblock_ix * superblock_size;
|
int i = superblock_ix * superblock_size;
|
||||||
|
Loading…
Reference in New Issue
Block a user