brintos

brintos / llvm-project-archived public Read only

0
0
Text · 498 B · 974dbca Raw
11 lines · plain
1// RUN: mlir-opt -canonicalize %s | mlir-opt | FileCheck %s2 3// CHECK-LABEL: @large_i1_tensor_roundtrip4func.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>10}11