forked from huawei/mindspore2022
199 lines
5.8 KiB
C++
199 lines
5.8 KiB
C++
/**
|
|
* Copyright 2021 Huawei Technologies Co., Ltd
|
|
*
|
|
* 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 <algorithm>
|
|
#include <random>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <cstring>
|
|
#include <memory>
|
|
#include "include/api/model.h"
|
|
#include "include/api/context.h"
|
|
#include "include/api/status.h"
|
|
#include "include/api/types.h"
|
|
namespace {
|
|
constexpr int kNumPrintOfOutData = 50;
|
|
}
|
|
std::string RealPath(const char *path) {
|
|
const size_t max = 4096;
|
|
if (path == nullptr) {
|
|
std::cerr << "path is nullptr" << std::endl;
|
|
return "";
|
|
}
|
|
if ((strlen(path)) >= max) {
|
|
std::cerr << "path is too long" << std::endl;
|
|
return "";
|
|
}
|
|
auto resolved_path = std::make_unique<char[]>(max);
|
|
if (resolved_path == nullptr) {
|
|
std::cerr << "new resolved_path failed" << std::endl;
|
|
return "";
|
|
}
|
|
#ifdef _WIN32
|
|
char *real_path = _fullpath(resolved_path.get(), path, 1024);
|
|
#else
|
|
char *real_path = realpath(path, resolved_path.get());
|
|
#endif
|
|
if (real_path == nullptr || strlen(real_path) == 0) {
|
|
std::cerr << "file path is not valid : " << path << std::endl;
|
|
return "";
|
|
}
|
|
std::string res = resolved_path.get();
|
|
return res;
|
|
}
|
|
|
|
char *ReadFile(const char *file, size_t *size) {
|
|
if (file == nullptr) {
|
|
std::cerr << "file is nullptr." << std::endl;
|
|
return nullptr;
|
|
}
|
|
|
|
std::ifstream ifs(file, std::ifstream::in | std::ifstream::binary);
|
|
if (!ifs.good()) {
|
|
std::cerr << "file: " << file << " is not exist." << std::endl;
|
|
return nullptr;
|
|
}
|
|
|
|
if (!ifs.is_open()) {
|
|
std::cerr << "file: " << file << " open failed." << std::endl;
|
|
return nullptr;
|
|
}
|
|
|
|
ifs.seekg(0, std::ios::end);
|
|
*size = ifs.tellg();
|
|
std::unique_ptr<char[]> buf(new (std::nothrow) char[*size]);
|
|
if (buf == nullptr) {
|
|
std::cerr << "malloc buf failed, file: " << file << std::endl;
|
|
ifs.close();
|
|
return nullptr;
|
|
}
|
|
|
|
ifs.seekg(0, std::ios::beg);
|
|
ifs.read(buf.get(), *size);
|
|
ifs.close();
|
|
|
|
return buf.release();
|
|
}
|
|
|
|
template <typename T, typename Distribution>
|
|
void GenerateRandomData(int size, void *data, Distribution distribution) {
|
|
std::mt19937 random_engine;
|
|
int elements_num = size / sizeof(T);
|
|
(void)std::generate_n(static_cast<T *>(data), elements_num,
|
|
[&distribution, &random_engine]() { return static_cast<T>(distribution(random_engine)); });
|
|
}
|
|
|
|
int GenerateInputDataWithRandom(std::vector<mindspore::MSTensor> inputs) {
|
|
for (auto tensor : inputs) {
|
|
auto input_data = tensor.MutableData();
|
|
if (input_data == nullptr) {
|
|
std::cerr << "MallocData for inTensor failed." << std::endl;
|
|
return -1;
|
|
}
|
|
GenerateRandomData<float>(tensor.DataSize(), input_data, std::uniform_real_distribution<float>(0.1f, 1.0f));
|
|
}
|
|
return mindspore::kSuccess;
|
|
}
|
|
|
|
int QuickStart(int argc, const char **argv) {
|
|
if (argc < 2) {
|
|
std::cerr << "Model file must be provided.\n";
|
|
return -1;
|
|
}
|
|
// Read model file.
|
|
auto model_path = RealPath(argv[1]);
|
|
if (model_path.empty()) {
|
|
std::cerr << "Model path " << argv[1] << " is invalid.";
|
|
return -1;
|
|
}
|
|
size_t size = 0;
|
|
char *model_buf = ReadFile(model_path.c_str(), &size);
|
|
if (model_buf == nullptr) {
|
|
std::cerr << "Read model file failed." << std::endl;
|
|
return -1;
|
|
}
|
|
|
|
// Create and init context, add CPU device info
|
|
auto context = std::make_shared<mindspore::Context>();
|
|
if (context == nullptr) {
|
|
delete[](model_buf);
|
|
std::cerr << "New context failed." << std::endl;
|
|
return -1;
|
|
}
|
|
auto &device_list = context->MutableDeviceInfo();
|
|
auto device_info = std::make_shared<mindspore::CPUDeviceInfo>();
|
|
if (device_info == nullptr) {
|
|
delete[](model_buf);
|
|
std::cerr << "New CPUDeviceInfo failed." << std::endl;
|
|
return -1;
|
|
}
|
|
device_list.push_back(device_info);
|
|
|
|
// Create model
|
|
auto model = new (std::nothrow) mindspore::Model();
|
|
if (model == nullptr) {
|
|
delete[](model_buf);
|
|
std::cerr << "New Model failed." << std::endl;
|
|
return -1;
|
|
}
|
|
// Build model
|
|
auto build_ret = model->Build(model_buf, size, mindspore::kMindIR, context);
|
|
delete[](model_buf);
|
|
if (build_ret != mindspore::kSuccess) {
|
|
delete model;
|
|
std::cerr << "Build model error " << build_ret.StatusCode() << std::endl;
|
|
return -1;
|
|
}
|
|
|
|
// Get Input
|
|
auto inputs = model->GetInputs();
|
|
// Generate random data as input data.
|
|
auto ret = GenerateInputDataWithRandom(inputs);
|
|
if (ret != mindspore::kSuccess) {
|
|
delete model;
|
|
std::cerr << "Generate Random Input Data failed." << std::endl;
|
|
return -1;
|
|
}
|
|
// Get Output
|
|
auto outputs = model->GetOutputs();
|
|
|
|
// Model Predict
|
|
auto predict_ret = model->Predict(inputs, &outputs);
|
|
if (predict_ret != mindspore::kSuccess) {
|
|
delete model;
|
|
std::cerr << "Predict error " << predict_ret.StatusCode() << std::endl;
|
|
return -1;
|
|
}
|
|
|
|
// Print Output Tensor Data.
|
|
for (auto tensor : outputs) {
|
|
std::cout << "tensor name is:" << tensor.Name() << " tensor size is:" << tensor.DataSize()
|
|
<< " tensor elements num is:" << tensor.ElementNum() << std::endl;
|
|
auto out_data = reinterpret_cast<const float *>(tensor.Data().get());
|
|
std::cout << "output data is:";
|
|
for (int i = 0; i < tensor.ElementNum() && i <= 50; i++) {
|
|
std::cout << out_data[i] << " ";
|
|
}
|
|
std::cout << std::endl;
|
|
}
|
|
|
|
// Delete model.
|
|
delete model;
|
|
return mindspore::kSuccess;
|
|
}
|
|
|
|
int main(int argc, const char **argv) { return QuickStart(argc, argv); }
|