From dbcaa0a567dd38f9a595ff8916c38f0de314875c Mon Sep 17 00:00:00 2001 From: Alan Li Date: Wed, 5 Feb 2025 17:39:33 +0000 Subject: [PATCH] remove test --- ...tensors_packing_i1_experimental_clopt.mlir | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 compiler/src/iree/compiler/Dialect/Stream/Transforms/test/encode_host_tensors_packing_i1_experimental_clopt.mlir diff --git a/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/encode_host_tensors_packing_i1_experimental_clopt.mlir b/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/encode_host_tensors_packing_i1_experimental_clopt.mlir deleted file mode 100644 index c96e05270d126..0000000000000 --- a/compiler/src/iree/compiler/Dialect/Stream/Transforms/test/encode_host_tensors_packing_i1_experimental_clopt.mlir +++ /dev/null @@ -1,23 +0,0 @@ -// This is only used to test the experimental packing flag. When the default -// is changed the encode_host_tensors.mlir test should be updated and used -// instead and this file should be deleted. - -// RUN: iree-opt --split-input-file --iree-stream-encode-host-tensors --iree-experimental-packed-i1-storage %s | FileCheck %s - -// CHECK-LABEL: @tensorSizeOfUnalignedPackedI1 -util.func @tensorSizeOfUnalignedPackedI1() -> index { - // CHECK-DAG: %[[C2:.+]] = arith.constant 2 : index - %0 = stream.tensor.sizeof tensor<12xi1> : index - // CHECK: return %[[C2]] : index - util.return %0 : index -} - -// ----- - -// CHECK-LABEL: @tensorSizeOfAlignedPackedI1 -util.func @tensorSizeOfAlignedPackedI1() -> index { - // CHECK-DAG: %[[C3:.+]] = arith.constant 3 : index - %0 = stream.tensor.sizeof tensor<24xi1> : index - // CHECK: util.return %[[C3]] : index - util.return %0 : index -}