51 lines
1.7 KiB
C++
51 lines
1.7 KiB
C++
/* Copyright (c) 2018 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 "paddle/fluid/framework/version.h"
|
|
|
|
#include <sstream>
|
|
|
|
namespace paddle::framework {
|
|
|
|
bool IsProgramVersionSupported(int64_t version) {
|
|
/* So far, all old versions of DenseTensor are supported in the
|
|
* new version. The compatibility judgment cannot be made only
|
|
* by the version number. Please do not use this interface,
|
|
* it may be discarded because backward compatibility.
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
bool IsTensorVersionSupported(uint32_t version) {
|
|
/* So far, all old versions of DenseTensor are supported in the
|
|
* new version. The compatibility judgment cannot be made only
|
|
* by the version number. Please do not use this interface,
|
|
* it may be discarded because backward compatibility.
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
std::string DumpVersion(const int64_t version) {
|
|
std::stringstream buffer;
|
|
const int major = static_cast<int>(version / MAJOR_COEFF);
|
|
const int minor =
|
|
static_cast<int>((version - major * MAJOR_COEFF) / MINOR_COEFF);
|
|
const int patch = static_cast<int>(
|
|
(version - major * MAJOR_COEFF - minor * MINOR_COEFF) / PATCH_COEFF);
|
|
buffer << major << "." << minor << "." << patch;
|
|
return buffer.str();
|
|
}
|
|
|
|
} // namespace paddle::framework
|