Martin Chang

Results 102 comments of Martin Chang

Stupid me: `et::Tensor::dimention()` should be spelled with s as dimension. Not with a t. A fix comming

Sol 3: 1. Make a copy of tensor on GPU1 (clCreateBuffer && clEnqueueCopyBuffer) 2. Migrate the buffer (clEnqueueMigrateMemObject) from GPU1 to GPU2 But it is still not optimal that we...

Apparently Nvidia does have some OpenCL 2.0 support. https://streamhpc.com/blog/2017-02-22/nvidia-enables-opencl-2-0-beta-support/ Seems I can build OpenCL 2.0 code before grabbing myself a Navi card.

Update: This feature will require C++17's `std::filesystem` library. Should be fine since we heavily depend on C++17 anyway.

Thanks for reporting. I'll look into this.

@pepedocs Hi, I have made Etaler buildable on OS X again Please install tbb, cmake, gcc, cereal, catch2 from homebrew Then by using the commands ``` git clone https://github.com/etaler/Etaler --recursive...

I'm replying on the move. Pardon the quick explanation. Seems your compiler is working in C++98/03 mode. May you provide your compiler version? Also the error message looks like one...

We might want to implement a thread pool w/ std::thread and pin threads to numa nodes using boost::numa. Seems to be the most portable solution.

This is possible if could get #59 working, which will give us the ability to do backprop. But I'm still working on a general method (to do backprop, feedback alignment...

I don't know about supervised learning. But there's a PoC RL that sorta works. Need more time for improvements though. https://discourse.numenta.org/t/working-reinforcement-learning-in-htm-through-unsupervised-behavioral-learning/8486