Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EmitValueConstraintsRemarks (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/test_cluster_ops_by_policy.cc

                                     /*resolve=*/false, /*emit_remarks=*/true);
      (void)result;
    
      // Emit remarks for all operations that use constrained values.
      EmitValueConstraintsRemarks(constraints);
    }
    
    }  // anonymous namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>> CreateTestClusteringPolicyPass() {
      return std::make_unique<TestClusteringPolicyPass>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

        ValuesConstraintSet& constraints, bool resolve = false,
        bool emit_remarks = false);
    
    // Emits constraints remarks for all operations that use constrained values.
    void EmitValueConstraintsRemarks(const ValuesConstraintSet& constraints);
    
    // Emits constraints remarks for function inputs that are in the constraints
    // set (entry block arguments have constraints).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      };
    
      return PropagateValuesConstraints(worklist, filter, policies, constraints,
                                        resolve, emit_remarks);
    }
    
    void EmitValueConstraintsRemarks(const ValuesConstraintSet &constraints) {
      constraints.Walk([](Value value, ValueConstraint constraint) {
        for (OpOperand &operand : value.getUses())
          operand.getOwner()->emitRemark(
    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