Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openzl
Submodule openzl updated 54 files
+35 −0 .github/ISSUE_TEMPLATE/bug_report.md
+20 −0 .github/ISSUE_TEMPLATE/feature_request.md
+27 −0 .github/PULL_REQUEST_TEMPLATE.md
+16 −0 .github/workflows/cmake-ci.yml
+1 −0 .gitignore
+14 −3 .vscode/settings.json
+5 −0 CHANGELOG
+3 −2 CONTRIBUTING.md
+12 −12 LICENSE
+8 −1 Makefile
+67 −34 README.md
+0 −12 WARRANTY
+61 −6 build/cmake/openzl-deps.cmake
+1 −1 build/make/multiconf.make
+4 −4 cli/commands/cmd_benchmark.cpp
+8 −8 cli/commands/cmd_compress.cpp
+5 −5 cli/commands/cmd_decompress.cpp
+2 −2 cli/utils/util.cpp
+0 −34 corpus_download.sh
+0 −36 corpus_upload.sh
+11 −11 doc/mkdocs/doc/getting-started/cli.md
+8 −8 doc/mkdocs/doc/getting-started/concepts.md
+1 −3 doc/mkdocs/doc/getting-started/examples/c/benchmarking.md
+9 −3 doc/mkdocs/doc/getting-started/examples/c/custom-formats.md
+1 −1 doc/mkdocs/doc/getting-started/examples/c/training-orchestration.md
+1 −0 doc/mkdocs/doc/getting-started/examples/py/parsing.md
+11 −7 doc/mkdocs/doc/getting-started/introduction.md
+46 −52 doc/mkdocs/doc/getting-started/quick-start.md
+2 −1 doc/mkdocs/doc/getting-started/using-openzl.md
+1 −1 doc/mkdocs/doc/index.md
+ examples/ppmf_unit/high/benchmark.zlc
+0 −356 examples/ppmf_unit/high/test.txt
+0 −20 examples/ppmf_unit/high/train.txt
+ examples/ppmf_unit/low/benchmark_low.zlc
+0 −152 examples/ppmf_unit/low/test.txt
+0 −20 examples/ppmf_unit/low/train.txt
+1 −1 include/openzl/codecs/zl_divide_by.h
+224 −5 include/openzl/codecs/zl_sddl.md
+2 −2 include/openzl/zl_version.h
+4 −2 py/ext/openzl/ext/graphs.cpp
+214 −54 src/openzl/compress/graphs/simple_data_description_language.c
+24 −2 src/openzl/compress/graphs/simple_data_description_language.h
+242 −12 tests/codecs/test_sddl.cpp
+66 −3 tools/sddl/compiler/Compiler.cpp
+73 −9 tools/sddl/compiler/Compiler.h
+250 −9 tools/sddl/compiler/Grammar.cpp
+6 −3 tools/sddl/compiler/Serializer.cpp
+12 −1 tools/sddl/compiler/Serializer.h
+108 −20 tools/sddl/compiler/Syntax.cpp
+23 −0 tools/sddl/compiler/Syntax.h
+64 −298 tools/sddl/compiler/Syntax.md
+22 −2 tools/sddl/compiler/main.cpp
+2 −1 tools/sddl/compiler/tests/CompilerTest.cpp
+1 −1 tools/visualization_app/src/components/StreamdumpGraph.tsx
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.