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

binary4d, unary4d #3443

Merged
merged 21 commits into from
Dec 28, 2021
Next Next commit
apply code-format changes
  • Loading branch information
nihui authored and actions-user committed Dec 23, 2021
commit 0cb4e5272bc8ba862e53991609fd8e30c980de6c
2 changes: 1 addition & 1 deletion tests/test_binaryop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static int test_binaryop(const ncnn::Mat& _a, const ncnn::Mat& _b)
ab[0] = a;
ab[1] = b;

fprintf(stderr, "test_binaryop a.dims=%d a=(%d %d %d %d) b.dims=%d b=(%d %d %d %d) op_type=%d\n", a.dims, a.w, a.h, a.d, a.c, b.dims, b.w, b.h, b.d, b.c, op_type);
fprintf(stderr, "test_binaryop a.dims=%d a=(%d %d %d %d) b.dims=%d b=(%d %d %d %d) op_type=%d\n", a.dims, a.w, a.h, a.d, a.c, b.dims, b.w, b.h, b.d, b.c, op_type);
int ret = test_layer<ncnn::BinaryOp>("BinaryOp", pd, weights, ab);
if (ret != 0)
{
Expand Down