Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FindOpsFromArgumentsToResults (0.53 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      }
    }
    
    // Finds ops in the paths from arguments to results. The ops is listed in an
    // order that the former ops shouldn't have any dependencies on the later ones.
    SmallVector<Operation*> FindOpsFromArgumentsToResults(
        const ArrayRef<Value> arguments, const ArrayRef<Value> results) {
      std::queue<Value> value_queue;
      for (Value result : results) {
        value_queue.push(result);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top