mirror of https://github.com/llvm/torch-mlir
11 lines
550 B
MLIR
11 lines
550 B
MLIR
// RUN: torch-mlir-opt -torch-decompose-complex-ops="legal-ops=torch.aten.softmax.int" -split-input-file %s | FileCheck %s
|
|
|
|
// CHECK-LABEL: func.func @torch.aten.softmax.int$cst_dim
|
|
func.func @torch.aten.softmax.int$cst_dim(%t: !torch.tensor<[2,3],f32>) -> !torch.tensor<[2,3],f32> {
|
|
%none = torch.constant.none
|
|
%dim = torch.constant.int 1
|
|
// CHECK: torch.aten.softmax.int
|
|
%ret = torch.aten.softmax.int %t, %dim, %none : !torch.tensor<[2,3],f32>, !torch.int, !torch.none -> !torch.tensor<[2,3],f32>
|
|
return %ret : !torch.tensor<[2,3],f32>
|
|
}
|