Skip to content

Commit af99ec2

Browse files
Remove problematic print statements to avoid formatting issues
1 parent 28055b0 commit af99ec2

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

test/ck_tile/grouped_convolution/test_grouped_conv_fwd_splitn.cpp

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -178,20 +178,8 @@ void RunConvolutionTest(index_t batch_size, const char* description, bool expect
178178
const dim3 grids = KernelType::GridSize(kargs);
179179
const dim3 blocks = KernelType::BlockSize();
180180

181-
std::cout << "Grid: {" << grids.x << ", " << grids.y << ", " << grids.z << "}"
182-
<< " Block: {" << blocks.x << ", " << blocks.y << ", " << blocks.z << "}"
183-
<< std::endl;
184-
185181
// Check if Split-N is active
186182
bool split_n_active = (grids.z > 1);
187-
if(split_n_active)
188-
{
189-
std::cout << "[PASS] Split-N ACTIVE with " << grids.z << " splits" << std::endl;
190-
}
191-
else
192-
{
193-
std::cout << "[INFO] Split-N NOT active (grid.z = 1)" << std::endl;
194-
}
195183

196184
// Verify Split-N activation when we expect it (only check when > 2GB)
197185
if(expect_split_n)
@@ -257,16 +245,8 @@ void RunConvolutionTest(index_t batch_size, const char* description, bool expect
257245

258246
if(error_count > 0)
259247
{
260-
std::cout << "[FAIL] Accuracy check FAILED: " << error_count << "/" << output_size
261-
<< " elements exceed tolerance"
262-
<< ", max_diff=" << max_diff << std::endl;
263248
accuracy_pass = false;
264249
}
265-
else
266-
{
267-
std::cout << "[PASS] Accuracy check PASSED (rtol=" << rtol << ", atol=" << atol
268-
<< ")" << std::endl;
269-
}
270250

271251
EXPECT_TRUE(accuracy_pass) << "Accuracy check failed with " << error_count << " errors";
272252

0 commit comments

Comments
 (0)