Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for arg_indices_to_erase (0.28 sec)

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

        auto duplicate_arg = func.getArgument(i);
        auto original_arg = func.getArgument(unique_bound_inputs[attr]);
        duplicate_arg.replaceAllUsesWith(original_arg);
        arg_indices_to_erase.set(i);
      }
      func.eraseArguments(arg_indices_to_erase);
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDedupBoundInputBindingPass() {
      return std::make_unique<DedupBoundInputBindingPass>();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:25:35 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top