123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*************************************************************************
- * Copyright (C) [2021] by Cambricon, Inc. 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
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *************************************************************************/
- #include <gflags/gflags.h>
- #include <array>
- #include <iostream>
- #include <sstream>
- #include <string>
- #include <utility>
- #include <vector>
- #include "cnstream_logging.hpp"
- #include "gtest/gtest.h"
- #include "sys/stat.h"
- #include "sys/types.h"
- #include "device/mlu_context.h"
- #define PATH_MAX_SIZE 1024
- const std::vector<std::array<std::string, 3>> model_info = {
- {"resnet50_offline.cambricon", "/Classification/resnet50/",
- "http://video.cambricon.com/models/MLU270/Classification/resnet50/resnet50_offline.cambricon"},
- {"resnet50_offline_v1.3.0.cambricon", "/Classification/resnet50/",
- "http://video.cambricon.com/models/MLU270/Classification/resnet50/resnet50_offline_v1.3.0.cambricon"},
- {"yuv2gray.cambricon", "/KCF/", "http://video.cambricon.com/models/MLU270/KCF/yuv2gray.cambricon"},
- {"feature_extract_4c4b_argb_270_v1.5.0.cambricon", "/feature_extract/",
- "http://video.cambricon.com/models/MLU270/feature_extract/feature_extract_4c4b_argb_270_v1.5.0.cambricon"},
- };
- class TestEnvironment : public testing::Environment {
- public:
- virtual void SetUp() {
- edk::MluContext mlu_ctx;
- mlu_ctx.SetDeviceId(0);
- // mlu_ctx.SetChannelId(0);
- mlu_ctx.BindDevice();
- LOGI(MODULESUNITEST) << "Set Up global environment.";
- }
- };
- inline bool check_file_existence(const std::string &name) { return (access(name.c_str(), F_OK) == 0); }
- std::string GetExecPath() {
- char path[PATH_MAX_SIZE];
- int cnt = readlink("/proc/self/exe", path, PATH_MAX_SIZE);
- if (cnt < 0 || cnt >= PATH_MAX_SIZE) {
- return "";
- }
- if (path[cnt - 1] == '/') {
- path[cnt - 1] = '\0';
- } else {
- path[cnt] = '\0';
- }
- std::string result = std::string(path);
- return result.substr(0, result.rfind('/') + 1);
- }
- // split the path for make it
- std::vector<std::string> split_path(const std::string &s, char c) {
- std::stringstream ss(s);
- std::string piece;
- std::vector<std::string> chip_path;
- while (std::getline(ss, piece, c)) {
- chip_path.push_back(piece);
- }
- return chip_path;
- }
- void GetModuleExists(const std::vector<std::array<std::string, 3>> model_info) {
- std::string get_execute_path = GetExecPath();
- // std::cout << "program execute path is :" << get_execute_path << std::endl;
- std::string model_path;
- std::string model_file_path;
- std::string tmp = get_execute_path + "../../data/models";
- // if path not exists, return -1 and build it
- if (access(tmp.c_str(), F_OK) != 0) {
- mkdir(tmp.c_str(), 0777);
- }
- tmp += "/MLU270";
- if (access(tmp.c_str(), F_OK) != 0) {
- mkdir(tmp.c_str(), 0777);
- }
- for (unsigned i = 0; i < model_info.size(); i++) {
- std::string model_name = model_info[i][0];
- std::string tmp_path = get_execute_path + "../../data/models/MLU270";
- model_path = tmp_path + model_info[i][1];
- model_file_path = model_path + model_name;
- // model file does not exists
- if (!check_file_existence(model_file_path)) {
- // std::vector<std::string> chip_path = split_path(model_pair.find(model_name)->second.first);
- std::vector<std::string> chip_path = split_path(model_info[i][1], '/');
- for (unsigned i = 0; i < chip_path.size(); i++) {
- tmp_path = tmp_path + "/" + chip_path[i];
- if (access(tmp_path.c_str(), F_OK) != 0) {
- mkdir(tmp_path.c_str(), 0777);
- }
- }
- // std::string cmd ="wget -P " + model_path + " " + model_pair.find(model_name)->second.second;
- std::string cmd = "wget -P " + model_path + " " + model_info[i][2];
- if (system(cmd.c_str()) != 0) {
- std::cerr << "shell execute failed" << std::endl;
- }
- }
- }
- }
- int main(int argc, char **argv) {
- // GetModuleExists(model_name, modulepath_pair);
- GetModuleExists(model_info);
- // fork process and write log to file in child proccess is not supported in log system
- // cnstream::InitCNStreamLogging(GetExecPath().c_str());
- testing::InitGoogleTest(&argc, argv);
- ::gflags::ParseCommandLineFlags(&argc, &argv, false);
- // FLAGS_alsologtostderr = true;
- testing::AddGlobalTestEnvironment(new TestEnvironment);
- int ret = RUN_ALL_TESTS();
- // cnstream::ShutdownCNStreamLogging();
- return ret;
- }
|