[go-nuts] Parallel implementation of saxpy not scaling well across cores. Symptomatic of an underlying problem or expected behavior?

2017-09-10 Thread chatrapathi . akula
I have asked the question on stack overflow here . -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsu

Re: [go-nuts] Is there a more efficient way to slice a multidimensional matrix using proxy?

2017-08-12 Thread chatrapathi . akula
Hi kortschak, thanks for replying. Please correct me if I'm not following this right. So on Line 290 of the Dense.Slice() method, the receiver is copied into the variable 't' by dereferencing the p

[go-nuts] Is there a more efficient way to slice a multidimensional matrix using proxy?

2017-08-12 Thread chatrapathi . akula
So I've written a small Tensor library for purposes of various computations inside a hardware product that my startup is working on. I've implemented in the library, the functionality to slice a matrix similar to matlab using a proxy. The implementation, I have works just fine and does exactly w