Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lnk2past/copperhead
An Inline C++ Extension Generator for Python
https://github.com/lnk2past/copperhead
c-plus-plus code-generation cpp python python-c-api python-extension python3
Last synced: 24 days ago
JSON representation
An Inline C++ Extension Generator for Python
- Host: GitHub
- URL: https://github.com/lnk2past/copperhead
- Owner: Lnk2past
- License: mit
- Created: 2019-03-04T22:04:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-10-26T13:32:00.000Z (about 3 years ago)
- Last Synced: 2024-09-15T03:30:55.373Z (about 2 months ago)
- Topics: c-plus-plus, code-generation, cpp, python, python-c-api, python-extension, python3
- Language: Python
- Homepage:
- Size: 117 KB
- Stars: 11
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# copperhead
[![Build Status](https://github.com/Lnk2past/copperhead/workflows/Build/badge.svg)](https://github.com/Lnk2past/copperhead/actions) [![Travis (.com)](https://img.shields.io/travis/com/Lnk2past/copperhead?label=Build&logo=travis)](https://travis-ci.org/Lnk2past/copperhead)python --> snake --> copperhead --> __c__ o __pp__ erhead --> __cpp__ --> __C++__
## Introduction
```copperhead``` is a dynamic code generator that allows C++ code blocks to be written and executed within Python. Ultimately the code is wrapped and built into a module using ```setuptools```. ```copperhead``` is great for prototyping and "what-if" exploration. I would not necessarily recommend using it directly for production code and environments, but it is something that can aid in developing production/release grade modules and libraries.
## Installation
For the latest release from [PyPI](https://pypi.org/project/copperhead/):
```shell
pip install copperhead
```For the latest dev, clone this repository and:
```shell
python setup.py install
``````copperhead``` will use the compiler that was used to build your Python installation, and so on older systems you may run into isues until I implement a way to pass compiler flags in (to perhaps revert the C++ standard to something older; right now defaults to C++14).
## Motivation
First and foremost I wanted to learn more about the Python C API (something I have only really hit the surface of over the years). I also was watching CppCon videos [(this one in particular)](https://www.youtube.com/watch?v=nXaxk27zwlk) and I was fascinated when he (Chandler Carruth) started writing assmebly inline with his C++. I have never worked with C++ on that low a level, and it blew my mind a little. I thought to myself and wondered "what if I could write my C++ inline with my Python?". So here we are today.
```copperhead``` generates vanilla C++ code without depending on 3rd party C++ libraries. This is done *within Python*, not from a native library or set of headers. This is important, because it means that you can focus on writing the C++ and not on all of the boilerplate that comes with a set of native bindings, build systems, etc. You simply write your C++ and keep going. *That is it*.
When you are done using ```copperhead``` you are left with the raw *C++ and setup.py* files used to generate the extension in the first place. This means that you have something concrete, reusable, tweakable, etc. that is purely standard C++ and standard Python. Say what you will, but this is probably the best part about ```copperhead```.
## How It Works
### Code Generation
```copperhead``` works by automatically wrapping your C++ code in a new Python API enabled function and pairing it with the necessary code to pack it into a module that is compatible with Python. There are three primary steps to this process:
1. Generate the function wrapper
2. Generate the module
3. Generate the setup scriptThe function wrapper is the most complicated component. ```copperhead``` will examine the return type and parameter types of the function type supplied and will generate all of the variables needed to convert from Python inputs to C++ types, call your function, and convert the return to a Python type.
The module is fairly cookie cutter at the moment and simply includes your C++ function, the wrapper, and all the boilerplate for making a module.
The setup script is just a *setup.py* script that we populate with a few bits of data, nothing special here.
### Installing & Importing C++ Modules
The newly created *setup.py* script is used for generating the module. It will dump the new modules locally in a directory named *.copperhead\_cache*. Your path will be adjusted to include the newly generated egg. If the egg already exists, this process is skipped and you will simply import what is already available. Note that the *function* is returned, not the module.
## Development Environment
I am coding this to work with latest Python and with modern C++ techniques. I have ~~absolutely no~~ little interest in backwards compatibility. While earlier versions and standards may work right now, I do not guarantee any of that moving forward. I will not hinder development for the sake of supporting something older. Given the range of development environments currently at my disposal there will be some compatibility for a bit.
## Basic Usage
### Hello World
Here is a simple example showing how to create your typical *Hello World!* program:
```python
import copperhead as cpphello_world_cpp = '''
#include
void hello_world()
{
std::cout << "Hello World!" << std::endl;
}'''hello_world = cpp.generate('hello_world', 'void()', hello_world_cpp)
hello_world()
```### STL Support
Basic STL support is provided now, with more planned. Current support is provided for:
- sequence containers
- std::vector
- std::deque
- std::forward_list
- std::list
- container adapters
- std::queue
- std::stackYou can pass and return these structues, as well as nest them. Much more is planned, namely associative containers (and their unordered counterparts!).
### Mandelbrot: A Practical Example
Want to generate the Mandelbrot Set? Awesome! You get to it and write a simple implementation to generate a file with the escape times:
```python
def mandlebrot(c):
max_iter = 100
i = 0
z = 0.0j
while abs(z) < 2.0 and i < max_iter:
z = z * z + c
i += 1
return max_iter - ix = -2.0
y = 1.25
h = 0.0005
n = int(2.5 / h)with open('fractal.dat', 'w') as f:
for yidx in range(n):
for xidx in range(n):
f.write('{} '.format(mandlebrot(complex(x, y))))
x += h
f.write('\n')
y -= h
x -= 2.5
```If this is the implementation you want, then fine. On my system it takes ~1 minutes 40 seconds to run. However, I do not want to wait upwards 2 minutes for this to run, and at scale this setup gets *worse*. There are potentially problems with buffering the output and maybe there are some other micro-optimizations we could make, but the improvements are not substantial and they really do not solve our performance problem. *Queue enter ```copperhead```*
Lots of iterating and lots of output. Sounds like something C++ would be pretty good at, right? Let's make an implementation that does something comparable:
```python
import copperhead as cppmandelbrot_cpp = r'''
#include
#include
#includeinline int mandelbrot(const std::complex &c)
{
const int max_iter {100};
int i {0};
std::complex z {0.0, 0.0};
while (std::abs(z) < 2.0 && i < max_iter)
{
z = z * z + c;
++i;
}
return max_iter - i;
}void compute(std::string filename, double x, double y, double h)
{
const auto n {std::lround(2.5 / h)};
std::ofstream f(filename);
for (long yidx {0}; yidx < n; ++yidx)
{
for (long xidx {0}; xidx < n; ++xidx)
{
f << mandelbrot(std::complex(x, y)) << " ";
x += h;
}
f << "\n";
y -= h;
x -= 2.5;
}
}'''compute = cpp.generate('compute', 'void(std::string, double, double, double)', mandelbrot_cpp)
compute('fractal.dat', -2.0, 1.25, 0.0005)
```Before diving into evaluating this against our Python, do note that I decided to make this input driven. We can specify the return and parameter types to the function so that we may pass data in. here we specify the output filename and some parameters that dictate the region of the set we are concerned with and the granularity of our iteration.
Running this you will see a good bit of jargon dumped to stdout: this is the creation of the C++ extension (running again, the cache is accessed and you will not see it). On my system this runs in ~9 seconds. 1:40 to 0:09. The improvements here become even greater as the problem space scales. While timing is hardly a valuble benchmark, the savings here are too great and too obvious to ignore.
Note that the [example code](examples/fractal.py) in this repository uses ```h = 0.005``` to reduce the runtime during testing.
## License
See [LICENSE.md](LICENSE.md) for the specifics, but it is an MIT license.