https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
f34a3a8 Rename the FooBar type in test/core.jl (#18279) so `JULIA_CPU_CORES=1 ./julia test/runtests.jl core compile` passes after #18150 (cherry picked from commit 10f3c35f3a29cb4ead0937dd8f22977a532abe17) 29 August 2016, 19:19:10 UTC
53c7720 Some broadcast fixes (#18200) * Fix #18176 (broadcast over mixtures of arrays and numeric scalars) * Fix #17984 (broadcast behavior over empty arrays) (cherry picked from commit a232a0ba7de5b396c3c8ef6f1bcaa0312005cbfb) 29 August 2016, 19:18:59 UTC
6d16bc4 Add missing convert(Vector, ...) and convert(Matrix, ...) methods (#17848) This commit will allow a user to call: convert(Vector, my_abstractvector_of_eltype_Foo) convert(Matrix, my_abstractmatrix_of_eltype_Foo) which is useful because - for the case that the variable is a subarray of the same dimensionality - for consistency with PR #17066 (cherry picked from commit bffeedbb40722664d6ca4f2d08d4355b8aeb2aed) 29 August 2016, 19:18:46 UTC
15019c1 Fix line number in a doctest 29 August 2016, 11:08:13 UTC
245b9f6 Test for Dict not triggering a deprecation due to ::Integer==::Char comparison (#18234) See #18213. (cherry picked from commit 77176cd12d12972a39b314fb34327c8b53899782) 29 August 2016, 10:49:05 UTC
936a9a8 Use inbounds in reductions with generic iterators (cherry picked from commit 9743f8d3dd7d4f2c3ba12283fd56d57953515d1a) ref #18269 29 August 2016, 10:46:49 UTC
b9ec3fd Speed up indices for SubArray (cherry picked from commit 8a70e1379b92ebddc8d1dabbc938d6994395f242) ref #18269 29 August 2016, 10:46:31 UTC
631f752 Clarifiy performance results (#18242) Closes #18231. (cherry picked from commit 2961c4d8f1716bc3a6258e8ce7288521d50e46e9) 29 August 2016, 10:46:04 UTC
4d8df07 Handle `VecElement` in `julia_const_to_llvm` Also clean up `julia_const_to_llvm` to avoid boxing due to `getfield`. Fix #18236 (cherry picked from commit c4093ba956ca1f4f3549a6684608211714742e83) ref #18238 29 August 2016, 10:45:34 UTC
7e2997a Make sure `:push_loc` meta always has a corresponding `:pop_loc` * Preserve meta node and line number info during dead code elimination * Insert `:push_loc` and `:pop_loc` in pairs during lowering Fix #16578 (cherry picked from commit b929c564bdc812d2ac9b5762d9332edfd1084124) ref #18180 29 August 2016, 10:44:17 UTC
f35bc7b hopefully unbreak osx travis llvm linking (#18241) ref https://github.com/staticfloat/homebrew-julia/commit/f57dcc20464c9ce4758a6fca088164a591daf1cd#diff-633fd9f8448015391714f35e04d39b5bL154 [av skip] (cherry picked from commit ad73afa7f7386274b5203f0953574892c862d740) 29 August 2016, 10:42:19 UTC
e59de27 In cgmemmgr, allow writing permissions on the read page for the debugger The permissions specified in MapViewOfFile specify the maximum permissions the file can ever have, which means that even permissions bypass by the debugger is not allowed to write it. Instead, set the maximum permissions to RWX and VirtualProtect down to the permissions we need. This is the same behavior as we use on Mac/Linux. (cherry picked from commit 4f1ba0cfa517d51652736b47854fedef74430de3) ref #18083 29 August 2016, 10:41:48 UTC
25979af add missing "Threads." in example (#18219) (cherry picked from commit f58aaef9b7aa202e9d59e59798ce7f5c32706a1e) 29 August 2016, 10:40:59 UTC
aa74d6d Don't throw in eigs on semidefinite Bs for generalized eigenproblems. (#17873) This makes it possible to solve problems with semidefinite B via explicit shift. (cherry picked from commit f95b8b12b128b1ed7de876f9a456d4dff4ec79db) 29 August 2016, 10:40:05 UTC
c0da8be Fix chol for Symmetric(A, :L). (#18142) (cherry picked from commit f3fe910b72837684c8c52319739638ea6343b741) 29 August 2016, 10:39:38 UTC
746cc0c document __init__ behavior during precompile fix #18115 (cherry picked from commit 5276a4d21d0a5dabf0da74e277192e5e3030feef) ref #18150 29 August 2016, 10:36:01 UTC
e012415 keep track of full dependency state while building incremental precompile caches this ensures that we only recompile a dependency if either: it can be loaded into the current session, or the user explicitly requests it (via reload) thereby reducing the occurrences and improving the accuracy of the "uuid didn't match" error message :) (cherry picked from commit 0df6e61051e9ed689b2755e003b015950d68dd0b) ref #18150 29 August 2016, 10:35:42 UTC
a51c614 change incremental serialize to use deferred errors this gives the caller more control over when an how errors get printed (cherry picked from commit 5abccb645185804f60244971230200c0f922772e) ref #18150 29 August 2016, 10:34:49 UTC
4568dd1 fix sort / fallback order for incremental precompile fix #18069 (cherry picked from commit 94ce57dd28e939ee0805766ae2809980a6a00067) ref #18150 29 August 2016, 10:34:24 UTC
ead4690 inliner needs to do method match tests early fix #18222 (cherry picked from commit 5d2ac0d8e4411a2f4c2a083bfa8c8b2b765ccdd0) ref #18225 29 August 2016, 10:21:57 UTC
d20ef05 Move specialized isequal definitions to avoid hitting #265 Fixes #18213. (cherry picked from commit 1c5f4ca485f4a526dfc30775ae0e4751cd8f6c8d) ref #18214 29 August 2016, 10:20:10 UTC
2634acb improve string docs to define String etc (#18216) * improve string docs to define String etc * tweak (cherry picked from commit 3ab4d761016f269ff5284df1b34374467f5d8176) 29 August 2016, 10:19:16 UTC
fcd8f2f typemap: handle vararg tuple subtyping in jl_typemap_assoc_by_type Fixes a crash while loading ASTInterpreter (cherry picked from commit 2a8e892fc14d565db4768e8f8db21e11cbd0c792) ref #18191 29 August 2016, 10:13:22 UTC
8884d9d precompile: major LLVM speed improvement fix #15048 (cherry picked from commit 95428baeffc53c14a73634510a334c230d1ddaa8) ref #18191 29 August 2016, 10:12:50 UTC
8e130ef incremental deserialize: optimize many simple common cases of flagref_list many types are easy to compute during deserialization, and don't need the full complexity of the flagref list to handle them some of these are easy to detect ahead-of-time, saving a small amount of deserialization effort (cherry picked from commit 649ce88dccd25063ad45c01765e375e3ba0bbb89) ref #18191 29 August 2016, 10:11:32 UTC
9bb8af8 incremental deserialize: handle LambdaInfo identity uniquing this works to avoid having `Expr(:invoke)` creating unintentional copies of LambdaInfo objects when they show up in the system image fix #18184 (cherry picked from commit b0e692a6418460a4b87c81a6dbbe78cc73ea318e) ref #18191 29 August 2016, 09:53:35 UTC
e8285b9 Provide a more useful error message for calling map on a Dict with a non-Pair return type (cherry picked from commit eb959193a50e5c28faff5cd1cd55b4cc86ca203b) ref #17968 29 August 2016, 09:42:24 UTC
78096f4 ASAN: disable leak detection for flisp. (cherry picked from commit c50e845793fc80a8711b38d3890e3a42fe4803b8) ref #18177 29 August 2016, 09:41:56 UTC
ed08c30 Describe negative bit shift counts in NEWS.md (#18188) (cherry picked from commit d14155b1bdccfe0acc0efab4c7986db332e6e191) 29 August 2016, 09:41:37 UTC
de2e847 ccalltest.c: ifndef Intel compiler for complex int (#18193) Complex int is GNU extension that Intel compiler does not support currently. #17145 (cherry picked from commit b94da94adfc8dd506bd2abdf69c20420959f14ea) 29 August 2016, 09:41:15 UTC
e6f843b Tag v0.5.0-rc3 22 August 2016, 23:43:04 UTC
37334d9 Merge pull request #18156 from JuliaLang/tk/backports-0.5.0-rc3 [release-0.5] backports for 0.5.0-rc3 22 August 2016, 22:02:02 UTC
e5b8332 fix #18173, closure lowering error caused by #18130 (cherry picked from commit ca5973ab56e0e212ba8b0e57266225ef28a1dcaa) ref #18183 22 August 2016, 16:35:11 UTC
fe17200 Revert "Revert "fix #18129, optimize some more cases of captured variables"" This reverts commit d45bcaeb76c2693834520f8f39785903ab85efd3. 22 August 2016, 16:35:01 UTC
2406ed9 Fix fft(::Vector{Complex{Int}}) (cherry picked from commit e4ea3a7e782e2ea21da64a14f7dfcf862342d18a) ref #18178 22 August 2016, 12:55:11 UTC
f06e0f1 fall back to dynamic dispatch in union-splitting optimization This should help #17932. If a function returns an unanticipated type that wasn't part of the `Union` seen by inference, do dynamic dispatch instead of erroring. (cherry picked from commit b0cf59170ceb4032c8a01c65b4f21ca878f566be) ref #18046 22 August 2016, 12:55:02 UTC
d45bcae Revert "fix #18129, optimize some more cases of captured variables" This reverts commit 09f7005d48e3390333cfd2d381b6b34aa5a5bece. un-backports #18130 for now until there's a fix for #18173 (was breaking BaseTestDeprecated.jl) 22 August 2016, 11:35:24 UTC
fafdc7b Increase MEMDEBUG allocation threshold for #14173 test (cherry picked from commit 8e96740236ae6da65f94335bd17139bd2f7884ab) ref #18171 22 August 2016, 00:44:28 UTC
69a605b reshape(::Array, Val{N}) always returns an Array (cherry picked from commit a3e6fcf138f5cc849eaa0ea626f53e8480270137) ref #18160 reshape: only call to_shape when it will return Dims (cherry picked from commit d92b2db4cc215f4568532876fae2e93fbe8bec6f) 21 August 2016, 22:31:39 UTC
a6a7fd2 Use unique identifier to avoid incorrect ditype reuse (cherry picked from commit 05cb1f54e84540e128a80d1e5b5ae1d876b046c0) ref #18134 21 August 2016, 22:30:55 UTC
285ef3e Add note about docstrings for aliases (#18157) As mentioned in https://github.com/JuliaLang/julia/pull/18041#issuecomment-241189817 docstrings attached to aliases of functions should be avoided where possible. (cherry picked from commit 3ed55a404eb425229f0556a4f7fdc614008c0ed6) 21 August 2016, 22:30:33 UTC
38bec84 fix more of the #18017 regression (cherry picked from commit b32fcc9765ae848a5b4be0c35795e2e330d4fb8e) ref #18126 21 August 2016, 22:30:17 UTC
55a5b12 Add test for PR #17803 The PR fixes jl_static_show for bitstypes (cherry picked from commit 718391db9ec76d4a12c128d2ae6165ad90a1fb8c) ref #17961 Change test to Int128(-1) (cherry picked from commit 462a1ebd9348ba46f7983b6e0b17a8cfcd9e3e4d) 21 August 2016, 22:29:47 UTC
458c832 fix #10633, remove redundant definitions for `map(Integer, a)` etc. (cherry picked from commit 90753676b686fc8d3511a9b6112f3054ec0320f7) ref #18062 21 August 2016, 22:28:50 UTC
2082241 do not catch everything in isassigned (cherry picked from commit bc0348e298f57e9774fefeb75ab848d581276c76) ref #18075 21 August 2016, 22:28:24 UTC
9e1dbfd remove some unnecessary anonymous functions Transform `x->f(x)` to `f`. (cherry picked from commit 9cead4f7874a2aa9b1a8d6adc59d836683c45e61) ref #17974 21 August 2016, 22:27:34 UTC
d8f5ea9 Merge pull request #18169 from JuliaLang/tb/backport-asan [release-0.5] additional ASAN-related backports 21 August 2016, 22:27:00 UTC
f3566be ASAN/MSAN: document use of sanitizers. (cherry picked from commit 030ff40d8f43fa4f98a44e81bc83e9c8ed2370ef, ref #18067) 21 August 2016, 20:41:59 UTC
727daa6 ASAN: provide default options. (cherry picked from commit 2d9f3a78adedc1b63a3fcba2f2d238a6245aeeae, ref #18067) 21 August 2016, 20:41:59 UTC
be350f2 Increase the signal stack size. This makes the SIGINT signal handler work in combination with ASAN. (partially cherry picked from commit 03c3c7004bec19eadb5b5dee70183d63ca765eec, ref #17727) 21 August 2016, 20:41:58 UTC
51d38f5 Expose MEMDEBUG, and use it to fix the #14173 test (cherry picked from commit 989e544445d38884e40403f20d1fced51b1141f6, ref #18143) 21 August 2016, 20:41:42 UTC
fa24dff Add test for #18054. Note that this test requires a memory sanitizer (ASAN, valgrind) to detect failure. (cherry picked from commit a5fdd74abcf53e5858b98833d64fa6bf84954607, ref #18054) 21 August 2016, 20:25:01 UTC
bfa4e62 Clear the IRBuilder's insertion point after emitting a function. The function might get finalized, invalidating the IP. However, in some cases this invalid IP may get saved and restored, accessing the invalid IP while doing so. Example code path accessing an invalid IP: -> jl_cfunction_object (nested_compile=true, but doesn't change IP) -> gen_cfun_wrapper -> jl_compile_linfo (saves and restores invalid IP) (cherry picked from commit ebd24a84f9f3746b78d4c9ae09f9a8e2bf2db793, ref #18054) 21 August 2016, 20:23:02 UTC
f5ed767 Force inlining on indices(A, d) (cherry picked from commit 95b858a65f50804b992e0f1979057e63e587822b) ref #18014 20 August 2016, 09:22:21 UTC
6da641f Fix doctests 20 August 2016, 09:14:18 UTC
d0a632b circcopy! needs qualification with Base. for 0.5 where it is not exported, ref #17919 20 August 2016, 08:38:32 UTC
e576c87 Make rpath settings a bit more consistent probably addresses #18106 (cherry picked from commit fb0e10651de33660d8d638af72156a032af021d6) ref #18153 Delete some files from libssh2 and curl that keep changing on travis causing the cache to get re-uploaded (cherry picked from commit 71bb974cd97be8a9a72234b2258b034eff12e039) Install all 3 mbedtls dlls on windows and build tests (cherry picked from commit 6b50d352816fcc517597f0e32eadc0dfa53f0786) disable libpsl in curl build should fix clean build of master indent line continuations (cherry picked from commit d14f169de72c9de04b570a0f3f7a3d69c15e1653) disable using zlib in mbedtls, libssh2, and libcurl since it requires additional dev headers fix #18101 (cherry picked from commit f714e835f0e16ebec091cdd7a5c57f2eb884e50f) Cleanup: replace misleading STAGE#_DEPS variables with DEP_LIBS (cherry picked from commit 0d634a3e973585fed4cdd45aa50d1fd559752560) Improve handling of curl, mbedtls, libssh2 USE_SYSTEM fix #17884 (cherry picked from commit 4526b65d7bfaf75e904f77b03e33f554d7ab5d14) Set CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_BINDIR in CMAKE_COMMON, so libssh2 installs without an x86_64-linux-gnu multiarch prefix (cherry picked from commit bf60b56fd95c1991839efd1aad42452d1711736d) Disable building static mbedtls library since we don't need it Go back to just copying the mbedtls dll even in cygwin-cross, otherwise it puts .dll.a files that we don't need alongside the dlls (should probably fix this upstream) (cherry picked from commit 658dc242f8f32927a4fc5f8fe55d7fd061e1fc40) Also just copy libgit2 dll for its install target since otherwise it puts pkg-config files in LIB_INSTALL_DIR which we don't need - if mbedtls separates runtime from library destinations then we could separate BIN_INSTALL_DIR from LIB_INSTALL_DIR or convince libgit2 to use the standard GNUInstallDirs names (cherry picked from commit 8e3f1c53b5ad7ef67211e4a513b5e0441169c585) 20 August 2016, 08:21:31 UTC
293f63a Fixes #18141, eliminating null in value when iterating over `ENV`. (#18144) * Eliminate trailing null from iterator over `ENV`. Fixes #18141. * Add failing test for #18141. (cherry picked from commit 03e7c798f9a0a5f3606abc0364b1a622218eb0c8) 20 August 2016, 08:15:36 UTC
add64d9 Add test for 15913 and 15896 (#17991) * Add test for 15913 and 15896 * Change name of test (cherry picked from commit 6f2c1c4ac0f01a448bf4e1238936d79125d262d1) 20 August 2016, 08:03:55 UTC
3239e25 Try fixing LLVM 3.3 compilation (#18138) (cherry picked from commit 065a208521036f0c22b13ce8dd3c3f4b864b9b00) 20 August 2016, 07:53:58 UTC
1fb052e replace branch in bit shift operators, helps #18135 (cherry picked from commit e02692f7720b000783f225692e9520376ce06fe5) ref #18149 20 August 2016, 07:53:15 UTC
09f7005 fix #18129, optimize some more cases of captured variables (cherry picked from commit 01378992c843d9aa99b2edddd19d387ffe65a673) ref #18130 20 August 2016, 07:53:00 UTC
782cf36 Tests for missing abstract array utils (cherry picked from commit 94c62eb41c95fde9a7cbe95342507936ebb35105) ref #18133 20 August 2016, 07:52:41 UTC
bd679a3 Missing tests for intfuncs (cherry picked from commit 9df2cb914fcdf770d064ed1d9c8118ad056fce5d) ref #18132 20 August 2016, 07:52:21 UTC
ca5c823 make sure .= uses Base.identity, not a local identity (#18122) (cherry picked from commit b117e59815813e90bf6953190c25c2c02f79db05) 20 August 2016, 07:51:55 UTC
fd5bfed Fix incorrect code block in rounding modes docs (#18137) The `::` syntax appearing before the `doctest::` block was causing the doctest not be rendered correctly. (cherry picked from commit ec5283719fe714876fa7b9c67ad6eab240a902d1) 20 August 2016, 07:51:05 UTC
a61909d Make similar faster and safer (#18107) * Make similar faster and safer By converting the eltype argument into a ::Type{T} parameter, we avoid runtime method lookup. Perhaps more importantly, the introduction of NeedsShaping makes `similar` safer, by preventing any possibility of an infinite recursion. * Test that similar throws a MethodError for unsupported dims types (cherry picked from commit 66bacece27a1c34fcca7a92c0ba496d5c444dce7) 20 August 2016, 07:50:47 UTC
6dfbbfd Two missing tests for intset (#18128) (cherry picked from commit a08bfcd8eae69bc0ff03d74ba2df986def6346c6) 20 August 2016, 07:50:29 UTC
ac9627c More tests for osnames (#18121) (cherry picked from commit 9fd79eff79608dc189c6e7fbb38232d386afe730) 20 August 2016, 07:50:17 UTC
51aadfe rational powers (fixes #18114) (#18118) Fixes precision problem for rational powers of BigFloats (#18114) (cherry picked from commit db03824a50d3469848b2e56ca187e59fb0376488) 20 August 2016, 07:50:01 UTC
6d0aa14 fix #18085, segfault on method add in loop Closures that are part of out-of-scope method adds were not lifted out of top-level loops. (cherry picked from commit c9c7bfa2146ff9a613057e2513b088dc9dc9b495) ref #18119 20 August 2016, 07:49:43 UTC
962a2cc Add istriu, istril, issymmetric, and ishermitian methods for UniformScaling (#17950) (cherry picked from commit 57df5f15dff5b30a9e34308b4162fa2b4ca4a5d4) 20 August 2016, 07:47:14 UTC
22a73dd fix "recommanded" typo (cherry picked from commit 59771677ce0df251a6e105a94d961918f0cfbef8) ref #18100 20 August 2016, 07:45:57 UTC
01c76ea Improve arch/cpu detection/selection on ARM and AArch64 * Allow `cpu_target` to specify a generic arch, matching the behavior on x86 * Detect the CPU arch version with `uname` * Require `armv6` Close #13270 (`armv5` is not supported) Fix #18042 * Remove warning about generic arch since it's not really useful Fix #17549 * Require at least the same ARM arch version and profile the C code is compiled with (cherry picked from commit 760bc41d6410bb0b398782f1da9353c4c31869a6) ref #18100 20 August 2016, 07:45:46 UTC
738f5ca Build curl with minimal external libraries. Link to our own libssh2. (cherry picked from commit 4e12052db87022f46443f8c0dac08a8824a5f07c) ref #18103 20 August 2016, 07:45:13 UTC
5920a47 Fix compilation on llvm 3.9 (cherry picked from commit 090e9e435319b8c422f1ac9ef29fad510e45b509) ref #18104 20 August 2016, 07:43:03 UTC
f703e65 Update URL parsing tests Added a new explicit SSH protocol test which generated other changes. (cherry picked from commit ea8fa251fdb7434e2e84fab58d74d5079412bf78) ref #18066 20 August 2016, 07:40:26 UTC
e7d3848 Removed SSH test from libgit2-online Test was only working for environments which had GitHub SSH keys setup. (cherry picked from commit 1e98a5ab2a230caac320f69b1d801bccd95c344f) ref #18066 20 August 2016, 07:40:13 UTC
a48ce16 Correct invalid SSH URL An SSH URL with a path uses a colon between the host and the path: git@github.com:JuliaLang/Example.jl (correct) git@github.com/JuliaLang/Example.jl (incorrect) (cherry picked from commit 749d099e13f44d516c0916e9c9d02c917f96edc9) ref #18066 20 August 2016, 07:40:01 UTC
95acc0f Improve URL regex (cherry picked from commit d2bbdd2cfcee768864c4b8149230a3f9b537846a) ref #18066 20 August 2016, 07:39:50 UTC
edcd7f9 Fix bug with operator precendence (cherry picked from commit 2192d192a7b5fb180821e107dff755d8053222a9) ref #18066 20 August 2016, 07:39:41 UTC
24c98c2 readme formatting [ci skip] (cherry picked from commit d3951aa192e72f4086ca5e2e87a035940228272d) ref #18063 20 August 2016, 07:37:49 UTC
ddddd4d improve FreeBSD / generic posix support (cherry picked from commit 6a62d300313a80ff0d435481e861e06ff32a5890) ref #18063 Conflicts: src/signals-unix.c Not including changes to jl_call_in_ctx in this file because those changes were part of https://github.com/JuliaLang/julia/pull/17727 which has not been backported to release-0.5 at this time. 20 August 2016, 07:36:41 UTC
cb1e04d Fix compiler warnings on 32bits (cherry picked from commit e7110971dd7e8076ee15aacc28e3e595244b36cc) ref #18108 20 August 2016, 07:32:03 UTC
e313fc9 Missing tests for strings (#18089) (cherry picked from commit 3feef68dc6d5858b8f9ff3c97445cdf7503da3a7) 20 August 2016, 07:31:25 UTC
dd604d2 Set LIB_INSTALL_DIR for cmake-based projects (#18047) * Set LIB_INSTALL_DIR for cmake-based projects This fixes `MULTIARCH_INSTALL=1` installations that place libraries not into `<prefix>/lib` but into `<prefix>/lib/<host-triplet>`, like Debian and Ubuntu. Without this change, `libgit2`, `libssh2` and `mbedtls` would place libraries into `<prefix>/lib`, silently failing until the Julia bootstrap process attempted to dlopen one of them. * Apply `LIB_INSTALL_DIR` to `CMAKE_COMMON` (cherry picked from commit 1af5356a301f671ab57ff5f534a00c7eca96435a) 20 August 2016, 07:29:47 UTC
25be0c1 Added test for complex on SharedArrays (#18097) (cherry picked from commit 68ba177ee70f5bf39d0ca22f2164bb20c4657177) 20 August 2016, 07:29:30 UTC
beeb6c0 Add tests for iteration methods on numbers (cherry picked from commit 07ee0457ef1ee41971e7c3dc36ec5837c1cba112) ref #18092 20 August 2016, 07:29:13 UTC
190064f Add tests for flipdim, unary ops (cherry picked from commit 1df4454b5dc5012332bc510b7ccb5bd6ada60178) ref #18092 20 August 2016, 07:29:02 UTC
2cb13f3 ensure in_typeinf_loop is only read by the thread with the typeinf lock (cherry picked from commit b6b26df84aff0808735871310e84e602fee8d681) ref #18094 20 August 2016, 07:28:38 UTC
c776bbc move recheck_tuple_intersection to thread-local (cherry picked from commit 575f2aee4cf49f6f5e830284c84d135f2b9eea77) ref #18094 20 August 2016, 07:28:26 UTC
caac581 updates to README.md (#18093) This link has moved. (cherry picked from commit 0f805fb2a4cc63cd0ba7ae0d5ec1048bc7223c89) 20 August 2016, 07:28:09 UTC
32610e2 assume `getfield` is non-volatile if inferred to be constant fixes regression caused by #18017 (cherry picked from commit e35a7f65aa9bc92c56e57af91837f7810b9092be) ref #18058 20 August 2016, 07:27:49 UTC
9a89ff9 Add missing tests for diagonal and uniformscaling (#17921) * Add missing tests for diagonal and uniformscaling * Change A_mul_B to * * Moved things out of nested loop that don't need to be there (cherry picked from commit ee80a0c3eb65d5ab07080b4007f2273e5dcc1259) 20 August 2016, 07:18:32 UTC
e5f7f5c test libccalltest.so with split debug info (cherry picked from commit 4083d9b9f918d31744d92d2e660d9b8a46980bf8) ref #17962 20 August 2016, 07:18:12 UTC
96ef8f2 add support for split debuginfo files There seem to be a few variations on the tools and arguments available for creating split debuginfo files. I used the following: objcopy --only-keep-debug libjulia.so libjulia.so.debug strip -g libjulia.so objcopy --add-gnu-debuglink=libjulia.so.debug libjulia.so (cherry picked from commit b67fd06f11cc55f0c7823ed606bced2e2e84d64c) ref #17962 20 August 2016, 07:17:59 UTC
a3e144e Fix a row-indexing bug with sparse matrices that have non-Int indices, introduced by #13612 and which has caused `make -C test/perf` to fail for the last 9 months searchsortedfirst does not have methods for general Integer indices (cherry picked from commit b1d53218ac9c4721988d0f8dbf3ce25085a9d026) ref #18022 20 August 2016, 07:12:43 UTC
0388e37 fix deprecated syntax "global rng_state::Float64" (cherry picked from commit 2359ef8bbc26ffa0d02e5eb54280a82f8571692b) ref #18022 20 August 2016, 07:12:14 UTC
bc7f384 Add cygpath_w call so `make -C test/perf` works in cygwin-cross (cherry picked from commit 03f37f292bd6b239f6a8c319a9f3474afcce150f) ref #18022 20 August 2016, 07:12:05 UTC
42a3262 fix #18051, allocation in sparse vector getindex Caused by the return type of `ord()` being unknown. (cherry picked from commit b74bc6f38519fbce5ee5359a1f2cdac70b424fc6) ref #18060 20 August 2016, 07:11:35 UTC
back to top