Understanding MATLAB file access

2 vues (au cours des 30 derniers jours)
Alessandro Masullo
Alessandro Masullo le 2 Mar 2016
Hello,
I'm working on a script where I have to read hundreds of images and do some calculations on them. I'm using a simple for loop with imread and I noticed something quite strange. The first time that I run the script, the imread function takes a time longer than the image analysis itself, but if I clear the memory and I run it again, the imread function is incredibly fast!
How is it possible that the second time is so much faster? I clear the memory before running the script and the images must be loaded again from the hard disk, so the bottleneck should be the disk read speed in both the cases. Is there any "hidden" memory that matlab uses to store files that I have already loaded? Or is it a matter of windows prefetch stuff?
It would be useful to know what is happening to speed up the code in advance.
Thank you.
  1 commentaire
John D'Errico
John D'Errico le 2 Mar 2016
Probably a question of Windows caching the file.

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 2 Mar 2016
Modifié(e) : Jan le 2 Mar 2016
Hard disks store last accessed data in a fast cache, which has a size of about 64 or 128 MB. So reading the file a 2nd time is usually much faster.
The operating system stores data temporarily in the RAM also, which depends on the available RAM. Under Windows 7 the size can be influenced in the registry:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\
Session Manager\Memory Management -> "LargeSystemCache"
You can disable the caching of the OS in the device manager also in the settings for the hard disk. But even then the caching of the hard disk is working.
  1 commentaire
Alessandro Masullo
Alessandro Masullo le 2 Mar 2016
Thank you, this explains everything!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by