Cody Tapscott

Results 114 issues of Cody Tapscott

### Zig Version 0.10.0-dev.4430+f39f0fcac ### Steps to Reproduce ```zig const std = @import("std"); const expect = std.testing.expect; test { var i: i8 = -3; try expect(i >> 2 == @as(i8,...

bug
stage2
stage1

### Zig Version 0.10.0-dev.1246+e67c756b91 ### Steps to Reproduce and Observed Behavior ```zig const std = @import("std"); const expect = std.testing.expect; fn clobberStack() void { var array: [20]u32 = undefined; _...

bug

This ensures that the Zig version will be re-computed when jumping through the source tree. This can be important if bisecting across, e.g. AstGen, changes that must not use the...

### Zig Version 0.10.0-dev.4622+f28e4e03e ### Steps to Reproduce and Observed Behavior ```zig const std = @import("std"); const Hasher = std.crypto.hash.sha2.Sha256; const testfile = @embedFile("testfile"); test { comptime { @setEvalBranchQuota(100_000_000); var...

bug
stage2
stage1

### Zig Version 0.11.0-dev.106+7edc730d6 ### Steps to Reproduce and Observed Behavior ```zig const std = @import("std"); const T = extern struct { a: u128, b: f64, }; test { var...

bug
stage2

### Zig Version 0.11.0-dev.106+e53a542e0 ### Steps to Reproduce and Observed Behavior `clang -xc -isystem test -E /dev/null -v` shows `-isystem` at the top of the system search list: ```console #include...

bug
stage2

Series of emscripten-specific fixes: - Increase `STACK_SIZE` to 128 kB from 64 kB (was causing crashes, especially on startup) - Re-scale horizontal scroll values so that scroll speed (approximately) matches...

It was observed in https://github.com/JuliaLang/julia/issues/52765 that we generate a lot of `statx` and `readlink` syscalls when scanning the filesystem. Especially on WSL systems this kind of access pattern can be...

REPL

**Describe the bug 🐞** If `saveat` is provided to `solve()` when using IDA, the resulting derivative values appear to have strong discontinuities. **Minimal Reproducible Example 👇** ```julia julia> using OrdinaryDiffEq,...

bug

```julia using LinearAlgebra, OrdinaryDiffEq, SciMLSensitivity function circuit(du, u, p, t) L, C = p du[1] = (-u[1] - u[2] + sin(t)) / C du[2] = (u[1] - u[2])/L end u0...

bug