Jacob Young

Results 57 comments of Jacob Young

I also ran into this issue, which happens when you try to use `distortion_model: none` (in my case I'm trying to run it on already undistorted images), so for anyone...

> I'm going to try limiting tests that I think might have to do with the failure to linux-x86_64 for now. Vectors are a likely culprit: #13782

> and have packed struct(u8) and packed union(u8) Actually, thinking about it some more, this should definitely be a requirement for many different reasons. The most obvious is that an...

I have previously noticed that the Zir files stored in the cache are non-deterministic, and this looks like a potential cause of that issue, but I didn't bother looking any...

I've been considering almost this exact proposal, and seeing it written down I'm not seeing any issues with it. The version number is certainly a nice addition for releases, although...

Note that the test failure depends on the value of uninitialized bits on the stack, so the target-specificity is a red herring.

> They all report "cached" This should be fixed by #15641 The previously described behavior was possible because: 1. Process A on line 398 tries to open a manifest file...

> Do we have a tracking issue for this? #14978 **Edit:** @motiejus to be clear, this unrelated issue is not affected by a cache clear, and can be resolved by...

Fixed by: ```diff --- a/src/value.zig +++ b/src/value.zig @@ -2553,7 +2553,7 @@ pub const Value = extern union { }, .Struct => { switch (val.tag()) { - .empty_struct_value => {}, +...