Calen Pennington
Calen Pennington
Have you seen https://github.com/tmcdonell/accelerate-blas? It could be a good place to start augmenting with backprop variables.
Ah, ok. I'm about this close (*holds fingers close together*) to trying to make an accelerate backend/branch/fork (but I'm not sure how much work that would take) to get fusion/gpu/simd...
So, I've started poking at an `accelerate` backend. I think I'm going to have to get a fair way into it before I figure out what the speed change is,...
Neat. I'm happy to put what I have so far up on a branch... It's a bit fragmented so far, but as my first stab, I'm trying to replicate im2col...
Oops. I just noticed some of my false starts made it into the PR, I'll take those out. My overall plan was to make a new typeclass to capture that...
Currently, this is building on #36, and needs to be rebased/squashed. But, it now has a typeclass for `Network` backed by `Accelerate`, and an instance of that typeclass for `FullyConnected`.
So, I'm a bit stuck, at the moment. I'm trying to implement the `Network` instance of `Accelerable`, the typeclass I created to represent things that can be turned into an...
I made some good progress in the last day or so. I'll push the results soon.
I pushed up my latest changes. I thought that it was pretty close, but I think there are actually just type errors obscuring more type errors. I think the next...
In this latest set of changes, I'm running into trouble because I can't figure out how to make sure that `genShape` gives me a shape that the compiler knows fits...