Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for out_backprop (0.12 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{requires out_backprop operand to have rank at least two with `NHWC` data format}}
      %0 = "tf.BiasAddGrad"(%arg0) {data_format = "NHWC"} : (tensor<3xf32>) -> tensor<3xf32>
      func.return %0 : tensor<3xf32>
    }
    
    // -----
    
    func.func @testBiasAddGrad(%arg0: tensor<2x3xf32>) -> tensor<3xf32> {
      // expected-error @+1 {{requires out_backprop operand to have rank at least three with `NCHW` data format}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top