1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
#include <torch/csrc/jit/operator_upgraders/utils.h>
#include <c10/util/Optional.h>
#include <caffe2/serialize/versions.h>
#include <torch/csrc/jit/operator_upgraders/version_map.h>
#include <iostream>
#include <regex>
#include <string>
#include <vector>
namespace torch {
namespace jit {
c10::optional<UpgraderEntry> findUpgrader(
const std::vector<UpgraderEntry>& upgraders_for_schema,
size_t current_version) {
// we want to find the entry which satisfies following two conditions:
// 1. the version entry must be greater than current_version
// 2. Among the version entries, we need to see if the current version
// is in the upgrader name range
auto pos = std::find_if(
upgraders_for_schema.begin(),
upgraders_for_schema.end(),
[current_version](const UpgraderEntry& entry) {
return entry.bumped_at_version > current_version;
});
if (pos != upgraders_for_schema.end()) {
return *pos;
}
return c10::nullopt;
}
bool isOpCurrentBasedOnUpgraderEntries(
const std::vector<UpgraderEntry>& upgraders_for_schema,
size_t current_version) {
auto latest_update =
upgraders_for_schema[upgraders_for_schema.size() - 1].bumped_at_version;
if (latest_update > current_version) {
return false;
}
return true;
}
bool isOpSymbolCurrent(const std::string& name, size_t current_version) {
auto it = get_operator_version_map().find(name);
if (it != get_operator_version_map().end()) {
return isOpCurrentBasedOnUpgraderEntries(it->second, current_version);
}
return true;
}
std::vector<std::string> loadPossibleHistoricOps(
const std::string& name,
c10::optional<size_t> version) {
std::vector<std::string> possibleSchemas;
if (!version.has_value()) {
return possibleSchemas;
}
for (const auto& entry : get_operator_version_map()) {
auto old_symbol_name = entry.first;
// strip off the overload name, if exist
auto base_name = old_symbol_name.substr(0, old_symbol_name.find('.'));
if (base_name == name) {
auto possibleUpgrader = findUpgrader(entry.second, version.value());
if (possibleUpgrader.has_value()) {
possibleSchemas.push_back(possibleUpgrader.value().old_schema);
}
}
}
return possibleSchemas;
}
uint64_t getMaxOperatorVersion() {
return caffe2::serialize::kProducedFileFormatVersion;
}
std::vector<UpgraderRange> getUpgradersRangeForOp(const std::string& name) {
std::vector<UpgraderRange> output;
auto it = get_operator_version_map().find(name);
if (it == get_operator_version_map().end()) {
return output;
}
output.reserve(it->second.size());
int cur_min = 0;
for (const auto& entry : it->second) {
int cur_max = entry.bumped_at_version - 1;
output.emplace_back(UpgraderRange{cur_min, cur_max});
cur_min = entry.bumped_at_version;
}
return output;
}
} // namespace jit
} // namespace torch
|