tensor_map.mlir.in 444 字节
Newer Older
1 2 3 4 5 6 7 8
// RUN: infrtexec -i %s | FileCheck %s

func @load_tensor_map() {
  %path = infrt.get_string("@CMAKE_BINARY_DIR@/multi_fc_model")
  %map = dt.load_params(%path)
  %size = dt.tensor_map_get_size(%map) -> i32
  infrt.print.i32 %size

9
  %a = dt.tensor_map_get_tensor(%map) {name="fc_bias"} -> !infrt.tensor<X86, NCHW, F32>
10 11 12 13 14 15

  // CHECK: tensor: shape=shape[2], values=[0, 0]
  dt.print_tensor (%a : !infrt.tensor<X86, NCHW, F32>)

  infrt.return
}