/* * Copyright (C) Cvitek Co., Ltd. 2019-2020. All rights reserved. */ #ifndef LEAKY_RELU_OP_H_ #define LEAKY_RELU_OP_H_ #include "tpuc/CustomOp.h" namespace cvi { class SoftmaxOp : public CustomOp { public: SoftmaxOp(OpParam ¶m) : CustomOp(param) {} void interpretFp32(std::vector>> &operand_tensors, std::vector> &operand_shapes, std::shared_ptr> &result_tensor, std::vector &result_shape); }; } // namespace cvi #endif