mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
20 lines
374 B
C
20 lines
374 B
C
|
#ifndef LAYER_EXPAND_H
|
||
|
#define LAYER_EXPAND_H
|
||
|
|
||
|
#include "layer.h"
|
||
|
|
||
|
namespace mmlab {
|
||
|
|
||
|
class Expand : public ncnn::Layer {
|
||
|
public:
|
||
|
Expand();
|
||
|
|
||
|
virtual int forward(const std::vector<ncnn::Mat>& bottom_blobs,
|
||
|
std::vector<ncnn::Mat>& top_blobs,
|
||
|
const ncnn::Option& opt) const;
|
||
|
};
|
||
|
|
||
|
} // namespace mmlab
|
||
|
|
||
|
#endif // LAYER_EXPAND_H
|