MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / int_version_to_string

Function int_version_to_string

src/backend/common/Version.hpp:75–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75inline std::string int_version_to_string(int version) {
76 return std::to_string(version / 1000) + "." +
77 std::to_string(static_cast<int>((version % 1000) / 10.));
78}
79
80} // namespace common
81} // namespace arrayfire

Callers 1

getCUDARuntimeVersionFunction · 0.85

Calls 1

to_stringFunction · 0.85

Tested by

no test coverage detected