etaler / Etaler

A flexable HTM (Hierarchical Temporal Memory) framework with full GPU support.
BSD 3-Clause "New" or "Revised" License
89 stars 14 forks source link

Sum along the 0th dimension gives the wrong shape #116

Closed marty1885 closed 4 years ago

marty1885 commented 4 years ago

Something about sum is wrong

a = ones({1, 2, 3});
sum(a, -3).shape()
// (3, 2)

But we are expecting (2, 3)