Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tests/python/relax/backend/adreno/test_texture_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def main(
@requires_adreno_opencl_vulkan
@tvm.testing.parametrize_targets(*TARGETS)
def test_residual_block(target):
"""
r"""
- some kind of residual block followed by convolution to have texture after residual block
- scalar data type verification which should be mapped to global memory scope
layout_transform (NCHW->NCHW4c)
Expand Down Expand Up @@ -486,7 +486,7 @@ def main(
@requires_adreno_opencl_vulkan
@tvm.testing.parametrize_targets(*TARGETS)
def test_conv2d_conv2d_fallback_to_buffer_conv2d(target):
"""
r"""
layout_transform (NCHW->NCHW4c)
| <- texture
conv2d (1) <- textures as output
Expand Down Expand Up @@ -525,7 +525,7 @@ def main(
@requires_adreno_opencl_vulkan
@tvm.testing.parametrize_targets(*TARGETS)
def test_conv2d_conv2d_conv2d_concat(target):
"""
r"""
layout_transform (NCHW->NCHW4c)
| <- texture
conv2d (1) <- textures as output
Expand Down Expand Up @@ -565,7 +565,7 @@ def main(
@requires_adreno_opencl_vulkan
@tvm.testing.parametrize_targets(*TARGETS)
def test_pooling_branching_texture_params(target):
"""
r"""
Verification of the pooling and many branches having textures
layout_transform (NCHW->NCHW4c)
| <- texture
Expand Down Expand Up @@ -616,7 +616,7 @@ def main(
@requires_adreno_opencl_vulkan
@tvm.testing.parametrize_targets(*TARGETS)
def test_injective_inputs1(target):
"""
r"""
Input
/ \
/ |
Expand Down Expand Up @@ -665,7 +665,7 @@ def main(
@requires_adreno_opencl_vulkan
@tvm.testing.parametrize_targets(*TARGETS)
def test_injective_nwo_inputs2(target):
"""
r"""
Input
/ \
| \
Expand Down
Loading