Commit 2ee74893 authored by Robert Kimball's avatar Robert Kimball Committed by Scott Cyphers

add virtual method to get version number from Backend (#3485)

* add virtual method to get version number from Backend

* style

* semicolon
parent b7bb9971
...@@ -174,6 +174,9 @@ public: ...@@ -174,6 +174,9 @@ public:
virtual bool executable_can_create_tensors(); virtual bool executable_can_create_tensors();
/// \brief Get the version of the backend
/// The default value of 0.0.0 is chosen to be a parsable version number
virtual std::string get_version() const { return "0.0.0"; }
private: private:
// mutex to modify s_backend_shared_library_search_directory thread safe // mutex to modify s_backend_shared_library_search_directory thread safe
static std::mutex m_mtx; static std::mutex m_mtx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment