https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
12333d3 Introduce promotion mechanism for concatenation 26 February 2017, 18:45:21 UTC
078835c Document rounding away from zero (#20775) 24 February 2017, 14:15:05 UTC
b0ca50b Merge pull request #20712 from JuliaLang/teh/doc_cartesian Add CartesianIndex & CartesianRange docstrings, misc doc improvements 24 February 2017, 11:20:35 UTC
0dca594 hashing of general objects was far too simple (fixes #20744) (#20767) * hashing of general objects was far too simple (fixes #20744) * hash_uint(3h - object_id(x)) is a somewhat better hash If we'd used `3h - object_id(x)` previously, the original issue would never have come up since `hash(a, hash(b, hash(c, h)))` wouldn't have produced `3A - 3B + 3C - h` but would instead have given the value `27h -9A - 3B - C`, which is asymmetrical in `a` and `c`. Passing the result to `hash_uint` fixes that issue since that function is non-linear, but defense in depth, right? We may as well do the same operations in such a way that the passed-through value gets the most operations done on it. 24 February 2017, 08:30:44 UTC
70fc72a Merge pull request #20773 from JuliaLang/jb/typeshowbug fix bug where non-tuple types were shown as `NTuple` 24 February 2017, 05:37:30 UTC
3ccfd1c Merge pull request #20734 from JuliaLang/teh/man_amb_fix Be consistent about function names in padding example 24 February 2017, 00:52:31 UTC
f95bc77 Merge pull request #20757 from iblis17/bsd-sharedarr sharedarray: improve error msg on bsd family 24 February 2017, 00:51:40 UTC
554a031 Merge pull request #20756 from iblis17/mmap-anon mmap: fix MAP_ANONYMOUS flags value for bsd family 24 February 2017, 00:49:31 UTC
c49908c fix bug where non-tuple types were shown as `NTuple` 23 February 2017, 21:59:56 UTC
7968717 Make setindex! work for views of BitArrays by loosening signature (#20717) for Arrays to StridedArrays. This is not the fastest solution but it should be correct. Since StridedArrays are not defined when bitarray.jl is loaded, the relevant defitions are moved to multidimensional.jl Fixes #20715 23 February 2017, 21:08:52 UTC
468b610 Merge pull request #20750 from JuliaLang/jb/randomfixes fixes for 4 miscellaneous issues 23 February 2017, 20:16:01 UTC
d3ee10b Dict merge(!) with combiner function (#20708) 23 February 2017, 18:37:15 UTC
4b76c95 Goodbye, Human (#20748) 23 February 2017, 18:31:45 UTC
930c2c1 Merge pull request #20730 from JuliaLang/ksh/diffstat Add a DiffStat type, methods, and tests 23 February 2017, 18:17:53 UTC
4275c74 Fix doc build in cygwin cross-compile (#20713) need cygpath_w to translate absolute paths from cygwin style to windows for mingw julia executable to understand them fixes buildbot failure seen at https://build.julialang.org/builders/package_win6.2-x64/builds/1346/steps/make%20binary-dist/logs/stdio was broken by me in #20519, didn't notice until now because of #20643 preventing the buildbots from making new nightlies 23 February 2017, 17:29:32 UTC
f2b155a Merge pull request #20025 from JuliaLang/yyc/codegen/llvm-stall Backport LLVM patches to fix X86 partial register stall 23 February 2017, 17:24:43 UTC
a17b138 Expand docs for mod (#20633) * Expand docs for mod Address #14826. * simplify doc text * Another rewrite * more changes * typo * some more * missing the 23 February 2017, 16:58:38 UTC
0b2130e Revise mention of deprecated array-scalar methods in a news item, indicating their deprecation. [ci skip] (#20743) 23 February 2017, 16:24:44 UTC
162a61d sharedarray: improve error msg on bsd family 23 February 2017, 13:23:08 UTC
f1adcc8 mmap: fix MAP_ANONYMOUS flags value for bsd family 23 February 2017, 09:01:27 UTC
12624fb Merge pull request #20674 from iblis17/test-file Fix FileMonitor test case on FreeBSD 23 February 2017, 05:41:28 UTC
9e947e5 fix #20610, add deprecation for `=>` expression head 23 February 2017, 05:01:14 UTC
03939e7 fix #20745, handle macrocall in `deparse` 23 February 2017, 04:23:25 UTC
51f7a84 fix #20729, handle null in ASTs better 23 February 2017, 04:23:25 UTC
2d5a51d fix #20733, inference with new definition of `getindex` for tuples 23 February 2017, 04:23:21 UTC
2a19c36 Add show method and test for FetchHead (#20727) 22 February 2017, 23:17:37 UTC
e4be955 Merge pull request #20721 from JuliaLang/ksh/showmethefactors More show methods and tests for factorizations 22 February 2017, 22:23:14 UTC
0cebddf bug fix for x^Val{p} (fixes problem noted in #20648) (#20732) 22 February 2017, 20:19:42 UTC
fa167f5 Merge pull request #20593 from JuliaLang/jn/union-codegen codegen support for efficient union representations 22 February 2017, 19:45:04 UTC
f3961b9 Merge pull request #20676 from iblis17/fbsd-term Fix Terminals.hascolor checking on FreeBSD 22 February 2017, 19:14:35 UTC
4d2efd8 Mention devectorization deprecations in NEWS.md. (#20724) 22 February 2017, 18:54:07 UTC
0234645 Show method and test for Schur 22 February 2017, 18:35:31 UTC
603726c Be more explicit about data sharing for `reshape` 22 February 2017, 11:47:48 UTC
e399558 Add Cartesian docstrings to stdlib and reorganize some sections 22 February 2017, 11:47:43 UTC
0e08411 Be consistent about function names in padding example 22 February 2017, 11:05:59 UTC
61a291b Merge pull request #20722 from JuliaLang/jb/nontypebounds tolerate non-types as Tuple parameters better 22 February 2017, 04:15:47 UTC
ac7459d Add a DiffStat type, methods, and tests Create a DiffStat type so that we can get more information about GitDiffs. Add a show method for this type and GitDiff. Also add methods to get the number of files changed/insertions/ deletions in the diff. 22 February 2017, 00:57:37 UTC
35ce0fd Remove duplicate ctranspose definition for real vectors (#20685) 22 February 2017, 00:52:40 UTC
d168287 Merge pull request #20705 from JuliaLang/ksh/diffshow Add show methods for DiffDelta, DiffFile and test 22 February 2017, 00:17:46 UTC
eac043a add union-splitting commit comment to devdocs starting a document describing the overall code-generator structure 21 February 2017, 19:57:17 UTC
e8d2d95 tolerate non-types as Tuple parameters better part of #19998 21 February 2017, 19:11:51 UTC
6c34f8f Test of show method for QR 21 February 2017, 19:02:39 UTC
6e317a4 Test of show method for Cholesky 21 February 2017, 19:02:26 UTC
1b30ff8 Show method and test for LQ 21 February 2017, 19:02:14 UTC
3f7de0f Add show methods for DiffDelta, DiffFile and test 21 February 2017, 18:24:59 UTC
474d05d Fix misc test to not hard code test module name (#20550) Use randomized test module name to prevent this from happening again. 21 February 2017, 18:13:14 UTC
33f464e Tests for getindex on diff and move error throw (#20683) 21 February 2017, 17:48:16 UTC
6131a0f better optimize code for copying a value to an unboxed union 21 February 2017, 17:46:07 UTC
cc43c0b ensure that constants are treated as values rather than opaque pointers 21 February 2017, 17:46:07 UTC
cad430c ensure the value in the gcroot is transferred during union conversion convert_julia_type is only ever called with needsgcroot=false, so this is mostly dead-code right now 21 February 2017, 17:46:06 UTC
93fcde0 fix over-pessimistic emit_isa for Type 21 February 2017, 17:46:06 UTC
a915e0b change union tindex representation to have the high bit indicate boxed this allows (tindex & 0x7f) to always be exact, saving the need for any dynamic loads in many cases 21 February 2017, 17:46:05 UTC
bbe8e40 distinguish between "must" and "may" when remarking julia type information expr-type and slot-type may improve type information (but try not to destroy it) while slot-assignment and return must convert the type information (even if it loses information / forces boxing) 21 February 2017, 17:46:05 UTC
de6ad69 implement a union-return-type calling convention 21 February 2017, 17:46:04 UTC
00b30a8 codegen: represent Union types via tagged unions this covers the code-generator support for representing types on the stack via a tagged type representation The function `remark_julia_type` now can transform between any two types. Instead of asserting when asked to drop type information, it'll instead cast the object to the requested representation. It'll make boxes, allocate stack copies, and compute tagged unions as needed to perform the request. This means that we can use `remark_julia_type` whenever we want type information to forcibly change. For example, storing to a slot requires dropping the intermediate type information and generating a representation suitable for copying into the memory location. Loading from a slot has the opposite requirement: it needs to be able to load the slot via it's declared type, then possibly to cast the result to add type information that may be used later (to emit optimizations of other intrinsic function calls). The primitive routines that need to be able to handle tagged unions are: - remark-type - load-local - store-local - isa - is - emit_typeof - emit_sizeof - boxed - unbox - specsig (not implemented here yet) Everything else should be possible to handle in inference by using these primitives to implement union-splitting. Additionally, the following will be supported once the type layout changes: - getfield / setfield The representation of the tagged-union is as a pair of < union*, selector > memory addresses. The selector is fixed as a byte, and will union-tag the first 126 isbits. It records the one-based depth-first count into the type-union of the isbits objects inside. An index of zero indicates that the union* is actually a tagged heap-allocated jl_value_t*, and needs to treated as normal for a boxed object rather than as a tagged union. The `union*` memory region may be allocated at *any* size. The only constraint is that it is big enough to contain the data currently specified by `selector`. It might not be big enough to contain the union of all types that could be stored there according to the associated Union type field. Use appropriate care when copying. this also includes improvements for codegen of isa with mixed types 21 February 2017, 17:46:03 UTC
ae77740 Merge pull request #20700 from JuliaLang/kf/safepoint Fix missing root across safe-point 21 February 2017, 17:11:50 UTC
9d96056 Fix fetchheads callback and add tests (#20669) 21 February 2017, 16:59:08 UTC
201737a Add imports and module qualifiers for Distributed (#20710) * Add imports and module qualifiers for Distributed helps more of `JULIA_TESTFULL=1 make testall` pass * some more imports from Base into Distributed for use * fix rmprocs test to wait for removal of added workers 21 February 2017, 16:45:45 UTC
0e33baa Merge pull request #20706 from JuliaLang/jb/fixcxx fix specificity of Tuples with non-types in them 21 February 2017, 15:37:38 UTC
e1b88f7 Merge branch 'master' into yyc/codegen/llvm-stall 21 February 2017, 14:59:25 UTC
bb1f704 Add docstrings for CartesianIndex and CartesianRange 21 February 2017, 12:02:15 UTC
bb83c0e fix specificity of Tuples with non-types in them 21 February 2017, 06:18:00 UTC
e21caee Merge pull request #20702 from JuliaLang/teh/fix_extra_manual Delete accidental revival of methods.rst [ci skip] 21 February 2017, 00:47:05 UTC
4a60ad2 Delete accidental revival of methods.rst [ci skip] 20 February 2017, 23:51:49 UTC
30a215d Merge pull request #20686 from JuliaLang/teh/linear_indices_amb Minor fixes to checkbounds_linear_indices and getindex for ranges 20 February 2017, 23:35:09 UTC
75cfcb9 Merge pull request #18111 from JuliaLang/teh/docs_methods_ambiguities Add manual section on method design and more advanced ambiguity resolution 20 February 2017, 23:34:27 UTC
3181500 Fix missing root across safe-point 20 February 2017, 23:09:49 UTC
fe2a3b5 Merge pull request #20698 from JuliaLang/jb/20643 fix #20643, stack overflow in type intersection 20 February 2017, 22:46:52 UTC
baf1900 Merge pull request #20675 from iblis17/fbsd-libdl Libdl: implement dllist on FreeBSD 20 February 2017, 22:33:17 UTC
c102fc2 update profile manual (#20661) * update profile manual 20 February 2017, 22:32:56 UTC
6eb61c6 Merge pull request #19321 from JuliaLang/jn/time-flisp add configurable flisp profiling / timing code 20 February 2017, 22:10:13 UTC
eb504bb Allow `limit_type_depth` to introduce more than one new `TypeVar` (#20626) Allow `limit_type_depth` to introduce more than one new `TypeVar` Assert `limit_type_depth` returns a supertype of its input Fixes #20615. 20 February 2017, 21:09:49 UTC
37072bd fix #20643, stack overflow in type intersection 20 February 2017, 20:17:07 UTC
fec29e7 fix sparse setindex issue #20657 (#20677) 20 February 2017, 18:55:09 UTC
16a9193 Fix signature in issorted docstring (add lt keyword) [ci skip]. (#20682) 20 February 2017, 17:07:45 UTC
e80782e osutils: include DragonFly in is_bsd 20 February 2017, 14:23:57 UTC
22790b1 libdl: implement dllist on FreeBSD DL_ITERATE_PHDR(3): https://www.freebsd.org/cgi/man.cgi?query=dl_iterate_phdr&apropos=0&sektion=3&manpath=FreeBSD+12-current&arch=default&format=html 20 February 2017, 14:23:40 UTC
c6b3251 Use mbedTLS hostname verification for LibGit2 (#20443) * Use mbedTLS hostname verification for LibGit2 Corrects issues with hostname verification failing when the SSL subjectAltName is not specified and the CN should be used. * Add test for mbedTLS verification * Made mbedTLS verification a seperate patch * Disable startup-file * Remove use of which * Changes from PR review * Use localhost when hostname isn't set to loopback * Handle getaddrinfo exception * Improve warning message * Add libgit2-mbedtls-hostname.patch dependency libgit2-mbedtls-hostname patch directly depends on the libgit2-mbedtls patch. The libgit2-mbedtls-writer-fix patch also modifies the mbedtls_stream.c file seperate section of the file. To ensure that the patches are always applied in the same order we'll make the hostname patch dependent on the writer-fix patch. 20 February 2017, 14:09:32 UTC
06a528c Add manual section on method design and more advanced ambiguity resolution 20 February 2017, 11:05:54 UTC
9706c8b Merge pull request #20659 from JuliaLang/ksh/gittree Add methods and tests for TreeEntry 20 February 2017, 05:27:42 UTC
faa9b15 start->first in getindex This happened to work because start returns the same thing as first for our two OrdinalRange types in base, but it's not guaranteed for all possible OrdinalRange types. 20 February 2017, 03:02:12 UTC
0bd8e2b Fix ambiguity in checkbounds_linear_indices 20 February 2017, 02:56:47 UTC
a88f505 Merge pull request #20665 from JuliaLang/jb/specificity06 fix some specificity and intersection issues 20 February 2017, 01:34:53 UTC
dd52712 Merge pull request #20680 from pabloferz/pz/zerorepeats Fix repeat for zero repetitions 19 February 2017, 23:37:36 UTC
208ef68 Fix repeat for zero repetitions 19 February 2017, 22:10:21 UTC
1297ede Be equally forgiving of leading & trailing whitespace in number parsing (#20606) 19 February 2017, 17:43:55 UTC
36569d6 make write/unsafe_write on iobuffer return signed like other io (#20609) * make write/unsafe_write on iobuffer return signed like other io * correct doctest * add NEWS 19 February 2017, 17:05:16 UTC
d4c23ed inline iterator functions for enumerate (#20616) 19 February 2017, 16:59:40 UTC
512302b Speed-up repeat for AbstractArrays (#20635) * Speed-up repeat * Avoid some splatting 19 February 2017, 16:58:40 UTC
ea75e7e Few misc doctest fix ups (#20667) * Fix note formatting * Add Example header and a doctest to math 19 February 2017, 16:56:55 UTC
2142cc4 Fix Terminals.hascolor checking on FreeBSD 19 February 2017, 13:56:14 UTC
723934c Fix FileMonitor test case on FreeBSD close #8078 On FreeBSD, the F_GETPATH is not available in fcntl. The path returned by libuv will be NULL. Ref: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/src/unix/kqueue.c#L353-L361 And the test case in libuv: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/test/test-fs-event.c#L315-L318 19 February 2017, 06:17:05 UTC
34b39f8 Mention in NEWS.md the removal of special functions (#20642) 19 February 2017, 00:02:03 UTC
7ee2cd8 Add testsets to abstractarray tests. (#20471) * Add testsets to test/abstractarray.jl * Tests pass * Small changes, address review. * Bring back let. 18 February 2017, 22:17:50 UTC
72c1678 A few more libgit2 tests (#20639) * A few more libgit2 tests * A few tests more * More tests 18 February 2017, 22:02:01 UTC
dc837f1 Merge pull request #20662 from JuliaLang/yyc/call-overload Remove remaining of the old call overload syntax 18 February 2017, 21:42:24 UTC
2d172ac Add module name "Base" when calling "shell_escape" (#20647) solve problem: exception launching on machine <remote_ip> : UndefVarError(:shell_escape) when calling addprocs([<remote_ip>]) 18 February 2017, 20:34:43 UTC
6c6bbba minimal inlining of x^Val{p} for p=0,1,2,3 and x::Number (#20648) 18 February 2017, 19:59:10 UTC
c081b28 fix show_lambda_styles to only print with bold when used in backtrace (#20660) 18 February 2017, 19:57:09 UTC
2097078 Fix typo in dropstored!'s docstring [ci skip]. (#20664) 18 February 2017, 19:54:46 UTC
back to top