Skip to content

Commit

Permalink
Fix typo in poisson distribution (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleytsang-amd committed Aug 9, 2024
1 parent ac3df19 commit 03a98d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/rng/distribution/poisson.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class poisson_distribution_manager
m_initialized = other.m_initialized;
m_is_host_func_blocking = other.m_is_host_func_blocking;
m_stream = other.m_stream;
m_lambda = other.lambda;
m_lambda = other.m_lambda;
std::swap(m_probability, other.m_probability);
std::swap(m_alias, other.m_alias);
std::swap(m_cdf, other.m_cdf);
Expand Down

0 comments on commit 03a98d8

Please sign in to comment.