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
1 change: 1 addition & 0 deletions larq_compute_engine/mlir/tests/lit_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def lce_lit_test(
srcs = [driver],
size = size,
data = data + [test_file],
shard_count = 2,
args = ["$(location %s)" % (test_file,)],
**kwargs
)
Expand Down
3 changes: 2 additions & 1 deletion larq_compute_engine/tests/qemu_test.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,11 @@ def lce_qemu_test_suite(
# Finally create a new sh_test target
native.sh_test(
name = sh_name,
size = "medium",
size = "large",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've made this "large" because otherwise the 'big' kernel tests which don't run on CI timeout.

srcs = [src],
args = [test_path],
data = [test, qemu_data],
shard_count = 2,
)

# And add that sh_test target to the list
Expand Down