forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
merge master #2
Merged
Merged
merge master #2
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Support the syntax `[user@]host[:port][*count] [bind_addr]` in the machinefile. - Initial code just re-writes the list fed to addprocs() by repeating the host as specified, so there is no user-visible change.
Char now supports a limited set of "integer like" behavior. * comparisons with integers * Char - Char = Int * Char + Int = Char update docs and add a NEWS.md entry
Fix two memory errors
Make Char no longer a subtype of Integer
I added a note that the updating-operators can change the type. This is implicit in the current manual, but it nonetheless threw me for a loop the first time it happened to me (this is different, e.g., from C++), so I thought it should be made explicit.
clarify docs for the is_valid_* functions
generalised and improved cat implementation
Both APIs are not very compatible, so let's use fill_array_* functions, which are faster but require MersenneTwister to have an additional array field.
The state of the global RNG was previously handled by libdSFMT. This commit allows the global RNG to benefit speed improvements resulting from the use of fill_array_* functions (cf. previous commit). However, scalar calls to rand() (i.e. producing one value instead of filling an array) using the global RNG are now slower, as well as those filling non-Float64 arrays (less than twice as slow though).
fix incorrect mod rounding
This gives us more accurate highlighting, and makes julia-in-char more accurate. Previously, it could be confused by: edit_insert(s, ';|') end end, '?' => function (s,o...) because ; is legal before a character, and we weren't enforcing a maximum length of character literals.
We can't go back before (point-min), and Emacs errors if we try.
Conflicts: test/float16.jl
These are about to become part of fairly low-level infrastructure, so it's best to run them early.
Consistent varargs specialization in stagedfunctions (fix #8944)
Fixed typo in comment
julia-mode.el: Smarter indentation
fix `@doc` for abstract types
export transpose! and ctranspose!
Improve docs for tempname() and tempdir()
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.