Fixes #30, Add CMake steps to install python bindings (#31)

This commit is contained in:
Dantali0n
2025-09-17 20:03:28 +02:00
committed by GitHub
parent 8fe8314905
commit bfe752433f
3 changed files with 33 additions and 2 deletions

16
python/__init__.py Normal file
View File

@@ -0,0 +1,16 @@
from .trigdx import Reference, Lookup16K, Lookup32K, LookupAVX16K, LookupAVX32K
try:
from .trigdx import MKL
except ImportError:
pass
try:
from .trigdx import GPU
except ImportError:
pass
try:
from .trigdx import LookupXSIMD16K, LookupXSIMD32K
except ImportError:
pass