Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StridedSlice (0.65 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      %0 = "tf.StridedSlice"(%arg0, %cst, %cst, %cst_0) {begin_mask = 6 : i64, ellipsis_mask = 0 : i64, end_mask = 6 : i64, new_axis_mask = 9 : i64, shrink_axis_mask = 0 : i64} : (tensor<?x?xf32>, tensor<4xi32>, tensor<4xi32>, tensor<4xi32>) -> tensor<1x?x?x1xf32>
      func.return %0 : tensor<1x?x?x1xf32>
    
      // CHECK-NOT: "tf.Reshape"
      // CHECK: "tf.StridedSlice"
    }
    
    // CHECK-LABEL: @StridedSliceRewriteMasks
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %outputs_12  =  "tf.Shape"(%arg1) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<?x4xf32>) -> tensor<2xi32>
      // CHECK: [[max_iter:%.*]] = "tf.StridedSlice"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        auto shape = rewriter.create<TF::ConstOp>(loc, shape_type, shape_attr);
    
        return rewriter.create<TF::ReshapeOp>(loc, result_type, filter, shape);
      }
    };
    
    // StridedSlice can have complicated attributes like begin_axis_mask,
    // end_axis_mask, ellipsis_axis_mask, new_axis_mask, shrink_axis_mask. These
    // masks will complicate the strided_slice computation logic, we can simplify
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top