Skip to content

Commit 4403a6d

Browse files
committed
run clang-format-18
1 parent d1a1e86 commit 4403a6d

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

tile_engine/ops/gemm/gemm_benchmark_single.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void benchmark_single(const ck_tile::ArgParser& arg_parser)
125125
std::string json_filename = arg_parser.get_str("json_file");
126126
std::ofstream json_file_stream;
127127
std::ostream* output_stream = &std::cout;
128-
128+
129129
if(!json_filename.empty())
130130
{
131131
json_file_stream.open(json_filename);
@@ -135,7 +135,7 @@ void benchmark_single(const ck_tile::ArgParser& arg_parser)
135135
}
136136
else
137137
{
138-
std::cerr << "Warning: Failed to open JSON file " << json_filename
138+
std::cerr << "Warning: Failed to open JSON file " << json_filename
139139
<< ", using stdout instead." << std::endl;
140140
}
141141
}

tile_engine/ops/gemm/gemm_profiler.hpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class GemmProfiler
227227
{
228228
*output_stream_ << "**********************************" << std::endl;
229229
*output_stream_ << "According to given metrics: " << get_metric_name(metric) << "\n"
230-
<< "Current kernel performance is: " << kernel_instance << std::endl;
230+
<< "Current kernel performance is: " << kernel_instance << std::endl;
231231
*output_stream_ << "**********************************" << std::endl;
232232
}
233233

@@ -281,8 +281,10 @@ class GemmProfiler
281281

282282
private:
283283
~GemmProfiler() { kernel_instances_.clear(); }
284-
GemmProfiler(Setting setting, std::ostream* output_stream = &std::cout)
285-
: setting_(setting), output_stream_(output_stream) {}
284+
GemmProfiler(Setting setting, std::ostream* output_stream = &std::cout)
285+
: setting_(setting), output_stream_(output_stream)
286+
{
287+
}
286288

287289
Setting setting_;
288290
std::ostream* output_stream_;

0 commit comments

Comments
 (0)