// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #include "core/codegen/mti/math/logsoftmax.h" #include "core/codegen/mti/tensor/reshape_ops.h" #include namespace onnxruntime { namespace tvm_codegen { tvm::Tensor LogSoftmax(const tvm::Tensor& input, int64_t axis, const std::string& name) { tvm::Tensor flatten_t = Flatten(input, axis, "logsoftmax_flatten"); return Reshape(topi::nn::log_softmax(flatten_t, name), input->shape, "logsoftmax_reshape"); } } // namespace tvm_codegen } // namespace onnxruntime