Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for out_backprop (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      func.return %0 : tensor<256x9x7x16xf32>
    }
    
    // -----
    
    // CHECK-LABEL: @conv2d_backprop_input_dynamic
    func.func @conv2d_backprop_input_dynamic(%filter: tensor<2x2x1x16xf32>, %out_backprop: tensor<?x256x256x16xf32>) -> tensor<?x512x512x1xf32> {
      // CHECK: %[[REV_FILTER:.*]] = "mhlo.reverse"(%arg0) <{dimensions = dense<[0, 1]> : tensor<2xi64>}>
      // CHECK: %[[RESULT:.*]] = mhlo.convolution(%arg1, %[[REV_FILTER]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto filter_ty = mlir::dyn_cast<RankedTensorType>(op.getFilter().getType());
    
        // With the exception of out_backprop's batch dimension, out_backprop and
        // filter need to have static shape. Filter is validated here, out_backprop
        // is mostly validated at use.
        if (!out_backprop_ty || !filter_ty || !filter_ty.hasStaticShape())
          return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top