mirror of https://github.com/alibaba/MNN.git
12 lines
306 B
C++
12 lines
306 B
C++
|
#ifndef OpCommonUtils_hpp
|
||
|
#define OpCommonUtils_hpp
|
||
|
#include <MNN/Tensor.hpp>
|
||
|
namespace MNN {
|
||
|
class MNN_PUBLIC OpCommonUtils {
|
||
|
public:
|
||
|
static void broastCastComputeDim(int* dims, int* stride, int* iStride0, int* iStride1, const Tensor* input0, const Tensor* input1, const Tensor* output);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|