31 lines
694 B
C++
31 lines
694 B
C++
//
|
|
// SoftmaxTorch.cpp
|
|
// MNNConverter
|
|
//
|
|
// Created by MNN on 2021/07/29.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#include <stdio.h>
|
|
#include "torchOpConverter.hpp"
|
|
|
|
DECLARE_OP_CONVERTER(SoftmaxTorch);
|
|
|
|
MNN::OpType SoftmaxTorch::opType() {
|
|
return MNN::OpType_Softmax;
|
|
}
|
|
MNN::OpParameter SoftmaxTorch::type() {
|
|
return MNN::OpParameter_Axis;
|
|
}
|
|
std::vector<int> SoftmaxTorch::inputTensorIdx() {
|
|
return {0};
|
|
}
|
|
|
|
void SoftmaxTorch::run(MNN::OpT* dstOp, const torch::jit::Node* node, TorchScope* scope) {
|
|
auto param = new MNN::AxisT;
|
|
param->axis = getValue<int64_t>(node->input(1));
|
|
dstOp->main.value = param;
|
|
}
|
|
|
|
REGISTER_CONVERTER(SoftmaxTorch, softmax);
|