/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include #include "glog/logging.h" #include "paddle/fluid/framework/variable.h" #include "paddle/fluid/jit/property.h" #include "paddle/phi/core/enforce.h" #include "paddle/phi/core/errors.h" namespace paddle { namespace jit { using Variable = paddle::framework::Variable; void Property::DeserializationFromString(const std::string &str) { PADDLE_ENFORCE_EQ( this->Proto()->ParsePartialFromString(str), true, phi::errors::InvalidArgument("Failed to parse pb from string")); return; } std::string Property::SerializationToString() { std::string retv; PADDLE_ENFORCE_EQ(this->Proto()->SerializePartialToString(&retv), true, phi::errors::InvalidArgument( "Failed to serialize input Desc to string.")); return retv; } void Property::Deserialization(const std::string &path) { std::ifstream ifs(path, std::ios::binary | std::ios::in); std::string str((std::istreambuf_iterator(ifs)), std::istreambuf_iterator()); DeserializationFromString(str); ifs.close(); return; } void Property::Serialization(const std::string &path) { std::string str = SerializationToString(); std::ofstream ofs(path, std::ios::binary | std::ios::out); ofs << str; ofs.close(); return; } int Property::Size() const { return property_.entrys_size(); } std::vector Property::Names() const { std::vector res; for (int i = 0; i < Size(); i++) { auto entry = property_.entrys(i); if (entry.has_name()) { res.push_back(entry.name()); } else { LOG(WARNING) << "JIT::Property entry " << i << " not has name! Please check whether it is reasonable."; } } return res; } std::unordered_map> Property::Values() { std::unordered_map> res; using ValueProto = proto::ValueProto; for (int i = 0; i < Size(); i++) { auto entry = property_.entrys(i); if (entry.has_name()) { auto &n = entry.name(); // remove Class Name suffix auto key = n.substr(n.find_first_of('.') + 1); std::shared_ptr var(new Variable()); auto type = entry.type(); switch (type) { case ValueProto::FLOAT: *var->GetMutable() = GetFloat(n); break; case ValueProto::INT: *var->GetMutable() = static_cast(GetInt64(n)); break; case ValueProto::STRING: *var->GetMutable() = GetString(n); break; case ValueProto::FLOATS: *var->GetMutable>() = GetFloats(n); break; case ValueProto::INTS: *var->GetMutable>() = GetInt64s(n); break; case ValueProto::STRINGS: *var->GetMutable>() = GetStrings(n); break; default: break; } res[key] = var; VLOG(3) << "read property: " << n << " to " << key; } else { LOG(WARNING) << "JIT::Property entry " << i << " not has name! Please check whether it is reasonable."; } } return res; } void Property::SetFloat(const float &f) { auto type = proto::ValueProto::FLOAT; auto entry = property_.add_entrys(); entry->set_type(type); entry->set_f(f); VLOG(3) << "Property: set_float " << f; } void Property::SetFloat(const std::string &name, const float &f) { auto type = proto::ValueProto::FLOAT; auto entry = property_.add_entrys(); entry->set_name(name); entry->set_type(type); entry->set_f(f); VLOG(3) << "Property: set_float " << f << " name: " << name; } float Property::GetFloat(const std::string &name) const { for (int i = 0; i < Size(); i++) { auto e = property_.entrys(i); if (e.has_name() && e.name() == name) { PADDLE_ENFORCE( e.has_type() && e.type() == proto::ValueProto::FLOAT, phi::errors::PreconditionNotMet("JIT::Property GetFloat: idx=%d type " "is not float. Expect %d, but %d", i, proto::ValueProto::FLOAT, e.type())); return e.f(); } } PADDLE_THROW(phi::errors::NotFound( "JIT::Property GetFloat: name: %s not found", name)); return 0; } float Property::GetFloat(const int &idx) const { PADDLE_ENFORCE_EQ( idx < Size() && idx >= 0, true, phi::errors::OutOfRange( "JIT::Property GetFloat: idx=%d out of range %d", idx, Size())); auto e = property_.entrys(idx); if (e.has_f()) { return e.f(); } PADDLE_THROW(phi::errors::InvalidArgument( "JIT::Property GetFloat: input idx (%d) element is not a float.", idx)); return 0; } void Property::SetFloats(const std::vector &v) { auto type = proto::ValueProto::FLOATS; auto entry = property_.add_entrys(); entry->set_type(type); for (auto i : v) { entry->add_floats(i); } VLOG(3) << "Property: set_floats with length: " << v.size(); } void Property::SetFloats(const std::string &name, const std::vector &v) { auto type = proto::ValueProto::FLOATS; auto entry = property_.add_entrys(); entry->set_name(name); entry->set_type(type); for (auto i : v) { entry->add_floats(i); } VLOG(3) << "Property: set_floats with length " << v.size() << " for name: " << name; } std::vector Property::GetFloats(const std::string &name) { for (int i = 0; i < Size(); i++) { auto e = property_.entrys(i); if (e.has_name() && e.name() == name) { PADDLE_ENFORCE( e.has_type() && e.type() == proto::ValueProto::FLOATS, phi::errors::PreconditionNotMet( "JIT::Property GetFloats: idx=%d type is not floats.", i)); auto items = e.floats(); return std::vector(items.begin(), items.end()); } } PADDLE_THROW(phi::errors::NotFound( "JIT::Property GetFloats: name: %s not found", name)); return std::vector(); } void Property::SetInt64(const int64_t &i) { auto type = proto::ValueProto::INT; auto entry = property_.add_entrys(); entry->set_type(type); entry->set_i(i); VLOG(3) << "Property: set_int " << i; } void Property::SetInt64(const std::string &name, const int64_t &i) { auto type = proto::ValueProto::INT; auto entry = property_.add_entrys(); entry->set_name(name); entry->set_type(type); entry->set_i(i); VLOG(3) << "Property: set_int " << i << " name: " << name; } int64_t Property::GetInt64(const std::string &name) { for (int i = 0; i < Size(); i++) { auto e = property_.entrys(i); if (e.has_name() && e.name() == name) { PADDLE_ENFORCE(e.has_type() && e.type() == proto::ValueProto::INT, phi::errors::PreconditionNotMet( "JIT::Property GetInt64: idx=%d type is not int.", i)); return e.i(); } } PADDLE_THROW(phi::errors::NotFound( "JIT::Property GetInt64: name: %s not found", name)); return 0; } void Property::SetInt64s(const std::vector &v) { auto type = proto::ValueProto::INTS; auto entry = property_.add_entrys(); entry->set_type(type); for (auto e : v) { entry->add_ints(e); } VLOG(3) << "Property: set_ints " << v.size(); } void Property::SetInt64s(const std::string &name, const std::vector &v) { auto type = proto::ValueProto::INTS; auto entry = property_.add_entrys(); entry->set_name(name); entry->set_type(type); for (auto i : v) { entry->add_ints(i); } VLOG(3) << "Property: set_ints " << v[0] << " name: " << name; } std::vector Property::GetInt64s(const std::string &name) { for (int i = 0; i < Size(); i++) { auto e = property_.entrys(i); if (e.has_name() && e.name() == name) { PADDLE_ENFORCE( e.has_type() && e.type() == proto::ValueProto::INTS, phi::errors::PreconditionNotMet( "JIT::Property GetInt64s: idx=%d type is not ints.", i)); auto items = e.ints(); std::vector res; std::transform(items.begin(), items.end(), std::back_inserter(res), [](const int64_t &v) { return static_cast(v); }); return res; } } PADDLE_THROW(phi::errors::NotFound( "JIT::Property GetInt64s: name: %s not found", name)); return {}; } void Property::SetString(const std::string &s) { auto type = proto::ValueProto::STRING; auto entry = property_.add_entrys(); entry->set_type(type); entry->set_s(s); VLOG(3) << "Property: set_string with value : " << s; } void Property::SetString(const std::string &name, const std::string &s) { auto type = proto::ValueProto::STRING; auto entry = property_.add_entrys(); entry->set_name(name); entry->set_type(type); entry->set_s(s); VLOG(3) << "Property: set_string " << s << " name: " << name; } std::string Property::GetString(const std::string &name) { for (int i = 0; i < Size(); i++) { auto e = property_.entrys(i); if (e.has_name() && e.name() == name) { PADDLE_ENFORCE( e.has_type() && e.type() == proto::ValueProto::STRING, phi::errors::PreconditionNotMet( "JIT::Property GetString: idx=%d type is not string.", i)); return e.s(); } } PADDLE_THROW(phi::errors::NotFound( "JIT::Property GetString: name: %s not found", name)); return {}; } void Property::SetStrings(const std::vector &v) { auto type = proto::ValueProto::STRINGS; auto entry = property_.add_entrys(); entry->set_type(type); for (auto i : v) { entry->add_strings(i); } VLOG(3) << "Property: set_strings " << v.size(); } void Property::SetStrings(const std::string &name, const std::vector &v) { auto type = proto::ValueProto::STRINGS; auto entry = property_.add_entrys(); entry->set_name(name); entry->set_type(type); for (auto i : v) { entry->add_strings(i); } VLOG(3) << "Property: set_strings " << v[0] << " name: " << name; } std::vector Property::GetStrings(const std::string &name) { for (int i = 0; i < Size(); i++) { auto e = property_.entrys(i); if (e.has_name() && e.name() == name) { PADDLE_ENFORCE( e.has_type() && e.type() == proto::ValueProto::STRINGS, phi::errors::PreconditionNotMet( "JIT::Property GetStrings: idx=%d type is not strings.", i)); auto items = e.strings(); return std::vector(items.begin(), items.end()); } } PADDLE_THROW(phi::errors::NotFound( "JIT::Property GetStrings: name: %s not found", name)); return {}; } } // namespace jit } // namespace paddle