32 lines
901 B
Python
Executable File
32 lines
901 B
Python
Executable File
import cmsisdsp.version
|
|
|
|
from cmsisdsp_filtering import *
|
|
from cmsisdsp_matrix import *
|
|
from cmsisdsp_support import *
|
|
from cmsisdsp_statistics import *
|
|
from cmsisdsp_complexf import *
|
|
from cmsisdsp_basic import *
|
|
from cmsisdsp_controller import *
|
|
from cmsisdsp_transform import *
|
|
from cmsisdsp_interpolation import *
|
|
from cmsisdsp_quaternion import *
|
|
from cmsisdsp_fastmath import *
|
|
from cmsisdsp_distance import *
|
|
from cmsisdsp_bayes import *
|
|
from cmsisdsp_svm import *
|
|
|
|
|
|
__version__ = cmsisdsp.version.__version__
|
|
|
|
# CMSIS-DSP Version used to build the wrapper
|
|
cmsis_dsp_version="1.10.0"
|
|
|
|
|
|
# CMSIS-DSP Commit hash used to build the wrapper
|
|
commit_hash="d9cfca31b66fe837a603ed3520cb6a7947e86ca6"
|
|
|
|
# True if development version of CMSIS-DSP used
|
|
# (So several CMSIS-DSP versions may have same version number hence the commit hash)
|
|
developmentVersion=True
|
|
|
|
__all__ = ["datatype", "fixedpoint", "mfcc"] |