Skip to content

Commit 60a20be

Browse files
a-sidorovadmitrygo
authored and
dmitrygo
committed
cmake: added rvv intrinsics compilation check
1 parent 1fe8ee5 commit 60a20be

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cmake/platform.cmake

+4-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,10 @@ if (DNNL_TARGET_ARCH STREQUAL "RV64")
438438
# Check if the RVV Intrinsics can be compiled with the current toolchain and flags
439439
include(CheckCXXSourceCompiles)
440440
check_cxx_source_compiles("#include <riscv_vector.h>
441-
int main() { return 0; };"
441+
int main() {
442+
size_t size = 64;
443+
return vsetvl_e32m2(size);
444+
};"
442445
CAN_COMPILE_RVV_INTRINSICS
443446
)
444447
# set CAN_COMPILE_RVV_INTRINSICS to TRUE / FALSE instead of 1 / "" (Undefined)

0 commit comments

Comments
 (0)