2026-01-28 06:16:04 +00:00

27 lines
929 B
C++

/**
* \brief a header stores the constants values of keys in json
* \author Nan Zhou, nanzhou at kneron dot us
* \copyright 2019 Kneron Inc. All right reserved.
*/
#ifndef PIANO_DYNASTY_INCLUDE_JSONKEYCONSTANTS_H_
#define PIANO_DYNASTY_INCLUDE_JSONKEYCONSTANTS_H_
#include <string>
namespace dynasty {
namespace common {
static std::string const MODEL_PATH_STR = "model_path";
static std::string const MODEL_INPUT_TXTS_STR = "model_input_txts";
static std::string const RADIX_CONFIG_FILE = "radix_config_file";
static std::string const OPERATION_NAME_STR = "operation_name";
static std::string const DATA_VECTOR_STR = "data_vector";
static std::string const MAX_ERROR_STR = "max_error";
static std::string const TEST_CASES_STR = "test_cases";
static std::string const GOLDEN_OUTPUTS_STR = "golden_outputs";
static std::string const COMPILER_CFG = "compiler_cfg";
}
}
#endif //PIANO_DYNASTY_INCLUDE_JSONKEYCONSTANTS_H_