Valentin Churavy

Results 1411 comments of Valentin Churavy

> Oh, I know: I guess I was worried about DEPOT_PATH changing at runtime compared to the build? Not sure if there is a better way to protect against that?...

There is a build flag to turn off MKL usage: `MKLDNN_USE_MKL` But yes NNPACK would also be a good alternative.

OpenCL 2.2 now support a C++ as a kernel language, that should make it a lot easier to implement support. https://github.com/KhronosGroup/SPIR/tree/spirv-1.1#step-6-creating-spir-v-binaries

Yes latency has been becoming larger, and I haven't figured out where it is coming from...

What you seeing is an unfortunate interaction between how distributed Julia is implemented and how struct definitions work. Note the: ``` Foo{Float64}(::Any) where T

I am currently low on bandwidth, if you have the time and inclination to look into this yourself, here is my hunch. It seems to me that the method we...

> Can I try for this? Sure! Any improvement is helpful.

I think we need to carefully go through Distributed.jl and look at whether we can start using `@spawn` instead of `@async`, and then do the same for DistributedArrays.jl Won't be...

I don't think we should add a MPI dependency to DistributedArrays. It will make it much harder to untangle and not necessary from a technical point of view. From a...

> I just created [SlurmClusterManager.jl](https://github.com/kleinhenz/SlurmClusterManager.jl) if anyone is interested in giving it a try. >> Requires that SlurmManager be created inside a Slurm allocation created by sbatch/salloc. Specifically SLURM_JOBID and...