[clang-tidy][NFC]remove deps of clang in clang tidy test (#116588)
[llvm-project.git] / mlir / test / IR / attribute-roundtrip.mlir
blob974dbcae6cf0a0b620f5f8a1182b40bfe76b5b8c
1 // RUN: mlir-opt -canonicalize %s | mlir-opt | FileCheck %s
3 // CHECK-LABEL: @large_i1_tensor_roundtrip
4 func.func @large_i1_tensor_roundtrip() -> tensor<160xi1> {
5   %cst_0 = arith.constant dense<"0xFFF00000FF000000FF000000FF000000FF000000"> : tensor<160xi1>
6   %cst_1 = arith.constant dense<"0xFF000000FF000000FF000000FF000000FF0000F0"> : tensor<160xi1>
7   // CHECK: dense<"0xFF000000FF000000FF000000FF000000FF000000">
8   %0 = arith.andi %cst_0, %cst_1 : tensor<160xi1>
9   return %0 : tensor<160xi1>