Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dropAllReferences (0.1 sec)

  1. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

      // Clear the subgraph.
      // Those ops should be removed.
      for (auto* op : subgraph.partition_ops_) {
        if (IsConstantOrNone(op)) {
          continue;
        }
        op->dropAllDefinedValueUses();
        op->dropAllReferences();
        op->erase();
      }
      // Ensure that users of the call op's results appear after the launch op in
      // order to preserve the dominance property.
      TF::ReorderOpResultUses(call_op);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top