| 674 | } |
| 675 | |
| 676 | static std::string get_migraphx_version() |
| 677 | { |
| 678 | std::stringstream ss; |
| 679 | ss << std::to_string(MIGRAPHX_VERSION_MAJOR) << "." << std::to_string(MIGRAPHX_VERSION_MINOR) |
| 680 | << "." << std::to_string(MIGRAPHX_VERSION_PATCH); |
| 681 | return ss.str(); |
| 682 | } |
| 683 | |
| 684 | /* |
| 685 | program file version is for the data structure or format of the MXR file. Version should be bumped |
no test coverage detected