Skip to content
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