Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repo sync #459

Merged
merged 1 commit into from
Jan 5, 2024
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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
- [Feature] Add Linux aarch64 support
- [Feature] Add equal support for SEMI2K and ABY3
- [Improvement] Optimize sort memory usage
- [Improvement] Improve compatibility with latest Jax
- [Bugfix] Fix compilation cache collision under certian cases
- [Deprecated] macOS 11.x is no longer supported

## 20231108
Expand Down
10 changes: 4 additions & 6 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")

SECRETFLOW_GIT = "https://github.com/secretflow"
YACL_COMMIT_ID = "5feaa30e6a2ab3be5a01a7a4ee3c1613d11386d9"
YACL_SHA256 = "7ff9f93b0de554fa454a4c995dc0533a7b998173e6f0468be5b40a6092555a4e"

YACL_COMMIT_ID = "716e72902ef5d1badd9b15159d7ff5070c8a95c4"
YACL_SHA256 = "4011f4ef9e573b575b50e979b7d9d23152c765e204fe494c5fdfc09eebfc3b21"

LIBPSI_COMMIT_ID = "d5caedc399503275820a881f10d48e1e11a10357"
LIBPSI_SHA256 = "f7968386cc74d74d0848fd293c4ab9dc978da164ee22ba1c5b081f78aa8b0b1b"
LIBPSI_COMMIT_ID = "65263edfa3255ffe17af6b30904b395366b5b661"
LIBPSI_SHA256 = "8d1e42eaa435e6715c1b9dda38b1dec2245d499afe4f79c0da24602bf72cb72b"

def spu_deps():
_rules_cuda()
Expand Down
2 changes: 1 addition & 1 deletion libspu/cuda_support/utils_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ TEST(Memory, TestStridedCopy2D2) {
}
}

TEST(Memory, TestStidedCopyFrom) {
TEST(Memory, TestStridedCopyFrom) {
auto gpu_ptr = allocate(10 * sizeof(int));

std::array<int, 10> base;
Expand Down
Loading