Program Listing for File module.cpp
↰ Return to documentation for file (morpheus/_lib/modules/module.cpp
)
/*
* SPDX-FileCopyrightText: Copyright (c) 2021-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "morpheus/modules/data_loader_module.hpp"
#include "morpheus/utilities/string_util.hpp"
#include "morpheus/version.hpp"
#include <mrc/modules/module_registry_util.hpp>
#include <pybind11/pybind11.h> // for arg, init, class_, module_, str_attr_accessor, PYBIND11_MODULE, pybind11
#include <pybind11/pytypes.h>
#include <sstream>
#include <vector>
namespace morpheus {
namespace py = pybind11;
PYBIND11_MODULE(modules, _module)
{
_module.doc() = R"pbdoc(
-----------------------
.. currentmodule:: morpheus.modules
.. autosummary::
:toctree: _generate
)pbdoc";
// Get the MRC version that we are registering these modules for. Ideally, this would be able to get it directly
// from <mrc/version.hpp> but that file isnt exported
std::vector<unsigned int> mrc_version;
auto mrc_version_list = pybind11::module_::import("mrc").attr("__version__").attr("split")(".").cast<py::list>();
for (const auto& l : mrc_version_list)
{
auto i = py::int_(py::reinterpret_borrow<py::object>(l));
mrc_version.push_back(i.cast<unsigned int>());
}
mrc::modules::ModelRegistryUtil::create_registered_module<DataLoaderModule>("DataLoader", "morpheus", mrc_version);
_module.attr("__version__") =
MORPHEUS_CONCAT_STR(morpheus_VERSION_MAJOR << "." << morpheus_VERSION_MINOR << "." << morpheus_VERSION_PATCH);
}
} // namespace morpheus