Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 3 deletions examples/03_bmg_gemm_streamk/03_bmg_gemm_streamk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,6 @@ using namespace cute;

///////////////////////////////////////////////////////////////////////////////////////////////////

#define CUTLASS_SYCL_PROFILING_ENABLED

// Command line options parsing
struct Options {

Expand Down Expand Up @@ -302,9 +300,9 @@ struct ExampleRunner {
if(!passed) return cutlass::Status::kErrorInternal;

if (options.iterations > 0) {
GPU_Clock timer;
float elapsed_time_seconds = 0.f;
for (int i = 0; i < options.iterations; ++i) {
GPU_Clock timer;
gemm_op.initialize(arguments, workspace.get());
timer.start();
gemm_op.run();
Expand Down
1 change: 0 additions & 1 deletion examples/04_bmg_grouped_gemm/04_bmg_grouped_gemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ using ElementOutput = float; // <- data type of elements in output matr

///////////////////////////////////////////////////////////////////////////////////////////////////

#define CUTLASS_SYCL_PROFILING_ENABLED

// Command line options parsing
struct Options {
Expand Down
Loading