Skip to content

Commit

Permalink
apply code-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lrw04 authored and github-actions[bot] committed Sep 5, 2023
1 parent 7557f2d commit a273057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/linearint8.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int LinearInt8::forward(const Mat& bottom_blob, Mat& top_blob, const Option& opt
const float* m = bottom_blob.row(j);
float* out = top_blob.row(j);

#pragma omp parallel for num_threads(opt.num_threads)
#pragma omp parallel for num_threads(opt.num_threads)
for (int p = 0; p < out_dim; p++)
{
int base = w * p;
Expand Down

0 comments on commit a273057

Please sign in to comment.