Skip to content

Commit

Permalink
Format all
Browse files Browse the repository at this point in the history
  • Loading branch information
anakinxc committed Aug 21, 2024
1 parent 3117206 commit 6eec739
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libspu/mpc/cheetah/ot/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ spu_cc_test(
srcs = ["ot_util_test.cc"],
deps = [
":ot_util",
"//libspu/mpc/utils:ring_ops",
"//libspu/mpc/common:communicator",
"//libspu/mpc/utils:ring_ops",
"//libspu/mpc/utils:simulate",
],
)
4 changes: 2 additions & 2 deletions libspu/mpc/cheetah/ot/ot_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ NdArrayRef OpenShare(const NdArrayRef &shr, ReduceOp op, size_t nbits,
#include "sse2neon.h"
#endif

#define INP(x, y) inp[(x)*ncols / 8 + (y) / 8]
#define OUT(x, y) out[(y)*nrows / 8 + (x) / 8]
#define INP(x, y) inp[(x) * ncols / 8 + (y) / 8]
#define OUT(x, y) out[(y) * nrows / 8 + (x) / 8]

#ifdef __x86_64__
__attribute__((target("sse2")))
Expand Down

0 comments on commit 6eec739

Please sign in to comment.