Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SpaceToBatchND (0.26 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK-DAG: [[RESULT:%.+]] = "tf.Reshape"([[PERMUTED]], [[OUTPUT_SHAPE]])
      // CHECK-DAG: return [[RESULT]]
      %0 = "tf.SpaceToBatchND"(%input, %block_shape, %paddings) : (tensor<3x5x7x10xf32>, tensor<2xi64>, tensor<2x2xi64>) -> tensor<?x?x?x10xf32>
      func.return %0 : tensor<?x?x?x10xf32>
    }
    
    // Verify SpaceToBatchND with input tensor of element type f16. This test case is derived from 'fourdim_space_to_batch_nd'. It checks the output
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                                axis_value);
        return success();
      }
    };
    
    // Lowers SpaceToBatchND by reducing to reshape(transpose(reshape(pad(input)))).
    //
    // Before rewrite:
    //   output = SpaceToBatchND(input, block_shape, paddings)
    // Let:
    //   [batch] + spatial_shape + remaining_shape = input.shape
    //   M = spatial_shape.rank
    // After rewrite:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      }
    
      if (failed(ConvertTf2XlaOps(func, ctx))) {
        signalPassFailure();
        return;
      }
    
      // This pattern will try to identify and optimize for dilated convolution.
      // e.g. Patterns like "SpaceToBatchND -> Conv2D -> BatchToSpaceND" will be
      // replaced with a single Conv op with dilation parameter.
      patterns.add<ConvertTFDilatedConvOp<TF::Conv2DOp>, FusedBatchNormV3Pat,
    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