Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EmitInputsConstraintsRemarks (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    void EmitValueConstraintsRemarks(const ValuesConstraintSet& constraints);
    
    // Emits constraints remarks for function inputs that are in the constraints
    // set (entry block arguments have constraints).
    void EmitInputsConstraintsRemarks(func::FuncOp func,
                                      const ValuesConstraintSet& constraints);
    
    // Infers constraints for the values in the function body from the function
    // results attributes.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

          operand.getOwner()->emitRemark(
              llvm::formatv("operand #{0} constrained to: {1}",
                            operand.getOperandNumber(), constraint));
      });
    }
    
    void EmitInputsConstraintsRemarks(func::FuncOp func,
                                      const ValuesConstraintSet &constraints) {
      constraints.Walk([&](Value value, ValueConstraint constraint) {
        if (auto arg = mlir::dyn_cast<BlockArgument>(value))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top