CMSIS-DSP: MVE versions of vlog q15 and q31 and PythonWrapper fix
PythonWrapper was no more building on windows due to a too long
link command line.
A temporary fix was made. But on long term the wrapper must be refactored
into submodules to allow to more easily add new functions.
diff --git a/CMSIS/DSP/PythonWrapper/testdsp3.py b/CMSIS/DSP/PythonWrapper/testdsp3.py
index a0313fa..01a9813 100755
--- a/CMSIS/DSP/PythonWrapper/testdsp3.py
+++ b/CMSIS/DSP/PythonWrapper/testdsp3.py
@@ -6,9 +6,11 @@
x = np.array([0.9,0.5,2**-16])
r=dsp.arm_vlog_q15(f.toQ15(x))
-
print(f.Q15toF32(r)*16.0)
+r=dsp.arm_vlog_q31(f.toQ31(x))
+print(f.Q31toF32(r)*32.0)
+
print(np.log(x))
print("")