Initial commit
Co-authored-by: Zhuohan Li <zhuohan@openai.com> Co-authored-by: Maratyszcza <marat@openai.com> Co-authored-by: Volodymyr Kyrylov <vol@wilab.org.ua>
This commit is contained in:
6
gpt_oss/metal/__init__.py
Normal file
6
gpt_oss/metal/__init__.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from importlib import import_module as _im
|
||||
|
||||
# Load the compiled extension (gpt_oss.metal._metal)
|
||||
_ext = _im(f"{__name__}._metal")
|
||||
globals().update({k: v for k, v in _ext.__dict__.items() if not k.startswith("_")})
|
||||
del _im, _ext
|
||||
Reference in New Issue
Block a user