-
-
Save seongyooncho/b47a258deccae7c3aa871cf07232bc2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import numpy as np | |
a = np.zeros((1080 * 4, 1920, 3)) | |
last_time = time.time() * 1000 | |
for i in range(1000) : | |
np.save('{}.npy'.format(i), a) | |
now = time.time() * 1000 | |
print(i, now - last_time) | |
last_time = now | |
~ | |
~ | |
~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment