/** * 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 #include #include #include #include #include #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(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 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 void GenerateRandomData(int size, void *data, Distribution distribution) { std::mt19937 random_engine; int elements_num = size / sizeof(T); (void)std::generate_n(static_cast(data), elements_num, [&distribution, &random_engine]() { return static_cast(distribution(random_engine)); }); } int GenerateInputDataWithRandom(std::vector 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(tensor.DataSize(), input_data, std::uniform_real_distribution(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(); 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(); 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 failed." << 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 " << ret << std::endl; return ret; } // 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(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); }