From e40273dcaa72f422c253b48abc8e1d9573842b33 Mon Sep 17 00:00:00 2001 From: Lehman Garrison Date: Mon, 6 Dec 2021 14:26:12 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 79017f6..e0cf388 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ numpy_rng = np.random.Generator(p) %timeit parallel_rng.standard_normal(size=10**8, dtype=np.float32, nthread=128) # 36.6 ms ``` -Note that the `parallel_rng` is slower when using a single thread, because the parallel implementation requires a slower algorithm in some cases (this is especially noticeable for float64 and normals) +Note that the `parallel_rng` is slower than Numpy when using a single thread, because the parallel implementation requires a slower algorithm in some cases (this is especially noticeable for float64 and normals) ## Status The code works and is [reasonably well tested](./test_parallel_numpy_rng.py) so is probably ready for use. I haven't decided on a distribution method yet; maybe it will just live here, or maybe it's worth spinning out into its own PyPI repo.