Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for outlined_function (0.22 sec)

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

      for (auto p : llvm::zip(live_ins, outlined_func_block->getArguments())) {
        replaceAllUsesInRegionWith(std::get<0>(p), std::get<1>(p), op_region);
      }
    
      // Move all instructions in cluster_op into outlined_function's only block.
      auto& op_body = op.GetBody().getOperations();
      outlined_func_block->getOperations().splice(
          outlined_func_block->end(), op_body, op_body.begin(), op_body.end());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top