diff --git a/python/llm/src/ipex_llm/transformers/npu_models/npu_llm_cpp.py b/python/llm/src/ipex_llm/transformers/npu_models/npu_llm_cpp.py index 612a777baa63..8dca443f24df 100644 --- a/python/llm/src/ipex_llm/transformers/npu_models/npu_llm_cpp.py +++ b/python/llm/src/ipex_llm/transformers/npu_models/npu_llm_cpp.py @@ -60,8 +60,8 @@ def get_shared_lib_info(lib_base_name: str): _lib.reset.argtypes = [ctypes.c_void_p] _lib.reset.restype = None -_lib.run_prefill_with_logits.argtypes = [ctypes.c_void_p, ctypes.POINTER(ctypes.c_int), ctypes.c_int, - ctypes.POINTER(ctypes.c_float), ctypes.c_int] +_lib.run_prefill_with_logits.argtypes = [ctypes.c_void_p, ctypes.POINTER(ctypes.c_int), + ctypes.c_int, ctypes.POINTER(ctypes.c_float), ctypes.c_int] _lib.run_prefill_with_logits.restype = None _lib.run_decode_with_logits.argtypes = [ctypes.c_void_p, ctypes.c_int,