skip-unused: revert extra spaces

This commit is contained in:
ochafik 2023-08-28 14:30:29 +01:00
parent 2eaeb7e872
commit f6a446ec01

View file

@ -2230,9 +2230,9 @@ static struct ggml_cgraph * llm_build_llama(
//
// with the low VRAM option VRAM scratch is disabled in llama_load_model_internal
// in that case ggml_cuda_assign_buffers has no effect
offload_func_t offload_func_nr = llama_nop; // nr = non-repeating
offload_func_t offload_func_kq = llama_nop;
offload_func_t offload_func_v = llama_nop;
offload_func_t offload_func_nr = llama_nop; // nr = non-repeating
offload_func_t offload_func_kq = llama_nop;
offload_func_t offload_func_v = llama_nop;
#ifdef GGML_USE_CUBLAS
if (n_gpu_layers > n_layer) {