commit | ceed48edea8e466f1a7027fdfd5bd6b611826eee | [log] [tgz] |
---|---|---|
author | MITSUNARI Shigeo <herumi@nifty.com> | Tue Jun 10 06:56:41 2025 +0900 |
committer | MITSUNARI Shigeo <herumi@nifty.com> | Tue Jun 10 06:56:41 2025 +0900 |
tree | c183702b2f604110a2d077bbcf3f44bb62e66459 | |
parent | 0ce307af30e4b4f872e54f4e9f687451bcebf50e [diff] |
rename test/avx10 to test/dataset
diff --git a/test/Makefile b/test/Makefile index 5a0de2b..d8a90eb 100644 --- a/test/Makefile +++ b/test/Makefile
@@ -70,7 +70,7 @@ TEST_FILES=old.txt new-ymm.txt bf16.txt comp.txt misc.txt convert.txt minmax.txt saturation.txt apx.txt amx.txt xed_test: @set -e; \ - for target in $(addprefix avx10/, $(TEST_FILES)); do \ + for target in $(addprefix dataset/, $(TEST_FILES)); do \ ./test_by_xed.sh $$target || exit 1; \ done
diff --git a/test/avx10/amx.txt b/test/dataset/amx.txt similarity index 100% rename from test/avx10/amx.txt rename to test/dataset/amx.txt
diff --git a/test/avx10/apx.txt b/test/dataset/apx.txt similarity index 100% rename from test/avx10/apx.txt rename to test/dataset/apx.txt
diff --git a/test/avx10/bf16.txt b/test/dataset/bf16.txt similarity index 100% rename from test/avx10/bf16.txt rename to test/dataset/bf16.txt
diff --git a/test/avx10/comp.txt b/test/dataset/comp.txt similarity index 100% rename from test/avx10/comp.txt rename to test/dataset/comp.txt
diff --git a/test/avx10/convert.txt b/test/dataset/convert.txt similarity index 100% rename from test/avx10/convert.txt rename to test/dataset/convert.txt
diff --git a/test/avx10/minmax.txt b/test/dataset/minmax.txt similarity index 100% rename from test/avx10/minmax.txt rename to test/dataset/minmax.txt
diff --git a/test/avx10/misc.txt b/test/dataset/misc.txt similarity index 100% rename from test/avx10/misc.txt rename to test/dataset/misc.txt
diff --git a/test/avx10/new-ymm.txt b/test/dataset/new-ymm.txt similarity index 100% rename from test/avx10/new-ymm.txt rename to test/dataset/new-ymm.txt
diff --git a/test/avx10/old.txt b/test/dataset/old.txt similarity index 100% rename from test/avx10/old.txt rename to test/dataset/old.txt
diff --git a/test/avx10/saturation.txt b/test/dataset/saturation.txt similarity index 100% rename from test/avx10/saturation.txt rename to test/dataset/saturation.txt
diff --git a/test/test_by_xed_all.bat b/test/test_by_xed_all.bat index c7e29a2..7b69f82 100644 --- a/test/test_by_xed_all.bat +++ b/test/test_by_xed_all.bat
@@ -1,5 +1,5 @@ set TARGETS=old.txt new-ymm.txt bf16.txt misc.txt convert.txt minmax.txt saturation.txt amx.txt apx.txt comp.txt for %%f in (%TARGETS%) do ( echo %%f - call test_by_xed.bat avx10\%%f -) \ No newline at end of file + call test_by_xed.bat dataset\%%f +)