Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for func_arguments_ (0.11 sec)

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

      IRMapping values_in_scope;
      // Function arguments can appear as operands, so they clone should
      // be aware of them.
      assert(subgraph.FuncArguments().size() == new_func.getNumArguments());
      for (int i = 0; i < subgraph.FuncArguments().size(); ++i) {
        Value original_value = subgraph.FuncArguments()[i];
        Value new_func_arg = new_func.getArgument(i);
        values_in_scope.map(original_value, new_func_arg);
      }
    
    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