We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d99e3b0 commit 03ec18bCopy full SHA for 03ec18b
src/utils/compileLLamaCpp.ts
@@ -26,7 +26,7 @@ export async function compileLlamaCpp({
26
const cmakeCustomOptions = [];
27
28
if ((metal && process.platform === "darwin") || process.env.LLAMA_METAL === "1") cmakeCustomOptions.push("LLAMA_METAL=1");
29
- else cmakeCustomOptions.push("LLAMA_METAL=0");
+ else cmakeCustomOptions.push("LLAMA_METAL=OFF");
30
31
if (cuda || process.env.LLAMA_CUBLAS === "1") cmakeCustomOptions.push("LLAMA_CUBLAS=1");
32
if (process.env.LLAMA_MPI === "1") cmakeCustomOptions.push("LLAMA_MPI=1");
0 commit comments