// CHECK-LABEL: build_tensor1 func @build_tensor1() { %a = dt.create_uninit_tensor.f32 [3, 4] -> !infrt.dense_tensor dt.fill_tensor_with_constant.f32 (%a : !infrt.dense_tensor) {value=1.0:f32} // CHECK: tensor: shape=shape[3,4], values=[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] dt.print_tensor (%a : !infrt.dense_tensor) infrt.return }