You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following is the result of performance measurement on Secondary machine (titanv). When the size of array to generate random number is changed, it takes long time.
time = 0.12419 msec
time = 0.00214 msec
time = 0.00089 msec
time = 0.00152 msec
time = 0.00023 msec
The text was updated successfully, but these errors were encountered:
I found a problem on random number generation. It affects performance.
https://github.com/fixstars/clpy/blob/clpy/clpy/random/generator.py#L175
or self.seed_array.size != numpy.prod(size)
means when we change the size of randomly generated array, initialization process will run everytime.The following is code for measure performance.
The following is the result of performance measurement on Secondary machine (titanv). When the size of array to generate random number is changed, it takes long time.
The text was updated successfully, but these errors were encountered: