Skip to content

Commit

Permalink
fixing x86 without vector intrinsics
Browse files Browse the repository at this point in the history
  • Loading branch information
brightening-eyes committed Sep 6, 2023
1 parent befd7c1 commit a7f5eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/x86/unaryop_x86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ int UnaryOp_x86::forward_inplace(Mat& bottom_top_blob, const Option& opt) const
return unary_op_inplace<unary_op_trunc>(bottom_top_blob, opt);

if (op_type == Operation_ERF)
return unary_op_inplace<unary_op_erf>(bottom_top_blob, opt);
return UnaryOp::forward_inplace(bottom_top_blob, opt);;

return 0;
}
Expand Down

0 comments on commit a7f5eb1

Please sign in to comment.