Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
echuraev committed Sep 6, 2023
1 parent 58244be commit a9b41da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions tests/python/relay/opencl_texture/test_conv2d_nchw_texture.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,11 +789,12 @@ def test_concat(remote, target, executor_type, dtype):

static_memory_scope = [
"",
"global.texture",
"global",
"global.texture-weight",
"global.texture-weight",
"global",
"global.texture-weight",
"global.texture-nhwc",
"global",
"global.texture-weight",
"",
"",
Expand Down
4 changes: 2 additions & 2 deletions tests/python/relay/opencl_texture/utils/adreno_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ def build_run_compare_vm(
)

if len(static_mem_scopes) > 0:
mem_scopes_lines = static_mem_scopes.strip().split('\n')
vm_lines = vmc._get_virtual_devices().strip().split('\n')
mem_scopes_lines = static_mem_scopes.strip().split("\n")
vm_lines = vmc._get_virtual_devices().strip().split("\n")
for i in range(0, len(mem_scopes_lines)):
assert mem_scopes_lines[i].strip() == vm_lines[i].strip()

Expand Down

0 comments on commit a9b41da

Please sign in to comment.