Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SymbolicGradientOp (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      supported_ops->insert(OperationName(
          mlir::TF::XlaSelectAndScatterOp::getOperationName(), context));
      supported_ops->insert(
          OperationName(mlir::TF::SymbolicGradientOp::getOperationName(), context));
      supported_ops->insert(OperationName(
          mlir::TF::XlaVariadicReduceOp::getOperationName(), context));
      supported_ops->insert(OperationName(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients.cc

          for (const int dy_index : no_grad_dy_indices) {
            dy[dy_index] = ops::ZerosLike(scope_, Output(n, dy_index));
          }
        }
    
        // TODO(andydavis) Add option to encapsulate grad function in
        // SymbolicGradientOp (as opposed to inlining into the graph).
        std::vector<Output> dx;
        TF_RETURN_IF_ERROR(CallGradFunction(Operation(n), dy, &dx));
    
        // Backprop along the in edges.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top