Skip to content

Commit

Permalink
build: fix tests (PROOF-620) (#20)
Browse files Browse the repository at this point in the history
fix tests
  • Loading branch information
rnburn committed Sep 22, 2023
1 parent 693896d commit 374209b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion bazel/sxt_build_system.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,14 @@ def sxt_cc_component(
] + deps + test_deps
cuda_library(
name = test_lib,
copts = sxt_copts(),
copts = sxt_copts() + copts,
deps = [
":" + name,
] + test_deps,
srcs = [
name + ".t.cc",
],
alwayslink = 1,
rdc = True,
)
native.cc_test(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ struct multiproduct_computation_descriptor {
xenk::block_size_t max_block_size;
memmg::managed_array<block_computation_descriptor> block_descriptors;

auto operator<=>(const multiproduct_computation_descriptor&) const noexcept = default;
bool operator==(const multiproduct_computation_descriptor&) const noexcept = default;
};
} // namespace sxt::mtxmpg

0 comments on commit 374209b

Please sign in to comment.