ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
kernel.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #include "core/kernel/Kernel.h"
9 
11 #include "pybind/core/core.h"
12 #include "pybind/docstring.h"
13 
14 namespace cloudViewer {
15 namespace core {
16 
17 void pybind_core_kernel(py::module &m) {
18  py::module m_kernel = m.def_submodule("kernel");
19  m_kernel.def("test_linalg_integration",
21 }
22 
23 } // namespace core
24 } // namespace cloudViewer
void pybind_core_kernel(py::module &m)
Definition: kernel.cpp:17
Generic file read and write utility for python interface.