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.
1 parent 5daa6e3 commit aa4ab02Copy full SHA for aa4ab02
backends/vulkan/runtime/graph/ops/impl/Staging.cpp
@@ -285,7 +285,7 @@ ValueRef prepack_int4_linear_weight_transposed_interleaved(
285
const int64_t N = qmat2_orig_sizes.at(ndim - 2);
286
const int64_t N_div2 = N / int64_t(2);
287
288
- utils::StorageType storage_type = utils::kTexture2D;
+ utils::StorageType storage_type = utils::kBuffer;
289
uint32_t max_extent = graph.context()->adapter_ptr()->max_texture2d_dim();
290
if (N_div2 > max_extent * 4 || K > max_extent) {
291
storage_type = utils::kBuffer;
0 commit comments