Dillon

Results 99 comments of Dillon

I could think of 4 FAQs so far (some are probably not likely to be frequently asked): https://github.com/dsharlet/array/blob/faq/test/faq.cpp If you have other questions you'd like to see, any ideas are...

The fix for this breaks some optimizations related to ein_reduce usage.

`is_subset_of` needs to possibly handle even shapes of different rank, but it boils down to solving a problem of the same form.

I just added an einsum version of all 3 kinds of matrix multiply: ``` reference time: 37.1274 ms reduce_cols time: 36.2295 ms einsum_cols time: 36.356 ms reduce_rows time: 2.61265 ms...

It seems that on the compiler travis uses, the results are *really* interesting: ``` reference time: 67.4285 ms reduce_cols time: 57.6136 ms einsum_cols time: 52.8567 ms reduce_rows time: 4.55528 ms...

We might be able to just overload `fill`?

Thanks for the good suggestion. I think this deserves e.g. a README section, but I'm not sure I have a strong enough understanding of `mdspan` and `mdarray` at this point...

This can be caused during interactive simulation by potentiometers being set to 0 or 1.

Right now there's nothing to take advantage of multiple CPUs. I thought a bit about doing this, but I couldn't think of a clean simple way to enable this. Even...

The simulations are processed in blocks, much like ASIO and other tools have a buffer size, so do these simulations. When you want to parallelize, you need at least one...