Skip to content

Commit 88c1d69

Browse files
committed
Account for variants of real_tiled_matrix_multiply
1 parent 7993c31 commit 88c1d69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/executables/example_input.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ int main(int argc, char** argv) {
467467
} else {
468468
std::cerr << "Unknown option " << option << std::endl;
469469
}
470-
} else if (problem_name == "real_naive_matrix_multiply" || problem_name == "real_tiled_matrix_multiply") {
470+
} else if (problem_name == "real_naive_matrix_multiply" || problem_name == "real_tiled_matrix_multiply" || problem_name == "real_tiled_16_matrix_multiply" || problem_name == "real_tiled_64_matrix_multiply") {
471471
/* Layout of A is row-major, blocked. */
472472
/* Layout of B is column-major, blocked. */
473473
/* Result matrix is 2D-blocked. */

0 commit comments

Comments
 (0)