Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SamKarkache committed Apr 17, 2024
2 parents 4adbdec + 34233c3 commit a4e75a0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Testing/cupyTesting.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit a4e75a0

Please sign in to comment.