diff options
author | Marvin Borner | 2024-01-19 02:50:49 +0100 |
---|---|---|
committer | Marvin Borner | 2024-01-19 20:39:28 +0100 |
commit | af754df7380b664fea6295813ee7dc64642c8444 (patch) | |
tree | 2fea974fd6e2b5319d1eb33556e821d2a1312be7 /docs/wiki_src | |
parent | 3faeba8c3e31bbe254a4facec8704d419e1bbdb8 (diff) |
BLoC/BLoCade optimizer integration
In many cases, shared-by-abstraction BLC is more performant (and notably
smaller) than the current output where every term just gets substituted
(and potentially duplicated) directly.
BLoC in combination with BLoCade's shared BLC target optimizes this
automatically by trying to find the terms that would most benefit from
deduplication and abstracting them respectively.
Paging @tromp since we talked about this.
This commit also introduces better argument parsing using
optparse-applicative.
Diffstat (limited to 'docs/wiki_src')
-rw-r--r-- | docs/wiki_src/coding/compilation.md | 28 | ||||
-rw-r--r-- | docs/wiki_src/coding/data-structures.md | 3 |
2 files changed, 11 insertions, 20 deletions
diff --git a/docs/wiki_src/coding/compilation.md b/docs/wiki_src/coding/compilation.md index 330bc9f..3ddc360 100644 --- a/docs/wiki_src/coding/compilation.md +++ b/docs/wiki_src/coding/compilation.md @@ -19,27 +19,17 @@ There are two modes of compilation: ## Compilation overhead -Typical compilation to BLC results in much redundant code, since every -used function gets substituted and translated separately. In +By default, bruijn's compilation to BLC results in much redundant code, +since every used function gets substituted and translated separately. In `((+3) + (+4) + (+3))`{.bruijn}, for example, `add`{.bruijn} gets compiled to BLC two times, resulting in a redundant overhead of around 3500 bits. -This is because BLC was never intended for compilation of normal -programs, but mainly as an academic encoding model. This also means that -it's quite good for writing very expressive and minimal programs -(i.e. obfuscated code golfing, see [John Tromp's -IOCCC](https://ioccc.org/2012/tromp/hint.html)). +If you want smaller (and more efficient) files, install +[BLoC](https://github.com/marvinborner/BLoC) and +[BLoCade](https://github.com/marvinborner/BLoCade). The combination of +these tools results in the abstraction of shared terms and translation +to a specified target. -Most programs, however, won't be golfed and can result in rather large -compiled programs. While there's not really any practical need for -compilation aside from golfing, you could still use the -[BLoC](https://github.com/marvinborner/bloc) project to optimize -redundant terms. - -Typical workflow: - -``` bash -$ bruijn -B program.bruijn | bloc --from-blc -i - -o out.bloc -$ cat input | bruijn -E <(bloc --from-bloc -i out.bloc) -``` +With the bruijn CLI, BLoCade can be executed directly using the flag +`-t TARGET`, where `TARGET` is one of the supported targets. diff --git a/docs/wiki_src/coding/data-structures.md b/docs/wiki_src/coding/data-structures.md index e59fa99..470e05d 100644 --- a/docs/wiki_src/coding/data-structures.md +++ b/docs/wiki_src/coding/data-structures.md @@ -113,7 +113,8 @@ the list. Strings are just a list of binary encoded bytes. You may use [`std/List`](/std/List.bruijn.html) in combination with -[`std/Number/Binary`](/std/Binary.bruijn.html) to interact with them. +[`std/Number/Binary`](/std/Number/Binary.bruijn.html) to interact with +them. Example: |