bohrium
bohrium copied to clipboard
Automatic parallelization of Python/NumPy, C, and C++ codes on Linux and MacOSX
Hi, I am working on adding support to deploy bohrium Linux AArch64 wheels on PyPI. As a primary step, I am trying to build bohrium/manylinux:latest image using [manylinux.dockerfile](https://github.com/bh107/bohrium/blob/master/package/docker/manylinux.dockerfile). This docker...
Hi. trying to install and use bohrium in python 3.9. using a Mac (10.14.6). getting this error message: No module named 'bohrium_api._bh_api'
I just tried to package bohrium 0.11.0, however, I run into the issue that when I run `make DESTDIR=$pkgdir install`, bohrium attempts to install to `/usr/lib/python3.8...` (which was set via...
Hi, I'm getting an invalid pointer error after taking a (working) script utilising numpy and running it with `-m bohrium`. Full error ``` *** Error in `python -m bohrium classifyMRELBP.py...
The idea is to implement a Python interface with a minimal overhead. ### Preliminary performance Running [this small benchmark](https://github.com/madsbk/bohrium/blob/bohr/bridge/bohr/small_bench.py) produces on my laptop: ``` Numpy: 0.06131768226623535 Bohr: 0.4523584842681885 Bohrium: 8.404689311981201...
Is there a way to force Bohrium to copy an array to GPU? I want to benchmark Bohrium against some other libraries, so I do something like this: ```python def...
When running with Bohrium or bh107, a crazy amount of time is being spent in "unaccounted for". The following code runs in 0.27 seconds in pure Numpy, but takes 25...
Binary operations with scalars are implemented only when the scalar is on the right. Negation isn't working either. Example: ```python import numpy as np import bh107 as bh xs =...
Both bh107 and bohrium explode when applying libmath functions (sin, cos, tanh, exp, etc.) to float64 data in OpenCL mode. ```python In [1]: import bohrium as bh In [2]: A...
OK, so the dtype is not defined in bh107: ```python In [1]: import bh107 as bh In [2]: a = bh.array([1,2,3,4],dtype=bh.float64) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in ---->...