Skip to content

Commit 6999b43

Browse files
align the lint check
1 parent 550f2d8 commit 6999b43

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/scripts/profile_ut_result_summary.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ $# -lt 1 ]; then
1212
echo "Available analysis types:"
1313
echo " all - Execute all analyses"
1414
echo " 1 - correlation_id_mixed"
15-
echo " 2 - reproducer_missing_gpu_kernel_time"
15+
echo " 2 - reproducer_missing_gpu_kernel_time"
1616
echo " 3 - time_precision"
1717
echo " 4 - partial_runtime_ops"
1818
echo " 5 - triton_xpu_ops"
@@ -31,14 +31,14 @@ analyze_correlation_id_mixed() {
3131
echo "Check criteria:"
3232
echo "1. CPU time avg > 0 (all ops)"
3333
echo "2. aten:: ops: XPU time avg > 0"
34-
echo "3. runtime ops(begin with ur): XPU time avg = 0"
34+
echo "3. runtime ops(begin with ur): XPU time avg = 0"
3535
echo "4. aten:: and corresponding ur ops Calls = 3"
3636
echo "----------------------------------------"
3737

3838
awk '
3939
BEGIN {
40-
cpu_col = 6;
41-
xpu_col = 10;
40+
cpu_col = 6;
41+
xpu_col = 10;
4242
calls_col = 11;
4343
total_errors = 0;
4444
aten_ops = 0;
@@ -149,8 +149,8 @@ analyze_reproducer_missing_gpu_kernel_time() {
149149

150150
awk '
151151
BEGIN {
152-
cpu_col = 6;
153-
xpu_col = 10;
152+
cpu_col = 6;
153+
xpu_col = 10;
154154
calls_col = 11;
155155
total_errors = 0;
156156
checked_ops = 0;
@@ -216,8 +216,8 @@ analyze_time_precision() {
216216

217217
awk '
218218
BEGIN {
219-
cpu_col = 3;
220-
xpu_col = 10;
219+
cpu_col = 3;
220+
xpu_col = 10;
221221
calls_col = 11;
222222
total_errors = 0;
223223
checked_ops = 0;
@@ -267,8 +267,8 @@ analyze_partial_runtime_ops() {
267267

268268
awk '
269269
BEGIN {
270-
cpu_col = 6;
271-
xpu_col = 10;
270+
cpu_col = 6;
271+
xpu_col = 10;
272272
calls_col = 11;
273273
total_errors = 0;
274274
valid_ops = 0;
@@ -326,8 +326,8 @@ analyze_triton_xpu_ops() {
326326

327327
awk '
328328
BEGIN {
329-
cpu_col = 6;
330-
xpu_col = 10;
329+
cpu_col = 6;
330+
xpu_col = 10;
331331
calls_col = 11;
332332
total_errors = 0;
333333
triton_ops = 0;

0 commit comments

Comments
 (0)