We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbc5bd2 + 12c8c04 commit 6c92032Copy full SHA for 6c92032
docs/source/installation.rst
@@ -264,7 +264,7 @@ and run the following code in Python:
264
B = np.random.random((size, size))
265
print("Time with %s threads: %f s" \
266
%(os.environ.get("OMP_NUM_THREADS"),
267
- timeit(lambda: np.dot(A, B), number=4)))
+ timeit(lambda: np.matmul(A, B), number=4)))
268
269
Subsequently set the environment variables to ``2`` or any higher number of threads available
270
in your hardware (multi-threaded), and run the same code.
0 commit comments