Update llama.cpp
This commit is contained in:
parent
28a111704b
commit
01435da740
2 changed files with 10 additions and 1 deletions
|
@ -293,6 +293,15 @@ class llama_timings(Structure):
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
# LLAMA_API int llama_max_devices();
|
||||||
|
def llama_max_devices() -> int:
|
||||||
|
return _lib.llama_max_devices()
|
||||||
|
|
||||||
|
|
||||||
|
_lib.llama_max_devices.argtypes = []
|
||||||
|
_lib.llama_max_devices.restype = c_int
|
||||||
|
|
||||||
|
|
||||||
# LLAMA_API struct llama_context_params llama_context_default_params();
|
# LLAMA_API struct llama_context_params llama_context_default_params();
|
||||||
def llama_context_default_params() -> llama_context_params:
|
def llama_context_default_params() -> llama_context_params:
|
||||||
return _lib.llama_context_default_params()
|
return _lib.llama_context_default_params()
|
||||||
|
|
2
vendor/llama.cpp
vendored
2
vendor/llama.cpp
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit d01bccde9f759b24449fdaa16306b406a50eb367
|
Subproject commit e782c9e735f93ab4767ffc37462c523b73a17ddc
|
Loading…
Reference in a new issue