sort by:
Revision Author Date Message Commit Date
5444473 More stylistic updates to the manual for consistency (#21463) 21 April 2017, 21:32:28 UTC
5482f91 Use new where syntax in misc files (#21428) 21 April 2017, 16:55:59 UTC
e2c93f0 Put worker threads to sleep immediately on startup 21 April 2017, 16:51:11 UTC
6955932 fix #21440, parsing `+(x::T,y::T) where {T}` 21 April 2017, 14:50:37 UTC
a02c731 Merge pull request #21465 from JuliaLang/yyc/codegen/libname Give symbolic name to special libname on windows. 21 April 2017, 14:02:18 UTC
ca77f51 Band aid to make threaded loop a little easier to work with * Print a warning if an error occurs in the threaded loop (Helps #17532) * Make recursive threaded loops "work" (Fix #18335). The proper fix will be tracked by #21017 21 April 2017, 13:51:25 UTC
e79423a Merge pull request #21460 from JuliaLang/yyc/threads/range Evaluate thread range only once 21 April 2017, 13:42:13 UTC
1a8481b Fix unusually capitalized Julialang.org link and remove separate link to docs search which doesn't exist with new doc system 21 April 2017, 12:40:39 UTC
64d3374 Change all julialang.org links to https 21 April 2017, 10:13:48 UTC
d1686b9 Give symbolic name to special libname on windows. Clean up ccall special case generation conditions. 21 April 2017, 03:46:01 UTC
ced691b Make sure the codegen lock is acquired when calling LLVM in cfunction. 21 April 2017, 02:30:45 UTC
b9a541e Merge pull request #21448 from JuliaLang/yyc/codegen/threadid Optimize `Threads.threadid()` 21 April 2017, 02:02:29 UTC
a8a2d44 Merge pull request #21447 from JuliaLang/yyc/arm/arch Allow armv8 and armv8-a as CPU targets on aarch64 21 April 2017, 00:25:13 UTC
eed97e9 Merge pull request #21350 from JuliaLang/kf/lockdwarf Protect DWARF lookup with codegen lock 20 April 2017, 22:48:32 UTC
c50612c Evaluate thread range only once 20 April 2017, 21:33:07 UTC
7d0c945 A few stylistic and syntactic updates to the manual (#21456) 20 April 2017, 19:03:47 UTC
f959111 Merge pull request #21425 from JuliaLang/jn/21216 correct the codegen of floating point subtypes 20 April 2017, 18:26:01 UTC
a2c1e33 Consistently use joinpath in base (#21405) 20 April 2017, 16:48:46 UTC
82159d6 Update doc: logabsdet works on complex matrices now too (#21451) Ref: #14198 [av skip] 20 April 2017, 16:46:53 UTC
f6d3c78 Merge pull request #20897 from JuliaLang/yyc/gc/mark2 Precompute number of fields to skip in GC at the begin and end of a type 20 April 2017, 16:27:40 UTC
8b2ee71 Ref and Vector in a few places in lapack and arpack (#21420) 20 April 2017, 13:32:31 UTC
5306a61 fix manual typo 20 April 2017, 12:45:42 UTC
6b0fbd2 Optimize `Threads.threadid()` 20 April 2017, 03:52:25 UTC
60ec35c Allow armv8 and armv8-a as CPU targets on aarch64 [ci skip] 20 April 2017, 03:26:31 UTC
ebbe118 Precompute number of fields to skip in GC at the begin and end of a type 20 April 2017, 03:23:08 UTC
762c6db Merge pull request #21434 from JuliaLang/jb/fix21369 fix #21369, exception state overwritten by caught internal errors 20 April 2017, 03:04:36 UTC
a58e8f0 Merge pull request #21444 from JuliaLang/jb/readstring_perf avoid an extra copy in some cases of `readstring` 20 April 2017, 00:32:42 UTC
4f256ee fix #21369, exception state overwritten by caught internal errors 20 April 2017, 00:31:21 UTC
8a3b6c1 Fix sparse right multiplication of Symmetric and Hermitian matrices (#21431). (#21432) 19 April 2017, 20:45:12 UTC
e6f8180 Added kwargs support to `retry`. (#21419) * Added kwargs support to `retry`. * Updated retry example in doc string and added a couple tests. 19 April 2017, 18:15:14 UTC
3a47d4e Merge pull request #21439 from JuliaLang/jb/fix21155 fix #21155, parse `using` with leading dots and line breaks 19 April 2017, 18:13:45 UTC
5d41dd5 Merge pull request #20890 from JuliaLang/yyc/codegen/isassigned Optimize `isassigned` and inline `jl_array_isassigned` 19 April 2017, 17:44:15 UTC
e3dae81 avoid an extra copy in some cases of `readstring` 19 April 2017, 17:01:21 UTC
109456d fix #21155, parse `using` with leading dots and line breaks 19 April 2017, 14:46:48 UTC
ceccddf Do not use light version of colors by default (#21433) 19 April 2017, 07:01:04 UTC
ece60d0 correct the codegen of floating point subtypes ensures that alignment is consistent in the LLVM struct representation as in the Julia struct representation computation also helps ensure that the floating point NaN payload bits won't accidentally get discarded for non-IEEE-754 subtypes of AbstractFloat fix #21216 19 April 2017, 03:27:27 UTC
085876e Update src to work with latest LLVM 5. (#21366) Define using integerPart = llvm::APInt::WordType. Define integerPartWidth for now. Should eventually become lvm::APInt::APINT_BITS_PER_WORD. See https://github.com/llvm-mirror/llvm/commit/6b60db9e917fdc394d19a990d49563fce37d4c25 AllocaInst now requires an addrspace argument. See https://github.com/llvm-mirror/llvm/commit/e1b3c335a27ae50c4f339ffb81c18662bc983e52 19 April 2017, 01:04:37 UTC
b616893 Protect DWARF lookup with codegen lock LLVM is not thread safe (at least we build it don't way), so we need to make sure we can't possibly be accessing LLVM simulateneously on different threads. The easiest way to ensure that is to lock this with the codegen lock. 18 April 2017, 22:31:43 UTC
b0c7084 Improve perf of Diagonal' * Vector|Matrix (#21302) Includes tests Only addresses diagonal part of 21286, not sparse matrices 18 April 2017, 17:33:19 UTC
94214c9 Merge pull request #21418 from JuliaLang/jb/fix21410 fix #21410, need to handle static param values with free typevars 18 April 2017, 15:45:46 UTC
499f038 Merge pull request #21422 from musm/padt Use Refs and Vector in cholmod.jl and random.jl 18 April 2017, 15:43:19 UTC
8fde70d Merge pull request #21421 from musm/patch-3 Update signature of cpu_summary 18 April 2017, 15:42:42 UTC
5ce0d7a Merge pull request #21416 from JuliaLang/mh/union_stack_size Increase union stack size 18 April 2017, 15:41:05 UTC
7f26246 Use new where syntax for a couple of misc methods (#21415) * Use new where syntax for eltype * New where syntax for some size methods * New where syntax for copy mehods 18 April 2017, 15:39:46 UTC
972619b Merge pull request #21411 from musm/conv Use where syntax for convert and unsafe_convert 18 April 2017, 15:38:53 UTC
cb4f6aa Merge pull request #21391 from musm/patch-5 Use dirname in the location of the sys image path 18 April 2017, 15:35:43 UTC
ba78546 inline mod1 (#21409) 18 April 2017, 14:35:03 UTC
55c97fb Merge pull request #21135 from JuliaLang/jn/gc-page-no-region refactor gc to only need to allocate virtual addresses as needed 17 April 2017, 23:06:40 UTC
37d84dd Merge pull request #21308 from JuliaLang/kf/moreprecisetbaa Make TBAA for non leaftypes more precise 17 April 2017, 22:21:27 UTC
6baa6c8 refactor gc to only need to allocate virtual addresses on demand rather than using multiple enormous flat regions, this divides all memory into a 2-3 level page map 17 April 2017, 19:42:11 UTC
b3f8155 Use Refs and Vector in cholmod.jl and random.jl 17 April 2017, 19:03:38 UTC
69f4655 Update signature of cpu_summary 17 April 2017, 18:54:28 UTC
2e89bc1 Merge pull request #21365 from JuliaLang/jn/better-static-dylib make jl_init more friendly to embedded targets 17 April 2017, 18:07:28 UTC
27d8787 fix #21410, need to handle static param values with free typevars 17 April 2017, 17:41:41 UTC
bdc1243 Increase union stack size This solves #21191 and similar issues, but there probably is an underlying problem yet to be solved which makes such a large stack necessary in the first place. 17 April 2017, 11:12:29 UTC
832623f Use where syntax for unsafe_convert 17 April 2017, 02:33:43 UTC
8fb718d Use where syntax in convert function 17 April 2017, 02:33:35 UTC
934e0e3 Merge pull request #21408 from musm/vecandref Update to use Vector and Refs in appropriate files 16 April 2017, 23:46:34 UTC
243d218 Merge pull request #21407 from JuliaLang/jb/fix21397 fix #21397, `Nullable(Tuple)` method error 16 April 2017, 23:44:54 UTC
05536c3 Merge pull request #21390 from strickek/patch-1 Update types.jl 16 April 2017, 22:39:05 UTC
16d7342 Merge pull request #21406 from musm/up Update to new syntax in misc files 16 April 2017, 22:18:18 UTC
8b287ad fix #21397, `Nullable(Tuple)` method error This was caused by widening a signature in `jl_is_cacheable_sig` such that we ended up calling a specialization containing an unknown static parameter value. This failed when the specialization was created by inference, since it correctly stored a typevar as the value of the static parameter. However when the specialization was created by the method caching logic it accidentally worked, since the static parameter value was derived before widening. 16 April 2017, 22:15:12 UTC
aa74426 Update to use Vector and Refs in appropriate files 16 April 2017, 21:52:22 UTC
2d17416 Update to new syntax in misc files 16 April 2017, 19:21:35 UTC
51e6e4e Optimize `isassigned` and inline `jl_array_isassigned`. 16 April 2017, 19:03:13 UTC
8934aab Merge pull request #21358 from JuliaLang/mh/test_20103 Add tests for #20103 16 April 2017, 17:35:19 UTC
0da1a33 Merge pull request #21395 from musm/patch-6 Use joinpath in math.jl 16 April 2017, 17:30:10 UTC
1b047d2 Merge pull request #21398 from tkelman/tk/cppcast explicit cast for compiling as C++ 16 April 2017, 17:28:49 UTC
01567f5 Merge pull request #21399 from musm/arr Use Vector and Refs in misc files 16 April 2017, 17:26:23 UTC
3d5c7ed Merge pull request #21396 from JuliaLang/jb/symbols06 update sysimg symbol tables and generator script for 0.6 16 April 2017, 17:08:40 UTC
efe8fbd Merge pull request #21389 from JuliaLang/jb/fix21382 fix #21382, specificity problem with `DataType` 16 April 2017, 17:08:18 UTC
cd26a40 Use Vector and Refs in misc files 16 April 2017, 04:46:53 UTC
336cf63 explicit cast for compiling as C++ fix a typo 16 April 2017, 02:14:10 UTC
eee75d1 Merge pull request #20070 from omus/build-exit Exit calls in build scripts no longer build to abort 16 April 2017, 00:37:56 UTC
ad48ebe update sysimg symbol tables and generator script for 0.6 16 April 2017, 00:14:32 UTC
7231eee Use joinpath in math.jl 15 April 2017, 22:40:33 UTC
19644a4 Merge pull request #21377 from JuliaLang/jb/fix21370 fix #21370, regression in dynamic dispatch of complex constructors 15 April 2017, 22:38:40 UTC
4d805cc Merge pull request #21393 from JuliaLang/jb/approxfun_round_2 a few more optimizations for package loading 15 April 2017, 22:36:33 UTC
0fe9694 Merge pull request #21394 from musm/ar Use Vector in a couple of places 15 April 2017, 20:50:53 UTC
4f56bf5 Update to where syntax for math files (#21388) * Update to using where syntax in math.jl and special/exp.jl * Update to using where syntax in float.jl * Update to using where synax in floatfuncs.jl 15 April 2017, 20:03:09 UTC
914485d Add test for rebase getindex and non-HEAD branch show (#21386) 15 April 2017, 19:57:31 UTC
e7e3071 fix #21382, specificity problem with `DataType` 15 April 2017, 18:20:19 UTC
e0aee18 a few more optimizations for package loading ref #21173 15 April 2017, 16:24:29 UTC
c1a9aa2 Use Vector where it makes sense 15 April 2017, 15:45:52 UTC
c30f950 improve show-ambiguous to suggest a method intersection that could resolve the ambiguity (#21361) 15 April 2017, 15:05:19 UTC
f824e4b Merge pull request #21299 from JuliaLang/ihnorton-fix_embedding fix embedding example, continued 15 April 2017, 10:34:31 UTC
908b5b7 Use dirname in the location of the sys image path 14 April 2017, 21:56:13 UTC
669990b Update types.jl Added Time in doc string of TimeType 14 April 2017, 20:38:04 UTC
4e7ec79 make jl_init more friendly to embedded targets this throws the error messages directly when the problem occurs, rather than waiting until late to throw a generic "System image file not found" message 14 April 2017, 18:11:12 UTC
67e3b50 Merge pull request #21380 from JuliaLang/jn/wt_mkl add stdio dup call for fd on windows 14 April 2017, 16:54:57 UTC
c3063d4 Switch to triple-backticks 14 April 2017, 16:21:43 UTC
7a3c2fe Isolate each build.jl in a seperate Julia process 14 April 2017, 16:13:27 UTC
94f1f85 Exit calls in build scripts no longer abort build 14 April 2017, 16:13:26 UTC
7bb938e Remove need for temp_rel_pkg_dir 14 April 2017, 16:04:42 UTC
0bbccf1 speed up BitArray `reshape` This mitigates a slight performance regression due to the change in constructor dispatch. 14 April 2017, 15:31:27 UTC
52607b0 Docs wording cleanup to mathematical-operations.md. (#21363) Minor wording fixes (left over from #21338) to doc/src/manual/mathematical-operations.md. 14 April 2017, 14:39:33 UTC
c0d01c9 Fix building of embedding example for out of tree build dont set prefix in examples/Makefile install libexecdir on windows too run make install on appveyor use installed julia exe to run tests on appveyor 14 April 2017, 14:12:34 UTC
5846b3d Fix BLAS.gbmv doc (#21381) [av skip] 14 April 2017, 14:10:09 UTC
bd1ab56 Merge pull request #21347 from tanmaykm/tan/par make nprocs report only fully connected workers 14 April 2017, 03:30:26 UTC
261c716 add stdio dup call for fd on windows this ensures that another library calling _setmode or _dup2 does not affect our library output fix #21264 14 April 2017, 03:04:44 UTC
back to top