We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I run a loop with multi threads using openmp, and then call gemmlowp, the performance of gemm will be affected. Any clue?
e.g.
#pragma omp parallel for for (int i = 0; i < 100; ++i) { } gemmlowp::GemmContext gemm_context; gemm_context.set_max_num_threads(4); using BitDepthParams = gemmlowp::L8R8WithLhsNonzeroBitDepthParams; while (iters--) { gemmlowp::GemmWithOutputPipeline<std::uint8_t, std::int32_t, BitDepthParams>( &gemm_context, lhs.const_map(), rhs.const_map(), &result.map(), -128, -128, output_pipeline); }
The text was updated successfully, but these errors were encountered:
So, we implement multi-thread using openmp.
Sorry, something went wrong.
No branches or pull requests
If I run a loop with multi threads using openmp, and then call gemmlowp, the performance of gemm will be affected. Any clue?
e.g.
The text was updated successfully, but these errors were encountered: