21 lines
429 B
C
Raw Normal View History

2021-11-30 15:00:37 +08:00
// Copyright (c) OpenMMLab. All rights reserved.
#ifndef LAYER_EXPAND_H
#define LAYER_EXPAND_H
#include "layer.h"
namespace mmdeploy {
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 mmdeploy
#endif // LAYER_EXPAND_H