Nicholas Bauer

Results 99 issues of Nicholas Bauer

Unless there's a conflict, is there any reason not to pull the remote copy of the registry first if the local copy is not synced with it? Would be nice...

Resolves #40747 Before: ``` [1,2,3][[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,]] ERROR: BoundsError: attempt to...

From my small copying loops benchmarking in #45487, I noticed that copying small vectors of 1-5 elements with a for loop is slower on the nightly build than in 1.10:...

performance
regression
arrays

This PR implements a hash table for looking up method roots. Compression of methods with many roots should be sped up, removing a barrier to adding additional roots (such as...

For loops are 2-10x faster (depending on size, destination) for copying small arrays than `copyto!`, which the broadcasting machinery relies on. It would be amazing if the broadcasting syntax could...

performance
arrays
simd

First attempt to address #39713 Original: ``` const a, b, c, d = zeros(Int, 2, 2), [3 4], [2 ; 4], 5 using BenchmarkTools @btime [a c ; b d]...

Addresses #40354 Master: ``` 5x = 6 ERROR: syntax: "5" is not a valid function argument name ``` This PR: ``` 5x = 6 ERROR: syntax: invalid name "5x" ```...

error messages

If a notebook is left running for a really long time, the temporary folder storing its environment can get cleaned up by the system. This leaves the notebook in a...

bug
package manager

If you have a private repository that you normally access with SSH credentials ([email protected]:), but instead try to load with username/password (https://github.com/), the request by GitHub for those credentials (hidden...

enhancement