Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proof of concept for a powerful bh107 module #622

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,6 @@ GSYMS

# VS Code
.vscode/

# Python Eggs
*.egg-info/
3 changes: 2 additions & 1 deletion bridge/bh107/bh107/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# -*- coding: utf-8 -*-
import sys

from bohrium_api._bh_api import flush
from .ufuncs import ufunc_dict
from .array_create import *
from .bharray import BhArray, BhBase
from .bharray_functions import *
from . import random, user_kernel

# Expose ufuncs via their names.
Expand All @@ -15,4 +17,3 @@
for _name in globals():
if not _name.startswith("_") and _name not in ['sys', 'ufunc_dict']:
__all__.append(_name)

Loading