diff --git a/Testing/cupyTesting.py b/Testing/cupyTesting.py new file mode 100644 index 0000000..f727ba5 --- /dev/null +++ b/Testing/cupyTesting.py @@ -0,0 +1,9 @@ +import cupy as np +import numpy as slow +import time + +randomValues = np.random.random_sample((1000,1000)) +start = time.time() +mean = np.mean(randomValues) +end = time.time() +print(start - end) \ No newline at end of file