nabusch / Elektro-Pipe

A collection of code for a processing pipeline for elektrenkephalography data.
3 stars 2 forks source link

Vectorization & Parallelization #4

Closed wanjam closed 7 years ago

wanjam commented 8 years ago

To speed things up, we could check the code for possibilities to vectorize or parallelize processes.

wanjam commented 8 years ago

func_importBehavior loops over all events to assign trial-wise information from the log-file to the eeg struct. In case you have more than one event per epoch, doesn't this multiply computation time?

edit: the loop makes sense, as it fills up the event structure. Nevertheless, vectorization would be a good idea.

wanjam commented 7 years ago

The last couple of commits included several improvements concerning this...