Skip to content

Commit

Permalink
w
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui committed Jan 23, 2025
1 parent 5302eda commit b950fac
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 1,306 deletions.
5 changes: 1 addition & 4 deletions src/layer/arm/dequantize_arm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,7 @@ int Dequantize_arm::forward(const Mat& bottom_blob, Mat& top_blob, const Option&
#if NCNN_ARM82
if (support_fp16_storage && opt.use_fp16_storage)
{
if (opt.use_fp16_arithmetic)
return forward_fp16sa(bottom_blob, top_blob, opt);
else
return forward_fp16s(bottom_blob, top_blob, opt);
return forward_fp16s(bottom_blob, top_blob, opt);
}
#endif

Expand Down
1 change: 0 additions & 1 deletion src/layer/arm/dequantize_arm.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class Dequantize_arm : public Dequantize
protected:
#if NCNN_ARM82
int forward_fp16s(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const;
int forward_fp16sa(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const;
#endif
#if NCNN_BF16
int forward_bf16s(const Mat& bottom_blob, Mat& top_blob, const Option& opt) const;
Expand Down
Loading

0 comments on commit b950fac

Please sign in to comment.