Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for conv_2d (0.11 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

            %device_launch = "tf_device.cluster_func"(%input,...) {func = @_func,...)
            return ...
          }
          func @_func(%input: tensor<2x224x224x3xf32>, %filter: tensor<7x7x3x64xf32>) {
            %6 = "tf.Conv2D"(%input, %filter)  {strides = [1, 2, 2, 1]}: (tensor<2x230x230x3xf32>, tensor<7x7x3x64xf32>) -> tensor<2x112x112x64xf32>
          }
        }
        ```
    
        The program will be transformed into:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return emitOptionalError(location, "invalid padding format provided");
      }
    
      // Output always have rank 4. All dimensions are initialized to
      // dynamic size and can be partially inferred.
      // TFL's conv2d is always NHWC format & the filter is OHWI.
      SmallVector<int64_t, 4> return_shape(4, ShapedType::kDynamic);
      return_shape[0] = input_ty.getDimSize(0);
      return_shape[3] = filter_ty.getDimSize(0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  4. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top