ivin

Results 8 comments of ivin

I notice that this class has implemented `operator const T*` method, but I think we still need to explicit cast to `const char *` here(`return (const char *)raw_data`), otherwise, the...

Thanks for your help, ogrisel. I don't have any idea now, but let me add a little extra information: ```python Parallel(n_jobs=2)((delayed(func1)(queue) for _ in range(32))) Parallel(n_jobs=2, backend="multiprocessing")((delayed(func1)(queue) for _ in...