Skip to content

Commit 0f26bed

Browse files
committed
chore: Applying lint
Signed-off-by: Anurag Dixit <[email protected]>
1 parent 00adb21 commit 0f26bed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/util/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bool almostEqual(const at::Tensor& computed_tensor, const at::Tensor& gt_tensor,
1818
auto result = diff.abs().max().item<float>();
1919
auto threshold = atol + (rtol * gt_tensor.abs().max().item<float>());
2020

21-
LOG_GRAPH(std::string("Max Difference: ") + std::to_string(result) );
21+
LOG_GRAPH(std::string("Max Difference: ") + std::to_string(result));
2222
LOG_GRAPH(std::string("Acceptable Threshold: ") + std::to_string(threshold));
2323

2424
return result <= threshold;

0 commit comments

Comments
 (0)