Computational Linear Algebra
fast.ai
Computational Linear Algebra
1–10 of 59 posts
Re: Computational Linear Algebra
#2Re: Computational Linear Algebra
#3Looks like a good course. I think it would benefit if they added some module on implementing some basic Linear system of equations solvers, like gradient or steepest descent. Or even GMRES/MINRES or so.. The amout of knowledge that i gained from trying to implement these was remarkable.
Re: Computational Linear Algebra
#4Looks like a good course. I think it would benefit if they added some module on implementing some basic Linear system of equations solvers, like gradient or steepest descent. Or even GMRES/MINRES or so.. The amout of knowledge that i gained from trying to implement these was remarkable.
Gradient descent is covered. We even show a pytorch implementation :)
I will definitely give this course a try and spread the word. Thanks
Re: Computational Linear Algebra
#5Re: Computational Linear Algebra
#6Re: Computational Linear Algebra
#7I need to nitpick here... Big O notation is a way to describe growth rates of functions. You can count data movements (or anything else) with Big O.
Re: Computational Linear Algebra
#8> Locality: traditional runtime computations focus on Big O, the number of operations computed. However, for modern computing, moving data around in memory can be very time-consuming I need to nitpick here... Big O notation is a way to describe growth rates of functions. You can count data movements (or anything else) with Big O.
So the correct way would be to translate memory access to time, but that means modelling the memory hierarchy, modelling caches in general, and finally perhaps modelling the specifically used caching strategies.