pybind11

pybind11

文章 0 浏览 0

是否可以将 C 可执行文件与 Python 绑定?

最近,我工作的公司已经将其代码库现代化为主要使用 Python。上周,我的任务是研究转换我们用来管理某些 USB 设备的实用程序。我很快发现这个程序是高…

乜一 2025-01-15 22:48:02 0 0

Pybind11 模块的函数签名/接口(IDE 建议)

假设我们有一个名为 _sample 的简单模块,使用 pybind11 构建: /* py_bindings.cpp */ #include namespace py = pybind11; PYBIND11_MODULE(_sample,…

我不在是我 2025-01-14 04:11:10 1 0

无法在jupyter上导入.so文件

我正在 ubuntu 服务器上工作,我安装了 jupyterhub,我正在尝试导入一些绑定到 pybind11 的模块,目录看起来像 - base: - cpp_core: - backtester.cpy…

美男兮 2025-01-13 23:00:34 0 0

如何将 2d numpy 数组传递给 C++ pybind11?

在 C++ pybind11 包装器中: .def("calcSomething", [](py::array_t const & arr1, py::array_t const & arr2) { // do calculation } ) 在 python 中…

囚你心 2025-01-13 05:43:56 0 0

C++ 20 个带有 PyBind11 的协程

我正在尝试使用 PyBind11 获得一个简单的基于 C++ 20 的生成器模式。这是代码: #include #include #include struct Generator2 { Generator2(){} str…

柒七 2025-01-12 23:29:02 1 0

在 OpenMP 并行块内运行从 Python 接收的函数时,运行时间随线程数变化

这是用于测试的文件。 # CMakeLists.txt cmake_minimum_required(VERSION 3.16) project(CALLBACK_TEST) set(CMAKE_CXX_STANDARD 17) add_compile_opt…

烂人 2025-01-12 17:03:50 2 0

pybind11 如何将指针转换为 std::size_t 或从 std::size_t 转换指针?

我从 Stackoverflow 的一个问题中发现了一个问题。描述如下: 我有一个返回原始浮点指针的 C++ 函数,以及另一个接受原始浮点指针作为参数的 C++ 函数…

浅笑依然 2025-01-12 15:03:31 1 0

pybind11 绑定输入输出参数

我的 C++ 代码 void test(std::string & data) { data += " github"; } PYBIND11_MODULE(example11, m) { m.def("test", [](std::reference_wrapper w…

不语却知心 2025-01-11 13:54:06 1 0

用于enable_if_t>的Python绑定

我需要绑定 set() 的乐趣,其定义如下: template std::enable_if_t> set(U const& val) { set_value(val); } template using enable_if_t = typename…

ゞ记忆︶ㄣ 2025-01-10 22:07:10 0 0
更多

推荐作者

尘曦

文章 0 评论 0

善良天后

文章 0 评论 0

韬韬不绝

文章 0 评论 0

qq_CgiN62

文章 0 评论 0

不美如何

文章 0 评论 0

更多

友情链接

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文