chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:33:03 +08:00
commit 5b57521aa1
8226 changed files with 3425766 additions and 0 deletions
@@ -0,0 +1,20 @@
#ifndef VulkanLoop_hpp
#define VulkanLoop_hpp
#include "VulkanBasicExecution.hpp"
namespace MNN {
struct VulkanBatchMatMulInfo {
ivec4 size;
ivec4 stride_o;
ivec4 stride_a;
ivec4 stride_b;
ivec4 stride_c;
ivec4 step;
ivec4 iter;
};
class VulkanLoop {
public:
static VulkanBasicExecution* create(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs, const Op* op, Backend* bn);
};
};
#endif