-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I suspect that we're running into more oom issues because of tharnsB and transC and the like. So, move large gemm tests into their own file where there'll only be one or two tests that run, thus ensuring we don't overload the machines.
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
directory = "LargeGemm" | ||
prefix = "rocmlir-gen" | ||
suffix = "--operation gemm --arch %arch %pv %random_data %rocmlir_gen_flags | rocmlir-driver -c | mlir-cpu-runner -O2 --shared-libs=%linalg_test_lib_dir/libmlir_rocm_runtime%shlibext,%conv_validation_wrapper_library_dir/libconv-validation-wrappers%shlibext,%linalg_test_lib_dir/libmlir_runner_utils%shlibext,%linalg_test_lib_dir/libmlir_float16_utils%shlibext --entry-point-result=void | FileCheck %s --check-prefix=" | ||
|
||
# Note: Just f32 for ensuring lower machine load | ||
[[axis]] | ||
name = "data type" | ||
values = ["f32"] | ||
prefix = "-t " | ||
|
||
## Gemm variants | ||
[[suite]] | ||
name = "large_gemm" | ||
|
||
# Large gemm, input padding | ||
[[suite.test]] | ||
config = "-g 1 -m 1 -k 32768 -n 32769" | ||
# Large gemm, no padding. | ||
[[suite.test]] | ||
config = "-g 1 -m 64 -k 32768 -n 32768" |