https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
f29de2d Dict: enable faster hashing for homogeneous keys 02 October 2020, 18:17:09 UTC
791b194 Add jl_active_task_stack to gcext API (#36823) * Add jl_active_task_stack to gcext API This is meant as a successor for `jl_task_stack_buffer`, which this patch marks as deprecated in a comment. * Let jl_active_task_stack also provide total stack range This may be useful for debugging and other future applications, while costing us little here; jl_active_task_stack is not supposed to be used in hot paths either. 02 October 2020, 15:26:11 UTC
7344d19 Missing bounds error test (#37836) 02 October 2020, 14:43:11 UTC
d5a8367 Merge pull request #37846 from JuliaLang/sk/no-symlink-no-warn symlink: don't warn on Windows symlink failure (fix #37845) 02 October 2020, 08:27:05 UTC
75732a4 symlink: don't warn on Windows symlink failure (fix #37845) 02 October 2020, 00:20:56 UTC
17ab43e bump Pkg, should fix #37731 via https://github.com/JuliaLang/Pkg.jl/pull/2062 02 October 2020, 00:20:56 UTC
7330822 Fix clangsa on LLVM 10 (#37828) * [GCChecker] Fix assertion We were associating a symbol with a `void` location. This is illegal, but happened to let us keep track of arraylist entries. Stop that abuse by manually modeling indexing into arraylist and fix the GCChecker assertion. * Backport LLVM 10 clangsa patch from Yggdrasil 01 October 2020, 23:36:10 UTC
b40355c fix #37673, `make test-Test` (#37787) Need to add --depwarn=error flag to Makefile. 01 October 2020, 22:55:02 UTC
d57de75 InteractiveUtils: define default editors during package load (#37839) Previously if you defined a new editor before calling `edit` it prevented the default editors from being defined ever. This defines the default editors no matter what. 01 October 2020, 20:38:49 UTC
4422648 Add support for syntax highlighting for `code_llvm` and `code_native` (#36984) 01 October 2020, 19:47:46 UTC
98d1300 Add Mmap.madvise! (#37369) 01 October 2020, 19:25:03 UTC
2fe2b43 Fix invalidation with `pointer(::String, ::Integer)` (#37820) 01 October 2020, 16:59:45 UTC
e7872b3 Optimize integer to string conversions (#36470) * Optimize integer-->string conversions This avoids invalidations caused by invalidating `StringVector(::Integer)`. This also makes `bin()`, `dec`() and `hex()` slightly faster, but does not change the Printf. 01 October 2020, 15:45:51 UTC
a4bfb9c stop precompiling Distributed (#37816) 01 October 2020, 12:48:46 UTC
2f6508d slightly improve inferrability of TOML parser (#37813) 01 October 2020, 10:11:53 UTC
0d52973 Add some precompiles for Test (#37754) Work improving latency in packages often exploits the tests. It's mildly annoying when the inference time of methods in Test stands out as the major contributors, so let's get rid of that annoyance. 01 October 2020, 07:13:41 UTC
bd42c0a [Pkg]: Bump `Pkg` to fix `compilecache()` errors (#37823) 01 October 2020, 06:55:54 UTC
4a43540 bump stdlib/Tar version (fix Windows test failures) (#37827) 01 October 2020, 06:19:56 UTC
cdb838c Fix Clang 10 source build (#37824) 01 October 2020, 05:10:31 UTC
28330a2 Remove specialized PartialQuickSort{<:Integer} method (#36896) This specialized method is actually considerably slower than the one that also works for `PartialQuickSort{<:OrdinalRange}`. It had been removed before in 9e8fcd3 due to an inference issue, and reintroduced by c41d5a3 (#31632) once that issue got fixed, but apparently without benchmarks. It turns out that saving one comparison per iteration isn't worth it. The gain is especially large when looking for a value among the largest in the array, as the specialized method always sorted all values lower than the requested one. 30 September 2020, 14:46:06 UTC
06ba657 add missing backquotes for `__init__` docs (#37805) 30 September 2020, 14:45:08 UTC
81fbeac Fixed link to external dependencies (#37581) 30 September 2020, 14:43:14 UTC
395e47f Avoid try-catch in `tryparse` for `VersionNumber` (#37803) * Avoid try-catch in `tryparse` for `VersionNumber` 30 September 2020, 09:53:41 UTC
7af47af Fix some string-related invalidation risks (#37799) 30 September 2020, 07:20:31 UTC
8ccc4cc Show any compile time spent in time and timev macros (#37678) * show any compile time spent in at-time macro 30 September 2020, 06:12:44 UTC
8a9666a add stdlibs (for now): Tar, ArgTools (#37763) This requires activating the project of a stdlib when testing it. This is necessary because the Tar package has test dependencies that are not stdlibs (Tar_jll, SimpleBufferStream). 29 September 2020, 22:33:15 UTC
c1c5293 bump stdlib/Downloads version (#37788) 29 September 2020, 21:21:48 UTC
a025f00 Merge pull request #37810 from JuliaLang/jq/37665 Don't interpolate stdout in printf macro to avoid precompilation issues 29 September 2020, 21:14:11 UTC
34a8ee6 Don't interpolate stdout in printf macro to avoid precompilation issues Fixes #37665. The subtle issue here was the at-printf macro using the `stdout` variable at _macro-expansion-time_ and interpolating it into the final `Printf.format` expanded call. If `stdout` was rebound between expansion time and usage time, then we saw ugly libuv errors (segfaults). This would happen mainly when a `Printf.@printf` call was precompiled directly, so the macro expansion was precompiled and led to the messed up `stdout` usage at runtime. The fix is to just not interpolate `stdout` at macro-expansion time, but have the expanded call use the global `stdout` at runtime. 29 September 2020, 20:01:25 UTC
5c51ad2 Merge pull request #37559 from JuliaLang/teh/reinterpret_reshape Fix the performance of `reinterpretarray` with simultaneous reshaping 29 September 2020, 19:25:47 UTC
24c468d specialize argmin/argmax on ranges (#34315) Also: document and add test_broken on argmin of degenerate ranges 29 September 2020, 18:50:25 UTC
be54a6c Add documentation for Base.Order module (#36886) * Add docstrings for Base.Order module * Add documentation section for Base.Order * Add reference to documentation on Base.Order in isless() docstring 29 September 2020, 18:36:22 UTC
112f7a1 add some details to docstring of "if" (#37593) 29 September 2020, 18:20:58 UTC
da1d837 fix type inference regression in Ryu (#37802) 29 September 2020, 17:47:00 UTC
0de41e2 SHA: fix wrong types in documentation (#37693) 29 September 2020, 16:38:53 UTC
7639054 types.md: consistently use n-dashes (#37566) 29 September 2020, 15:37:55 UTC
7143444 Omit the `N` from `SCartesianIndex2` and friends In order to make this a subtype of `AbstractCartesianIndex`, formerly this added a useless type parameter `N` to indicate the dimensionality of the array for which this index was constructed. But since none of the code depends on `N`, and it would have forced useless specialization, it seems better to not have it. 29 September 2020, 14:05:45 UTC
69a82b5 Quasi-linear indexing for reshaped reinterpretarray 29 September 2020, 14:05:40 UTC
bc2abbe Add `reinterpret(reshape, T, a)` This addresses longstanding performance problems with `reinterpret` when `sizeof(eltype(a))` is an integer multiple of `sizeof(T)`. By reshaping the array to have an extra "channel dimension," LLVM can unroll the inner loop thanks to static size information. Conversely, this consumes the initial "channel dimension" if `sizeof(T)` is an integer multiple of `sizeof(eltype(a))`. 29 September 2020, 12:37:56 UTC
4f0145b missing error throwing test for findmin/findmax (#37786) 29 September 2020, 11:05:04 UTC
fec672d fix some invalidations when loading CUDA (#37744) 29 September 2020, 06:02:50 UTC
f6d1032 Add `insorted` for `in` function in sorted arrays (#37490) 28 September 2020, 20:00:25 UTC
6596f95 Add code loading support for `Preferences` package (#37595) This adds the calculation, serialization and verification of preferences hashes at code loading time. Preferences, as stored by the forthcoming `Preferences.jl` package within a top-level `Project.toml` file, are parsed by the `dump.c` and `loading.jl` code loading machinery and used to provide a compile-time preferences machinery. 28 September 2020, 19:01:15 UTC
22b5d93 Fix `getfield_tfunc` for `PartialStruct` with `Vararg` (#37769) Add an `unwrapva` to ensure the returned type is not a `Vararg`. 28 September 2020, 17:33:17 UTC
5118121 fix #37671, bug in `isa` Union check (#37762) 28 September 2020, 17:10:56 UTC
c4d1cd9 let spdiagm preserve sparsity (#37684) 28 September 2020, 12:57:12 UTC
b89c4a3 [Pkg]: Bump Pkg to fix JLLs on MacOS (#37764) Co-authored-by: Kristoffer <kcarlsson89@gmail.com> 28 September 2020, 08:12:40 UTC
91d7e18 Ensure `hash(::Platform)` is stable (#37734) This allows us to key dictionaries with `Platform` objects more reliably 27 September 2020, 20:28:45 UTC
4165fdd [file]: Fix EBADF errors when removing files that don't exist (#37758) On Windows, we need to add back write permissions to files that we want to delete. When attempting to do this, if the file itself doesn't exist, `chmod()` can throw a couple of different errors that are not caught by our `catch` statements here. Rather than attempt to do these useless operations, we'll instead only `chmod()` if the file itself actually exists. 27 September 2020, 08:40:57 UTC
93bbe08 fast extrema computation on sparse arrays (#37429) 26 September 2020, 14:27:57 UTC
9fe272c Merge pull request #37702 from JuliaLang/yyc/cpu Collection of a few CPU detection improvements 26 September 2020, 13:41:24 UTC
e9ad329 Rename zeus to neoverse-v1 based on ARM annoucement Also add neoverse-n2 support 26 September 2020, 05:10:42 UTC
a631b65 Add detection of ARMv8.5-MemTag based on reserved kernel bit 26 September 2020, 04:51:49 UTC
a8bc98a Improve detection of ARM mobile SOCs Based on data collected from geekbench, pytorch/cpuinfo and testing of physical devices. Also add comment to CPU implementer ID clarifying that it is a letter based on the name of the company. 26 September 2020, 04:51:49 UTC
c8c6bdc Support Intel Sapphire Rapids Minimum LLVM version: 12 Ref llvm/llvm-project@e02d081f2b60b61eb60ef6a49b1a9f907e432d4c 26 September 2020, 04:51:49 UTC
d7b391d doc: extend mkpath docstring (#37745) 25 September 2020, 23:09:24 UTC
122237b Merge pull request #37720 from JuliaLang/vc/stage_llvm_svn [LLVM] stage git checkout through a bare repository 25 September 2020, 19:22:52 UTC
02c71c7 Merge pull request #37755 from jpsamaroo/jps/llvm-bpf Enable BPF target in LLVM build 25 September 2020, 19:13:36 UTC
fd57021 Add documentation clarifying trailing slashes for basename (#37580) 25 September 2020, 18:40:40 UTC
0ef55f5 win: Add long path aware manifest (#37242) 25 September 2020, 18:06:22 UTC
c176c8f Enable BPF target in LLVM build 25 September 2020, 17:24:49 UTC
58c4e76 Apply suggestions from code review Co-authored-by: Jameson Nash <vtjnash@gmail.com> 25 September 2020, 14:42:38 UTC
04a5be7 Merge pull request #37217 from JuliaLang/jn/libuv2-1.39.0 libuv upgrade to v2-1.39.0 25 September 2020, 12:35:59 UTC
55aeb2f fix not loading startup.jl in generate_precompile.jl (#37739) 25 September 2020, 08:02:54 UTC
2479691 fix #37677, unreliable lowering of assignments to gensym'd names (#37717) 25 September 2020, 02:42:16 UTC
3b55dae Merge pull request #37714 from JuliaLang/jn/35600-again Improve typesubtract for tuples (repeat #35600) 24 September 2020, 19:38:31 UTC
b55e250 avoid type-specialization in show-default (#37591) Refs #37582 Fixes the data pointer for conversion of Ref{Any} to Ptr{Cvoid} to point at the data, instead of the pointer. Then use that in show_default to avoid specializing the Ref(Value) types of each input (causing poor inference of unsafe_convert later). 24 September 2020, 19:37:49 UTC
978123f Expose ComposedFunction as a public API (#37517) * document ComposedFunction * add ComposedFunction to News.md * Give more descriptive names to the fields of ComposedFunction * export ComposedFunction Co-authored-by: Jonas Schulze <jonas.schulze7@t-online.de> Co-authored-by: Takafumi Arakaki <aka.tkf@gmail.com> 24 September 2020, 19:30:29 UTC
864582c Merge pull request #35318 from JuliaLang/vc/upgrade_llvm_10 upgrade LLVM to 10 24 September 2020, 19:05:00 UTC
b1e1bb3 [BinaryPlatforms]: Flesh out CPUID support (#37722) 24 September 2020, 17:32:36 UTC
47d1f62 inference: also handle typesubtract for tuples where only one parameter remains 24 September 2020, 14:57:51 UTC
ad977cb inference: relax isbrokensubtype for egal objects 24 September 2020, 14:55:45 UTC
5a56ecd inference: apply a limit to permitting typesubtract for tuples (from #35600) 24 September 2020, 14:55:45 UTC
811b3a3 Revert "Revert "Improve typesubtract for tuples (#35600)" (#37562)" This reverts commit b18647edda608d473b049ef2c7a40a9d481f0e2d. 24 September 2020, 14:55:45 UTC
af6542e Core.Compiler is not a stable API to rely upon 24 September 2020, 14:55:45 UTC
1450cd3 libuv: upgrade to v2+1.39.0-julia tip 24 September 2020, 14:51:48 UTC
a62acdf more effectively record precompile signatures from package precompilation (#37710) * more effectively record precompile signatures from package precompilation 24 September 2020, 12:53:47 UTC
d148eb2 improve precompile generation for vararg signatures (#37715) 24 September 2020, 09:12:19 UTC
197c8c5 Revert "Update PCRE2 version to 10.34, fixes #35322, fixes #35459. (#37688)" (#37713) This reverts commit 9b3997462af8a8bb33db75e389c3e0741475d3f1. 24 September 2020, 07:03:05 UTC
7e8f2c0 Introduce `libjuliarepl` to break dependence on runtime libraries (#36588) 24 September 2020, 00:04:14 UTC
f26a8c3 Merge pull request #37719 from vchuravy/vc/fixup_rv [LLVM/RV] fix logic mistake in build-script 23 September 2020, 23:37:35 UTC
cd54808 [Artifacts]: Fix docstring 23 September 2020, 20:18:14 UTC
074f7e5 avoid collision when `LLVM_GIT_VER` is empty 23 September 2020, 19:52:42 UTC
75ac632 [LLVM] stage git checkout through a bare repository 23 September 2020, 19:49:08 UTC
c8ae267 [LLVM/RV] fix logic mistake in build-script 23 September 2020, 19:47:45 UTC
57110b4 [BinaryPlatforms]: Remove overzealous verification (#37705) Some of these verifications are a little over-zealous. We don't actually need `cuda` or `march` verification in here, since these will be primarily externally-driven tags. 23 September 2020, 19:24:21 UTC
4767300 Merge pull request #37699 from vchuravy/vc/rv Initial build-system support for RegionVectorizer 23 September 2020, 18:24:29 UTC
79d6af0 Merge pull request #37716 from JuliaLang/sk/rm-old-LibCURL-checksums remove old LibCURL checksums 23 September 2020, 18:12:41 UTC
ee93bd8 Merge pull request #36600 from JuliaLang/jn/codegen-costs reduce some codegen costs for certain code patterns 23 September 2020, 15:07:38 UTC
48e9f42 remove old LibCURL checksums 23 September 2020, 14:53:17 UTC
44eb16d inference: fix bitcast nothrow computation, and some other instanceof_tfunc uses (#37575) Fixes #37532 23 September 2020, 14:49:17 UTC
274b973 deprecate Base.download in favor of Downloads.download (#37611) bump LibCURL to version that doesn't use Base.download 23 September 2020, 07:37:06 UTC
f7adc9e logging: avoid try/catch when the message is a simple This should avoid the try/catch in some cases, where the message is simply a constant value or simple variable. It also tries to slightly reduce required specialization in some other cases too. 23 September 2020, 06:31:59 UTC
b77f400 inlining: add non-zero costs to type operations If we have not eliminated them already, codegen is unlikely to do so as well. 23 September 2020, 06:29:39 UTC
2ca0cc9 inlining: remove bonus for Tuple return with heap references Added in #22210 (and earlier begun in #20853), this is no longer necessary to avoid heap allocations, and thus serves little purpose now. 23 September 2020, 06:29:39 UTC
9b39974 Update PCRE2 version to 10.34, fixes #35322, fixes #35459. (#37688) Restore https://github.com/JuliaLang/julia/pull/35607 Revert https://github.com/JuliaLang/julia/pull/35750 This reverts commit 84ae4a4a2f914deb7aced7e29b2534b89d68d93f. 23 September 2020, 04:31:28 UTC
9adcdd4 upgrade LLVM to 10.0.1 23 September 2020, 03:04:51 UTC
2a36f83 inference: remove union-split limit for linear signatures (#37378) This size limit should be already be imposed elsewhere (tmerge), and should not actually add cost to perform the union/tuple-switching when there is no cartesian product to consider. This permits users to explicitly demand larger union products (for example, with type-asserts or field types) and still expect to get reliable union-splitting at any size in single-dispatch sites. 22 September 2020, 20:52:37 UTC
b0cfb43 [BinaryPlatforms]: Impose an ordering on `arch_march_isa_mapping` (#37692) We want to be able to easily walk these in "compatibility order", so we arrange them in order. It may be that we eventually have multiple "branches", btu since there's a nice linearization right now, let's see how far we can walk with this. I've also switched to vectors rather than tuples, to make it easier to modify these in the future if we must. 22 September 2020, 20:04:47 UTC
07e9e09 avoid a trycatch in tryparse(::Type{UUID}, ...) (#37696) 22 September 2020, 19:46:28 UTC
back to top