Skip to content

Commit

Permalink
fix rvv intrinsics for gcc14 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Nov 24, 2024
1 parent 40e6b75 commit 90e076b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/muriscv_nn_support_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#if defined(USE_VEXT)
#include <riscv_vector.h>
#if (__clang_major__ >= 16) || (__GNUC__ >= 13)
#if __clang_major__ >= 17
#if (__clang_major__ >= 17) || (__GNUC__ >= 14)
#define vsmul_vx_i32m8(a, b, c) __riscv_vsmul_vx_i32m8(a, b, __RISCV_VXRM_RNU, c)
#define vsmul_vx_i32m4(a, b, c) __riscv_vsmul_vx_i32m4(a, b, __RISCV_VXRM_RNU, c)
#define vsmul_vv_i32m2(a, b, c) __riscv_vsmul_vv_i32m2(a, b, __RISCV_VXRM_RNU, c)
Expand Down

0 comments on commit 90e076b

Please sign in to comment.