Skip to content

File tree

2 files changed

+18
-18
lines changed
  • torchci/clickhouse_queries

2 files changed

+18
-18
lines changed

torchci/clickhouse_queries/compilers_benchmark_performance/query.sql

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,27 +78,27 @@ WHERE
7878
(
7979
({arch: String } = '' OR {arch: String } = 'a100')
8080
AND output LIKE CONCAT(
81-
'%_',
81+
'%\_',
8282
{dtype: String },
83-
'_',
83+
'\_',
8484
{mode: String },
85-
'_',
85+
'\_',
8686
{device: String },
87-
'_%'
87+
'\_%'
8888
)
8989
)
9090
OR (
9191
{arch: String } != ''
9292
AND output LIKE CONCAT(
93-
'%_',
93+
'%\_',
9494
{dtype: String },
95-
'_',
95+
'\_',
9696
{mode: String },
97-
'_',
97+
'\_',
9898
{device: String },
99-
'_',
99+
'\_',
100100
{arch: String },
101-
'_%'
101+
'\_%'
102102
)
103103
)
104104
OR (

torchci/clickhouse_queries/compilers_benchmark_performance_branches/query.sql

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,27 @@ WHERE
1616
(
1717
({arch: String } = '' OR {arch: String } = 'a100')
1818
AND benchmark_extra_info['output'] LIKE CONCAT(
19-
'%_',
19+
'%\_',
2020
{dtype: String },
21-
'_',
21+
'\_',
2222
{mode: String },
23-
'_',
23+
'\_',
2424
{device: String },
25-
'_performance%'
25+
'\_performance%'
2626
)
2727
)
2828
OR (
2929
{arch: String } != ''
3030
AND benchmark_extra_info['output'] LIKE CONCAT(
31-
'%_',
31+
'%\_',
3232
{dtype: String },
33-
'_',
33+
'\_',
3434
{mode: String },
35-
'_',
35+
'\_',
3636
{device: String },
37-
'_',
37+
'\_',
3838
{arch: String },
39-
'_performance%'
39+
'\_performance%'
4040
)
4141
)
4242
OR (

0 commit comments

Comments
 (0)