Ellie Hermaszewska
Ellie Hermaszewska
Why couldn't the implementation be something as simple as `peekVector s p = fromList (Foreign.Marshal.Array.peekArray s p)`?
Oh yeah, I understand that's not possible :) It would be a handy utility to have, even if it did have to do a copy. Can this issue be reopened?
Although both run in linear time peeking into a list and moving that to a vector is likely to be considerably slower than something a little bit more complicated. Like...
This comes out hilariously/suspiciously simply with Effectful (everything's here https://gist.github.com/expipiplus1/cfd5c4fb4a5a40338ccf8642fb3d0f1e, but below are the choice bits) ```haskell type Rules f = forall a es. (f es a -> Eff es...
@domenkozar might have figured it out: ``` 14:48 jophish: yes, one side effect of the roundf is that same machine will be reused until speedfactor is reached 14:48 so it...
Would it be more appropriate to divide with max jobs? I've patched our local hydra to be a bit fairer in case anyone's interested :) https://github.com/expipiplus1/hydra/commit/73e835b2aeea563994df8c4853c361752105f109
This looks like it could be useful: http://search.cpan.org/~nuffin/HTML-FromANSI-2.03/lib/HTML/FromANSI.pm
An alternative would be to set the [MSVC_DEBUG_INFORMATION_FORMAT](https://cmake.org/cmake/help/latest/prop_tgt/MSVC_DEBUG_INFORMATION_FORMAT.html#prop_tgt:MSVC_DEBUG_INFORMATION_FORMAT) property on the target, this would still set it from miniz, but allow it to be more easily changed.
We now warn instead of segfaulting on link time constant sized arrays, however the reflection API is still incomplete, we can tackle this in a follow up PR