We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bd36872 + d1d6444 commit 7a1703aCopy full SHA for 7a1703a
backends/vulkan/runtime/graph/ops/impl/Flip.cpp
@@ -65,8 +65,8 @@ void add_flip_node(
65
graph.create_local_wg_size(out),
66
// Inputs and Outputs
67
{
68
- {out, vkapi::MemoryAccessType::WRITE},
69
- {in, vkapi::MemoryAccessType::READ},
+ {out, vkapi::kWrite},
+ {in, vkapi::kRead},
70
},
71
// Parameter buffers
72
backends/vulkan/test/op_tests/cases.py
@@ -1163,7 +1163,7 @@ def get_squeeze_copy_dim_inputs():
1163
1164
@register_test_suite("aten.flip.default")
1165
def get_flip_inputs():
1166
- Test = namedtuple("VkIndexSelectTest", ["self", "dim"])
+ Test = namedtuple("Flip", ["self", "dim"])
1167
Test.__new__.__defaults__ = (None, 0)
1168
1169
test_cases = [
0 commit comments