Skip to content

Commit

Permalink
Regenerate options and tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Jan 5, 2024
1 parent 498a730 commit 65598c6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -467,5 +467,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.1.2
Build Date UTC : 2024-01-05 07:46:05.947897+00:00
Build Date UTC : 2024-01-05 07:58:12.320576+00:00
-->
10 changes: 6 additions & 4 deletions docs/manual/options/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@

<li class="nav-item" data-level="1"><a href="#faust-compiler-options" class="nav-link">Faust Compiler Options</a>
<ul class="nav flex-column">
<li class="nav-item" data-level="2"><a href="#faust-compiler-version-2693" class="nav-link">FAUST compiler version 2.69.3</a>
<li class="nav-item" data-level="2"><a href="#faust-compiler-version-2703" class="nav-link">FAUST compiler version 2.70.3</a>
<ul class="nav flex-column">
</ul>
</li>
Expand Down Expand Up @@ -358,7 +358,7 @@
<div class="col-md-9 main-container" role="main">

<h1 id="faust-compiler-options">Faust Compiler Options</h1>
<h2 id="faust-compiler-version-2693">FAUST compiler version 2.69.3</h2>
<h2 id="faust-compiler-version-2703">FAUST compiler version 2.70.3</h2>
<pre><code class="language-faust-options">usage : faust [options] file1 [file2 ...].
where options represent zero or more compiler options
and fileN represents a Faust source file (.dsp extension).
Expand Down Expand Up @@ -407,8 +407,10 @@ <h2 id="code-generation-options">Code generation options:</h2>
-cn &lt;name&gt; --class-name &lt;name&gt; specify the name of the dsp class to be used instead of mydsp.
-scn &lt;name&gt; --super-class-name &lt;name&gt; specify the name of the super class to be used instead of dsp.
-pn &lt;name&gt; --process-name &lt;name&gt; specify the name of the dsp entry-point instead of process.
-mcd &lt;n&gt; --max-copy-delay &lt;n&gt; threshold between copy and ring buffer implementation (default 16 samples).
-dlt &lt;n&gt; --delay-line-threshold &lt;n&gt; threshold between 'mask' and 'select' ring buffer implementation (default INT_MAX samples).
-mcd &lt;n&gt; --max-copy-delay &lt;n&gt; use a copy delay up to max delay &lt;n&gt; and a dense delay above (ocpp only) or a ring buffer (defaut 16 samples).
-mdd &lt;n&gt; --max-dense-delay &lt;n&gt; use a dense delay up to max delay &lt;n&gt; (if enough density) and a ring buffer delay above (ocpp only, default 1024).
-mdy &lt;n&gt; --min-density &lt;n&gt; minimal density (100*number of delays/max delay) to use a dense delays (ocpp only, default 33).
-dlt &lt;n&gt; --delay-line-threshold &lt;n&gt; use a mask-based ring buffer delays up to max delay &lt;n&gt; and a select based ring buffers above (default INT_MAX samples).
-mem --memory-manager allocate static in global state using a custom memory manager.
-ftz &lt;n&gt; --flush-to-zero &lt;n&gt; code added to recursive signals [0:no (default), 1:fabs based, 2:mask based (fastest)].
-rui --range-ui whether to generate code to constraint vslider/hslider/nentry values in [min..max] range.
Expand Down
1 change: 1 addition & 0 deletions docs/manual/tools/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,7 @@ <h2 id="faust2daisy">faust2daisy</h2>
Options:
-patch : to compile for 4 ins/outs Patch (knob[1,2,3,4])
-pod : to compile for 2 ins/outs Pod (knob[1,3])
-patchsm : to compile for the Pod.init eurorack module
-midi : activates MIDI control
-nvoices &lt;num> : produces a polyphonic DSP with &lt;num> voices, ready to be used with MIDI events
-sr &lt;num> : to specify sample rate
Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.
8 changes: 5 additions & 3 deletions mkdocs/docs/manual/options.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Faust Compiler Options
## FAUST compiler version 2.69.3
## FAUST compiler version 2.70.3
~~~faust-options
usage : faust [options] file1 [file2 ...].
where options represent zero or more compiler options
Expand Down Expand Up @@ -52,8 +52,10 @@ usage : faust [options] file1 [file2 ...].
-cn <name> --class-name <name> specify the name of the dsp class to be used instead of mydsp.
-scn <name> --super-class-name <name> specify the name of the super class to be used instead of dsp.
-pn <name> --process-name <name> specify the name of the dsp entry-point instead of process.
-mcd <n> --max-copy-delay <n> threshold between copy and ring buffer implementation (default 16 samples).
-dlt <n> --delay-line-threshold <n> threshold between 'mask' and 'select' ring buffer implementation (default INT_MAX samples).
-mcd <n> --max-copy-delay <n> use a copy delay up to max delay <n> and a dense delay above (ocpp only) or a ring buffer (defaut 16 samples).
-mdd <n> --max-dense-delay <n> use a dense delay up to max delay <n> (if enough density) and a ring buffer delay above (ocpp only, default 1024).
-mdy <n> --min-density <n> minimal density (100*number of delays/max delay) to use a dense delays (ocpp only, default 33).
-dlt <n> --delay-line-threshold <n> use a mask-based ring buffer delays up to max delay <n> and a select based ring buffers above (default INT_MAX samples).
-mem --memory-manager allocate static in global state using a custom memory manager.
-ftz <n> --flush-to-zero <n> code added to recursive signals [0:no (default), 1:fabs based, 2:mask based (fastest)].
-rui --range-ui whether to generate code to constraint vslider/hslider/nentry values in [min..max] range.
Expand Down

0 comments on commit 65598c6

Please sign in to comment.