From 56f1142ed248de53623834bc8460ef12b6a67c75 Mon Sep 17 00:00:00 2001 From: Misieq01 Date: Fri, 7 Mar 2025 14:23:08 +0100 Subject: [PATCH 1/3] mvp --- .github/workflows/build_binaries.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build_binaries.json b/.github/workflows/build_binaries.json index 6b04289..501ce89 100644 --- a/.github/workflows/build_binaries.json +++ b/.github/workflows/build_binaries.json @@ -85,6 +85,14 @@ "cross": false, "features": "metal,opencl" }, + { + "name": "opencl-macos-arm64", + "runs-on": "macos-14", + "rust": "stable", + "target": "aarch64-apple-darwin", + "cross": false, + "features": "opencl3" + }, { "name": "cuda-windows-x64", "runs-on": "windows-2019", From b00dcc6ee64002edaa056a57f53aa314eb7b8654 Mon Sep 17 00:00:00 2001 From: Misieq01 Date: Fri, 7 Mar 2025 14:24:56 +0100 Subject: [PATCH 2/3] fix feature --- .github/workflows/build_binaries.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_binaries.json b/.github/workflows/build_binaries.json index 501ce89..1c72398 100644 --- a/.github/workflows/build_binaries.json +++ b/.github/workflows/build_binaries.json @@ -91,7 +91,7 @@ "rust": "stable", "target": "aarch64-apple-darwin", "cross": false, - "features": "opencl3" + "features": "opencl" }, { "name": "cuda-windows-x64", From 67d6b425e63cab46b231dcce68fc6bd952ffb569 Mon Sep 17 00:00:00 2001 From: Misieq01 Date: Fri, 7 Mar 2025 14:37:54 +0100 Subject: [PATCH 3/3] remove metal from non arm macos --- .github/workflows/build_binaries.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_binaries.json b/.github/workflows/build_binaries.json index 1c72398..057142b 100644 --- a/.github/workflows/build_binaries.json +++ b/.github/workflows/build_binaries.json @@ -75,7 +75,7 @@ "rust": "stable", "target": "x86_64-apple-darwin", "cross": false, - "features": "metal,opencl" + "features": "opencl" }, { "name": "combined-macos-arm64",