emiwar / caJulia

Fast CNMF-E implementation with Julia and CuArrays
0 stars 0 forks source link

Smart file loader #6

Closed emiwar closed 1 year ago

emiwar commented 2 years ago

Smart video loader that has three possible values for each video block: disk, memory or device. When doing OPs like matrix multiplications or mapreduce with commutative operators, then figure out which is the optimal order to process the blocks in. E.g., if some block is already loaded onto the device, always start with that. Then do memory blocks, then disk blocks.

emiwar commented 2 years ago

Done but needs more extensive testing.