Skip to content

Commit

Permalink
modules/zstd: Add SequenceExecutor Proc
Browse files Browse the repository at this point in the history
Add Proc responsible for handling ZSTD Sequence Execution step,
which is described in:
https://datatracker.ietf.org/doc/html/rfc8878#name-sequence-execution

Internal-tag: [#54705]
Signed-off-by: Robert Winkler <[email protected]>
  • Loading branch information
rw1nkler committed Feb 14, 2024
1 parent 0fc2f48 commit bd07cc1
Show file tree
Hide file tree
Showing 2 changed files with 1,637 additions and 0 deletions.
20 changes: 20 additions & 0 deletions xls/modules/zstd/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -598,3 +598,23 @@ xls_dslx_test(
name = "ram_printer_dslx_test",
library = ":ram_printer_dslx",
)

xls_dslx_library(
name = "sequence_executor_dslx",
srcs = [
"sequence_executor.x",
],
deps = [
":common_dslx",
":ram_printer_dslx",
"//xls/examples:ram_dslx",
],
)

xls_dslx_test(
name = "sequence_executor_dslx_test",
dslx_test_args = {
"compare": "none",
},
library = ":sequence_executor_dslx",
)
Loading

0 comments on commit bd07cc1

Please sign in to comment.