File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,12 +125,12 @@ def llama_free(ctx: llama_context_p):
125125# TODO: not great API - very likely to change
126126# Returns 0 on success
127127def llama_model_quantize (
128- fname_inp : bytes , fname_out : bytes , itype : c_int , qk : c_int
128+ fname_inp : bytes , fname_out : bytes , itype : c_int
129129) -> c_int :
130- return _lib .llama_model_quantize (fname_inp , fname_out , itype , qk )
130+ return _lib .llama_model_quantize (fname_inp , fname_out , itype )
131131
132132
133- _lib .llama_model_quantize .argtypes = [c_char_p , c_char_p , c_int , c_int ]
133+ _lib .llama_model_quantize .argtypes = [c_char_p , c_char_p , c_int ]
134134_lib .llama_model_quantize .restype = c_int
135135
136136# Returns the KV cache that will contain the context for the
You can’t perform that action at this time.
0 commit comments