Given a 5-D python array with shape (24x4096x2016x24x8), and each element in the array is a 8-bit unsigned integer, calculate the approximate amount of RAM such array will take if you are using them in python.
24*4096*2016*24*8 = 38050725888 bits = 4,756340736 Gigabytes
Comments
Leave a comment