Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 7y364d (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      // For example, if new filter shape is [4, 4, 12, 64], old filter shape
      // is [7, 7, 3, 64] with block_size 2.
      // Below transforms will be applied to the filter:
      // 1. Reshape to [4, 4, 2, 2, 3, 64];
      // 2. Transpose to [4, 2, 4, 2, 3, 64];
      // 3. Reshape to [8, 8, 3, 64];
      // 4. Slice to [7, 7, 3, 64].
      SmallVector<int64_t, 6> first_reshape_shape = {
          new_filter_shape[0],
          new_filter_shape[1],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        %0 = "tf.Const"() {value = dense<1> : tensor<i64>} : () -> tensor<i64>
        %1 = "tf.Const"() {value = dense<0> : tensor<1x1xi32>} : () -> tensor<1x1xi32>
        %2 = "tf.Const"() {value = dense<[7, 7, 3, 64]> : tensor<4xi32>} : () -> tensor<4xi32>
        %3 = "tf.Const"() {value = dense<[[0, 0], [3, 3], [3, 3], [0, 0]]> : tensor<4x2xi32>} : () -> tensor<4x2xi32>
        %4 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
Back to top