Skip to content

Commit 18d8c47

Browse files
committed
Fix ci
1 parent bf5264f commit 18d8c47

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

tests/python/relay/opencl_texture/test_conv2d_nchw_texture.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,11 +789,12 @@ def test_concat(remote, target, executor_type, dtype):
789789

790790
static_memory_scope = [
791791
"",
792+
"global.texture",
792793
"global",
793794
"global.texture-weight",
794-
"global.texture-weight",
795795
"global",
796-
"global.texture-weight",
796+
"global.texture-nhwc",
797+
"global",
797798
"global.texture-weight",
798799
"",
799800
"",

tests/python/relay/opencl_texture/utils/adreno_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ def build_run_compare_vm(
162162
)
163163

164164
if len(static_mem_scopes) > 0:
165-
mem_scopes_lines = static_mem_scopes.strip().split('\n')
166-
vm_lines = vmc._get_virtual_devices().strip().split('\n')
165+
mem_scopes_lines = static_mem_scopes.strip().split("\n")
166+
vm_lines = vmc._get_virtual_devices().strip().split("\n")
167167
for i in range(0, len(mem_scopes_lines)):
168168
assert mem_scopes_lines[i].strip() == vm_lines[i].strip()
169169

0 commit comments

Comments
 (0)