From: divinity76 Date: Mon, 29 Jan 2024 14:45:41 +0000 (+0100) Subject: fix typo "RLIMIT_MLOCK" (#5175) X-Git-Tag: upstream/0.0.4488~2482 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=2aed77eb06a329f0d82bb1c467f4244904d4073f;p=pkg%2Fggml%2Fsources%2Fllama.cpp fix typo "RLIMIT_MLOCK" (#5175) --- diff --git a/llama.cpp b/llama.cpp index f7d054c5..45569f7d 100644 --- a/llama.cpp +++ b/llama.cpp @@ -1158,10 +1158,10 @@ struct llama_mlock { #ifdef __APPLE__ #define MLOCK_SUGGESTION \ "Try increasing the sysctl values 'vm.user_wire_limit' and 'vm.global_user_wire_limit' and/or " \ - "decreasing 'vm.global_no_user_wire_amount'. Also try increasing RLIMIT_MLOCK (ulimit -l).\n" + "decreasing 'vm.global_no_user_wire_amount'. Also try increasing RLIMIT_MEMLOCK (ulimit -l).\n" #else #define MLOCK_SUGGESTION \ - "Try increasing RLIMIT_MLOCK ('ulimit -l' as root).\n" + "Try increasing RLIMIT_MEMLOCK ('ulimit -l' as root).\n" #endif bool raw_lock(const void * addr, size_t size) const {