#pragma once #include namespace torch::jit { // Find the valid upgrader graph for the upgrader and cache the result // for later lookups. Will error out if there is no valid upgrader graph // provided for the upgrader name. std::shared_ptr getUpgraderGraph(const std::string& upgrader_name); TORCH_API void ReplaceOldOperatorsWithUpgraders(std::shared_ptr graph); } // namespace torch::jit