Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apps/linear_algebra/benchmarks/halide_benchmarks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#include "clock.h"
#include "halide_blas.h"
#include "macros.h"
#include <iomanip>
#include <iostream>
#include <random>
#include <string>
Expand Down Expand Up @@ -82,6 +81,9 @@ struct BenchmarksBase {
bench_gemm_transB(size);
} else if (benchmark == "gemm_transAB") {
bench_gemm_transAB(size);
} else {
std::cout << "subroutine: <" << benchmark << "> not known\n";
return;
}
}

Expand Down
Loading