Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ControlSinks (0.16 sec)

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

                << "{" << join_ids(analysis.DirectControlSuccessors(op)) << "}";
          }
          if (llvm::isa<func::ReturnOp>(op)) {
            op->emitRemark("Sinks: ")
                << "{" << join_ids(analysis.ControlSinks()) << "}";
          }
        });
      }
    
      StringRef getArgument() const final { return "tf-test-side-effect-analysis"; }
      StringRef getDescription() const final {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

          Operation* op, llvm::function_ref<bool(Operation*)> filter) const;
    
      // Returns a vector of ops that are control sinks (i.e. side-effecting ops
      // with no control successors).
      llvm::ArrayRef<Operation*> ControlSinks() const {
        return sorted_control_sinks_;
      }
    
      // Returns a vector with IDs of all resources that might be accessed by `op`.
      // This includes both op-based and value-based resources. The bool indicates
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top