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
14 changes: 13 additions & 1 deletion backends/vulkan/op_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,19 @@ def register_2d_pool_op():
)
def register_convolution_op():
return OpFeatures(
inputs_storage=utils.CHANNELS_PACKED_TEXTURE,
inputs_storage=[
utils.CHANNELS_PACKED_TEXTURE, # input
utils.NO_STORAGE, # weight (prepacked)
utils.NO_STORAGE, # bias (prepacked)
utils.NO_STORAGE, # stride (non tensor)
utils.NO_STORAGE, # padding (non tensor)
utils.NO_STORAGE, # dilation (non tensor)
utils.NO_STORAGE, # transposed (non tensor)
utils.NO_STORAGE, # output_padding (non tensor)
utils.NO_STORAGE, # groups (non tensor)
utils.NO_STORAGE, # output_min (non tensor)
utils.NO_STORAGE, # output_max (non tensor)
],
supports_resize=True,
supports_prepacking=True,
)
Expand Down
Loading