Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NextIterationName (0.27 sec)

  1. tensorflow/cc/ops/while_loop.cc

    }
    
    // Manually generates the name of the `loop_var_idx`-th NextIteration node of a
    // loop being constructed with `scope`. This is used to define the backedge
    // before the NextIteration node is created.
    string NextIterationName(const Scope& scope, int loop_var_idx) {
      string result;
      const string& prefix = scope.impl()->name();
      if (!prefix.empty()) strings::StrAppend(&result, prefix, "/");
      strings::StrAppend(&result, "NextIteration");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top