blob: 0906a7768a115459d801ff0707bce52771c4d816 [file] [log] [blame]
// RUN: iree-run-mlir --target_backends=interpreter-bytecode %s --input_values="5x1x5xi32=[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25]\ni64=2" --output_types=i | FileCheck %s --dump-input=fail
// RUN: iree-run-mlir --target_backends=vulkan-spirv %s --input_values="5x1x5xi32=[1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25]\ni64=2" --output_types=i | FileCheck %s --dump-input=fail
module {
// CHECK-LABEL: EXEC @foo
func @foo(%arg0: tensor<5x1x5xi32>, %arg1: tensor<i64>) -> tensor<1x5xi32> {
%1 = "xla_hlo.gather"(%arg0, %arg1) {collapsed_slice_dims = dense<0> : tensor<1xi64>, index_vector_dim = 0 : i64, offset_dims = dense<[0, 1]> : tensor<2xi64>, slice_sizes = dense<[1, 1, 5]> : tensor<3xi64>, start_index_map = dense<0> : tensor<1xi64>} : (tensor<5x1x5xi32>, tensor<i64>) -> tensor<1x5xi32>
return %1 : tensor<1x5xi32>
}
// CHECK 1x5xi32=[11 12 13 14 15]
}