Adam Walker

Results 24 comments of Adam Walker

Its difficult to know for sure without the test log. I use the test suite to test signal processing code written in C that uses SIMD instructions including AVX2. My...

I have implemented the checks. Did this resolve the problem?

That assembly code is 64 bit only. I will either figure out how to tell cabal that it only builds for 64 bit machines or implement a 32 bit version.

Sorry about the delay. I hope to find time to fix this by the end of this weekend.

I gave up on this. There doesn't seem to be a way to specify which architectures it builds on to cabal, and, I was unable to get Virtualbox to even...

I applied your suggested fix and uploaded to Hackage. Leaving this open to remind me to fix it properly.

Yep, that works around this specific issue, thanks. But, it exposes others. For example, the `fold` function compiles to code where elements of an array depend on other elements in...

Oh that's cool. That will almost certainly solve my problems.

Yep, I thought about using SaturatingNum, but the problem with doing it on a case by case basis is that I would really like to leave the implementation of the...

Yep, I can use bitCoerce and toWrapping/fromWrapping. That would work but I feel there is too much wrapping and unwrapping going on. I want to use my mac functions directly...