Support

If you have a problem or need to report a bug please email : support@dsprobotics.com

There are 3 sections to this support area:

DOWNLOADS: access to product manuals, support files and drivers

HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects

USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here

NEW REGISTRATIONS - please contact us if you wish to register on the forum

Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright

Custom DSP Code 2 (comunity project)

For general discussion related FlowStone

Re: Custom DSP Code 2 (comunity project)

Postby Exo » Tue Apr 07, 2015 9:14 pm

Hey KG, thanks again for this great project.

I am planning a couple of function packs when time permits. I currently have a big project under way as well as a few smaller ones. Once the smaller ones are out of the way I will come back to this, I intend to use this DSP code in my future projects.

My ideas for function packs are..

1. Filter pack, this could contain all the well know filters posted over the ages.
2. External Mem pack, Read, Write, Copy, Section ect...
3. Oscillator pack, would include pure coded ones and support for wavetable oscillators.

So if anyone has made a start on anything like this let me know and I will help out rather than reinvent the wheel.
Flowstone Guru. Blog and download site for Flowstone.
Best VST Plugins. Initial Audio.
Exo
 
Posts: 426
Joined: Wed Aug 04, 2010 8:58 pm
Location: UK

Re: Custom DSP Code 2 (comunity project)

Postby KG_is_back » Thu Apr 09, 2015 10:52 pm

Hi Exo!

Today I've finished oversampling pack. It works good and I even managed to optimize some code in the original oversampling toolkit. Basically has two functions. "upsample" takes the value form a variable, upsamples it by given factor and fills an array with the values (also has quality parameter, to choose from 3 types of upsampling). You than use loop to iterate over the array and then use "downsample" function to downsample the array, returning the downsampled value.

Also I've started working on a filter pack. Already made State variable filter based on ZDF filter. I will make also HPF,LPF,BPF, shelving notch etc. later this week. Also I'm adding option to use hop and/or smart bypass on coefficient calculation. Also when frequency/Q/gain are constants, some stuff gets pre-calculated during compilation and passed as a constant (very convenient setAdvancedCodeGen method can do such things). It should squeeze maximum performance in all situations.
Long story short - leave it up to me! ;-)

I'd be very glad if someone could make the oscillator pack. I've already had a look at MartinVicanek's oscillators, and they should be fairly easy to port to DSPcode2.

Only problem I've run into is, that in stage0 code you can't use the input arguments of a function. Well, technically you can, but you have no insurance that they were evaluated.
If stage0 uses some of the function arguments, you'll have to squeeze it into stage2; code somehow. Either make it run only once and then bypassed using conditional jumps, or use bitwise operators and make it run always.

As for the external Mem pack, you're reading my mind. The "read from pointer" operator is already supported by DSPcode2 (I haven't added the codegens yet, so it's recognized by the lexer and parser, but not by the back end). "variable[index]" will use the value of the variable as address and reads from it. As expected it may cause crashes, since it's hard to predict if variable contains valid address. Having a pack of functions specifically designed to manipulate external mems and arrays is super-convenient though. Especially the stuff that needs loops, like "CopySection" or "fill".
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Custom DSP Code 2 (comunity project)

Postby Exo » Sat Apr 11, 2015 12:01 am

Thanks KG,

Good to know about the stage0 issue. Glad to here you are doing a filter pack, I had a feeling you or someone would be.

A Mem pack was one of the first things I thought about because reading from mem is only possible in ASM.
Having a built in way to read directly from the mem as an array is a very good idea. But yes a pack is still definitely needed for copySection ect . Also I want to do an oscillator that takes a mem for the wavetable.
Flowstone Guru. Blog and download site for Flowstone.
Best VST Plugins. Initial Audio.
Exo
 
Posts: 426
Joined: Wed Aug 04, 2010 8:58 pm
Location: UK

Re: Custom DSP Code 2 (comunity project)

Postby KG_is_back » Sat Apr 11, 2015 4:38 pm

Exo wrote:Good to know about the stage0 issue.


here's an example of such behaviour:

Code: Select all

float a;
float b;

stage(2){
a=1;
b=3;
myFunction(a*b);
}

At stage0; the expression "a*b" can't be correctly interpreted, because "a" and "b" are given values at stage(2) (which means at stage0 they are both zero in this example). There is no way to remove this complication.

Exo wrote:Having a built in way to read directly from the mem as an array is a very good idea.


actually this reminded me one "hack" I've found some time ago. Using Analyser prim it is possible to extract the address of mem-array (addresses of two arrays - one contains addresses of mems and the other contains their sizes as floats) and then read/write to/from mem-array. It was however super-unstable.

Perhaps Malc could add Mem to address prim and Mem-array to address prim that have stream outputs. That way, when address changes it is instantaneously passed to streams which makes reading/writing mems in ASM much more stable. At the moment We have to route the address trough green or ruby, which (I suspect) causes occasional crashes because they run on different threads and may be out-of-sync with streams.
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Custom DSP Code 2 (comunity project)

Postby Exo » Sat Apr 11, 2015 5:00 pm

KG_is_back wrote:
Perhaps Malc could add Mem to address prim and Mem-array to address prim that have stream outputs. That way, when address changes it is instantaneously passed to streams which makes reading/writing mems in ASM much more stable. At the moment We have to route the address trough green or ruby, which (I suspect) causes occasional crashes because they run on different threads and may be out-of-sync with streams.


Yes that could be a solution. You are right I think the address is obviously not passed to the stream in time. This is definitely a problem that needs solving I have also had crashes.
Flowstone Guru. Blog and download site for Flowstone.
Best VST Plugins. Initial Audio.
Exo
 
Posts: 426
Joined: Wed Aug 04, 2010 8:58 pm
Location: UK

Re: Custom DSP Code 2 (comunity project)

Postby KG_is_back » Sat Apr 11, 2015 6:39 pm

Alternative solution might be to re-create mem-array prim and mem-using prims using DLL. The DLL would have a frame output, that would be filled with current address. Any time the "alternative mem" inside DLL changes, the address is instantaneously made available in the next ASM buffer. Trog has made similar approach using Ruby frames. Perhaps we could revive the project.
Yet it would be more suitable if this feature was supported by FS prims and FS native mems, because DLLs or Ruby would basically replace that feature.
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Custom DSP Code 2 (comunity project)

Postby martinvicanek » Sat Apr 11, 2015 9:43 pm

Exo wrote:I want to do an oscillator that takes a mem for the wavetable.

KG_is_back wrote:[...] the address is instantaneously made available in the next ASM buffer. Trog has made similar approach using Ruby frames. Perhaps we could revive the project.

I have started a separate thread on this, please have a look.
User avatar
martinvicanek
 
Posts: 1328
Joined: Sat Jun 22, 2013 8:28 pm

Re: Custom DSP Code 2 (comunity project)

Postby Exo » Mon Apr 20, 2015 9:39 pm

The mem address crashing discussion has been split into it's own topic HERE.
Flowstone Guru. Blog and download site for Flowstone.
Best VST Plugins. Initial Audio.
Exo
 
Posts: 426
Joined: Wed Aug 04, 2010 8:58 pm
Location: UK

Re: Custom DSP Code 2 (comunity project)

Postby KG_is_back » Tue Apr 21, 2015 7:55 pm

OK guys, initial version is at FS guru here.

Some features are not added yet (namely the reading/writing via pointer and some function packs are not there/not fully finished). Hopefully you can give me some feedback, because there are hundreds of lines of code = possibly a bug here and there...
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Custom DSP Code 2 (comunity project)

Postby KG_is_back » Mon Oct 12, 2015 7:50 pm

Hello guys... working on version 3. Hopefully this one will not be full of bugs...
It seems I have the lexer and parser part figured out and even colorCoding works (it's only a display though - you can't edit the code directly from front panel). It should accept almost any C code.

I'm struggling heavily with the ASM code generator though. I've figured I can implement "if" and "while" statements in poly-compatible way, by putting ternary operator at each assignment. Still the register and temporary variable managing is hell...
Attachments
DSPC3.fsm
(6.22 KiB) Downloaded 952 times
KG_is_back
 
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

PreviousNext

Return to General

Who is online

Users browsing this forum: No registered users and 51 guests