Git Product home page Git Product logo

rlcpppythonplugin's Introduction

rlCppPythonPlugin

Sample project for setting up a C++ plugin for Python

CPython and PyBind11 plugin (C++, VS2022)

Solution file in rlCppPlugin contains 3 projects:

  • rlMathCalc

    • Defines some trigonometric functions
  • rlCppPlugin

    • Exposes functions in rlMathCalc to a dll using CPython
  • rlCppPlugin2

    • Exposes functions in rlMathCalc to a dll using PyBind11
    • Simpler than CPython

Remarks:

  • All projects in solutions builds to /output folder
  • Additional Python library directories and includes are hardcoded (to Python libs)
  • Dll extensions are set to .pyd in vs configuration properties
  • Post build events copies resulting .pyd to Python source directory

Python rlCppPythonPlugin module

rlCppPythonPlugin.py imports functions from the above mentioned plugins and test their perfomance.

Example results with N = 50e6:

Method Time [S]
N calls to Python tanh 21.911s
N calls to CPython tanh 5.096s
N calls to PyBind11 tanh 15.088s
CPython calling tanh N times 0.512s
PyBind11 calling tanh N times 0.524s

PyBind11 simplifies the definitions of the functions and module to be exposed to Python from C++. However, has some overhead for each function calls. Haven't digged into it, but probably some work arounds for that. When doing large calculations in single functions, there's isn't any difference in perfomance between the two.

rlcpppythonplugin's People

Contributors

xtremi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.