Skip to content

Commit

Permalink
[FIX] Remove auto from threads_num for CI comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrKrzem committed Aug 27, 2024
1 parent 15208fc commit e04ad80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/random_uniform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ void RandomUniform::prepareMersenneTwisterParams() {
if (m_out_el_num < MERSENNE_TWISTER_PARALLEL_EXECUTION_THRESHOLD) {
m_threads_num = 1;
} else {
auto m_threads_num = parallel_get_max_threads();
m_threads_num = parallel_get_max_threads();
if (m_threads_num > MERSENNE_TWISTER_MAXIMUM_THREADS_THRESHOLD) {
m_threads_num = MERSENNE_TWISTER_MAXIMUM_THREADS_THRESHOLD;
}
Expand Down

0 comments on commit e04ad80

Please sign in to comment.