nacho.d.g
nacho.d.g
Somehow related to this, I was working with matrix operations and unfortunately the linear algebra ops use the double precision matrix while the BLAS ops use the float matrix. I...
I was checking for issues like this, having a similar problem with the generated Reader and Builder types not being `Send` cannot be sent due to the raw pointers. Is...
This problem for example prevents working with `capnp_futures` seamlessly, as you run into a problem when trying to write insdie a spawn task, e.g.: ``` let mut message = capnp::message::Builder::new_default();...
There are some workarounds around that, like the `async-trait` crate, still pretty cumbersome though as you can't work with anonymous futures for example.
New `async` branch pushed to the repository from my fork.
Changes done so far in: * `dbd87cb` * `1b61aeb` Must improve shuffle_rdd / co_grouped_rdd shuffle fetch calls to avoid using a concurrent hashmap for the performance hit.
With the last pushes (`997bf62`) now both the executor and the schedulers (in both modes) are async! Probably a bit of fine tuning about where tasks are spawned will be...
Next steeps are - [x] Fix some of the grievances with configuration (#54): this is important for fast iteration and testing of distributed mode (with the docker setup), right now...
Very much all that can be async right now is, except the `compute` parts of the Rdd's! All changes are in master. All the network stack is asynchonous and well...
Intersection completed in #66