Replies: 1 comment 2 replies
-
I'm also new to Metal, so don't know the answer. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently working on using llama.cpp in iOS projects.
Although our main goal is to run on M1/M2. But started testing with my 2019 iPad Pro (A12Z). Unfortunately, I found that Metal cannot compile some kernel functions normally, the reason is that simd_sum is not supported in my device.
I found out that
SIMD-scoped permute operations
is indeed supported after A13 (apple6) in https://developer.apple.com/metal/Metal-Feature-Set-Tables.pdf.Not an urgent problem, just curious if there is a way we can override this by a custom function. I'm very new to Metal.
Beta Was this translation helpful? Give feedback.
All reactions