diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-11-25 16:21:33 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-11-25 16:21:33 +0900 |
commit | 6c047f48081806b89a6e7fa6a1bde663096d6ce3 (patch) | |
tree | 068850345297b057f2901662f6a956a6125ce9db /sample | |
parent | f07c5c25546297096d40154f44ef1dae0b548e0d (diff) | |
download | xbyak-6c047f48081806b89a6e7fa6a1bde663096d6ce3.tar.gz xbyak-6c047f48081806b89a6e7fa6a1bde663096d6ce3.zip |
detect rao-int
Diffstat (limited to 'sample')
-rw-r--r-- | sample/test_util.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp index a20d2df..ef6e3fa 100644 --- a/sample/test_util.cpp +++ b/sample/test_util.cpp @@ -93,6 +93,7 @@ void putCPUinfo(bool onlyCpuidFeature) { Cpu::tAVX_VNNI_INT8, "avx_vnni_int8" }, { Cpu::tAVX_NE_CONVERT, "avx_ne_convert" }, { Cpu::tAVX_IFMA, "avx_ifma" }, + { Cpu::tRAO_INT, "rao-int" }, }; for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) { if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str); |