Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for STRIDED_SLICE (0.13 sec)

  1. tensorflow/compiler/mlir/lite/metrics/testdata/strided_slice.mlir

    func.func @strided_slice(%arg0 : tensor<*xf32>) -> tensor<*xf32> {
      %18 = "tf.Const"() {value = dense<1> : tensor<4xi32>} : () -> tensor<4xi32>
      %57 = "tf.Const"() {value = dense<0> : tensor<4xi32>} : () -> tensor<4xi32>
      %534 = "tf.StridedSlice"(%arg0, %57, %57, %18) {begin_mask = 11 : i64, device = "", ellipsis_mask = 0 : i64, end_mask = 11 : i64, new_axis_mask = 4 : i64, shrink_axis_mask = 0 : i64} : (tensor<*xf32>, tensor<4xi32>, tensor<4xi32>, tensor<4xi32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 536 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/metrics/BUILD

            "@llvm-project//mlir:Support",
        ],
    )
    
    tf_cc_test(
        name = "error_collector_inst_test",
        srcs = ["error_collector_inst_test.cc"],
        data = [
            "testdata/strided_slice.mlir",
        ],
        deps = [
            ":error_collector",
            ":error_collector_inst",
            ":types_util",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/metrics/error_collector_inst_test.cc

    }
    
    TEST(ErrorCollectorTest, TessSuccessPass) {
      std::string input_file = tensorflow::GetDataDependencyFilepath(
          "tensorflow/compiler/mlir/lite/metrics/testdata/strided_slice.mlir");
      MLIRContext context;
      context.getOrLoadDialect<mlir::func::FuncDialect>();
      context.getOrLoadDialect<TF::TensorFlowDialect>();
      context.enableMultithreading();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

    // tfl.custom / tfl.mean / tfl.minimum / tfl.pad / tfl.pow / tfl.prelu /
    // tfl.relu / tfl.relu6 / tfl.rsqrt / tfl.sin / tfl.slice / tfl.softmax /
    // tfl.space_to_depth / tfl.sqrt / tfl.square / tfl.squared_difference /
    // tfl.strided_slice / tfl.tanh / tfl.transpose / tfl.transpose_conv
    class GpuBasicSupportedOpNoCost : public TargetHardwareOperation {
      double GetOpCost(mlir::Operation* op) const override { return 0; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top