Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SkipIdentity (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      void runOnOperation() final;
    };
    
    // Returns the earlier value of which `v` is an identity. If `skipped` is
    // provided, it will be used to store the identity nodes skipped.
    Value SkipIdentity(Value v, bool allow_other_use,
                       llvm::SmallPtrSet<Operation*, 4>* skipped = nullptr) {
      while (auto result = mlir::dyn_cast<OpResult>(v)) {
        if (!(allow_other_use || v.hasOneUse())) break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top