RaffaLinux
Results
2
comments of
RaffaLinux
After digging into the code a bit i found out that _soft_dtw, which is where most of the time is spent on is ran on single thread. I don't know...
Hello @rtavenar. i tried a bit using this piece of code ``` def cdist_soft_dtw(dataset1, dataset2=None, gamma=1.): ... ... Parallel(n_jobs=12)(delayed(soft_dtw_parallel)(self_similarity,equal_size_ds1,equal_size_ds2,dists,gamma,i, j,ts1, ts2)for i,ts1 in enumerate(dataset1) for j,ts2 in enumerate(dataset2)) return dists...