Skip to content

Commit

Permalink
Move rle.x to rle_enc.x
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Dudek <mdudek@antmicro.com>
  • Loading branch information
mtdudek committed Jun 16, 2023
1 parent aa675a3 commit eff08fa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions xls/modules/rle/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -39,50 +39,50 @@ xls_dslx_library(
)

xls_dslx_library(
name = "rle_dslx",
name = "rle_enc_dslx",
srcs = [
"rle.x"
"rle_enc.x",
],
deps = [
":rle_common_dslx"
],
)

xls_dslx_test(
name = "rle_dslx_test",
name = "rle_enc_dslx_test",
dslx_test_args = {
"compare": "none",
},
library = "rle_dslx",
library = "rle_enc_dslx",
)

xls_dslx_test(
name = "rle_dslx_ir_test",
name = "rle_enc_dslx_ir_test",
dslx_test_args = {
"compare": "interpreter",
},
library = "rle_dslx",
library = "rle_enc_dslx",
)

xls_dslx_test(
name = "rle_dslx_jit_test",
name = "rle_enc_dslx_jit_test",
dslx_test_args = {
"compare": "jit",
},
library = "rle_dslx",
library = "rle_enc_dslx",
)

xls_dslx_ir(
name = "rle_enc_ir",
dslx_top = "RLEEnc32",
library = "rle_dslx",
library = "rle_enc_dslx",
ir_file = "rle_enc.ir",
)

xls_ir_opt_ir(
name = "rle_enc_opt_ir",
src = "rle_enc.ir",
top = "__rle__RLEEnc32__RLEEnc_0__2_32_next",
top = "__rle_enc__RLEEnc32__RLEEnc_0__2_32_next",
)

xls_ir_verilog(
Expand Down
File renamed without changes.

0 comments on commit eff08fa

Please sign in to comment.