@Fortune just don't use it then.

Posts
-
RE: 8 Times more CPU consumption on Aida-X Neural Models
-
RE: 8 Times more CPU consumption on Aida-X Neural Models
I'd rather remove the entire RT Neural framework from HISE so it doesn't raise false expectations, but it's way down on my priority list to spend any time on that issue and your communication skills just pushed it way further down.
15 upvotes to this post and that shit is gonzo.
-
RE: jlinkwitzriley phase issue
@Steve-Mohican I'm not an expert in reading phase diagrams, but this looks alright to me, the phase is supposed to wrap around the frequency split points and it looks like a somewhat linear phase to me.
-
RE: HISE Meet Up
Sorry guys I need a few more minutes the tech is acting up.
-
RE: Block-Based Processing in Third Party Node
No.
Can you set the library to use float numbers as signal? Usually every library allows to define the floating point type used for its signal (eg. Faust is using
FAUST_FLOT
which you can define to eitherfloat
(reasonable) ordouble
("yeah, 64bit signal precision for the ultimate transparent sound").If you need to feed it double numbers then it will become very annoying because you can't just cast the pointers to double pointers because the original source are still float numbers and you would have to introduce a working buffer that uses double numbers, copy the float numbers over, process the working buffer with your library and reverse all those steps to copy it back to the signal buffer.