mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* Update custom ops namespace * rename register, rename generated library name * rename domain to mmcv
19 lines
325 B
C++
Executable File
19 lines
325 B
C++
Executable File
#ifndef LAYER_SHAPE_H
|
|
#define LAYER_SHAPE_H
|
|
|
|
#include "layer.h"
|
|
|
|
namespace mmdeploy {
|
|
|
|
class Shape : public ncnn::Layer {
|
|
public:
|
|
Shape();
|
|
|
|
virtual int forward(const ncnn::Mat& bottom_blob, ncnn::Mat& top_blob,
|
|
const ncnn::Option& opt) const;
|
|
};
|
|
|
|
} // namespace mmdeploy
|
|
|
|
#endif // LAYER_SHAPE_H
|