You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zafeerali943 opened this issue
Jan 25, 2025
· 1 comment
Labels
clang-cl`clang-cl` driver. Don't use for other compiler partsquestionA question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!
clang-cl`clang-cl` driver. Don't use for other compiler partsquestionA question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!
Does LLVM clang-cl compiler can compile SVE intrinsic on Windows on ARM machine?
If yes, how could I compile SVE codes on WoA?
Sample code:
#include <arm_sve.h>
int accumulate(svint64_t a, svint64_t b) {
svbool_t p = svptrue_b64();
return svaddv(p, svmla_z(p, a, a, b));
}
int main(void)
{
svbool_t p = svptrue_b64();
svint64_t a = svdup_s64(1);
svint64_t b = svdup_s64(2);
return accumulate(a, b);
}
The text was updated successfully, but these errors were encountered: