Skip to content
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

deprecate fallback constructor #23273

Merged
merged 5 commits into from
Dec 21, 2017
Merged

deprecate fallback constructor #23273

merged 5 commits into from
Dec 21, 2017

Conversation

JeffBezanson
Copy link
Sponsor Member

@JeffBezanson JeffBezanson commented Aug 15, 2017

This resolves #15120. The approach used here is to define explicit constructors for all types (as a bonus, it's nice that more constructors can be defined in Core where the types themselves are defined), and then add convert methods to indicate which constructors are safe for use in conversion. This also has the nice side effect of removing an unsightly warning from the system image build, since Core.Inference can work without the fallback constructor.

@nanosoldier runbenchmarks(ALL, vs=":master")

base/int.jl Outdated
throw_inexacterror(f::Symbol, ::Type{T}, val) where T =
(@_noinline_meta; throw(InexactError(f, T, val)))
# calls constructors defined in boot.jl
convert(T::BitIntegerType, x::Union{BitInteger, Bool}) = T(x)
Copy link
Sponsor Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in abstract_call_method, there's a heuristic that should be changed to reflect the new signature:

        # the construct-to-convert method is a bottleneck in inference,
        # so just assume that recursion will get prevented at some other point
       && !(method.sig == Tuple{Type, Any}))

that should address the inference failure in mmap

Copy link
Sponsor Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought we suggested that this should be:

convert(::Type{I}, x) where {I <: Number} = I(x)

Copy link
Sponsor Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it maybe should be eventually, I was just being conservative for now.

@nanosoldier
Copy link
Collaborator

Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan

@JeffBezanson
Copy link
Sponsor Member Author

Ah, what happened here was that the type assertion in

(::Type{T})(arg) where {T} = convert(T, arg)::T

was very helpful to inference in some cases. The new constructors are all inferable, but there are too many of them, so we hit the method match limit (#23210).

@vtjnash
Copy link
Sponsor Member

vtjnash commented Aug 16, 2017

Can we just remove that limit?

@JeffBezanson
Copy link
Sponsor Member Author

That would be a good experiment. I guess we can rely on the property that worse type information will tend to make the inferred return type diverge to Any quickly, so we can still skip many methods. The main thing to do is to make jl_matching_methods return some kind of iterator, so we don't need to build a full list of matches when we're only going to look at 2 of them. (That would probably be a good change anyway.)

@JeffBezanson
Copy link
Sponsor Member Author

Here's a small wrinkle. It's pretty popular to define highly generic conversions like these:

convert(::Type{T}, x::TwicePrecision) where {T<:Number} = convert(T, x.hi + x.lo)

convert(::Type{T}, x::Enum{T2}) where {T<:Integer,T2<:Integer} = convert(T, bitcast(T2, x))

Do we want these to be constructors? We could certainly move to a world where things like this are defined as constructors by default, with only a relatively small number of convert methods. I think that's the plan, just want to spell it out clearly.

@vtjnash
Copy link
Sponsor Member

vtjnash commented Aug 17, 2017

That second one should never have existed as a method of convert, so +1 to continuing with the plan.

@JeffBezanson
Copy link
Sponsor Member Author

I looked into the couple slowdowns here. I can reproduce the revcomp one locally, but the LLVM IR is identical. It might be due to dispatch table rearrangement; the benchmark involves a Box. (It's also slower on master than on 0.6.)

@vtjnash
Copy link
Sponsor Member

vtjnash commented Aug 22, 2017

We should also merge #22300

@JeffBezanson
Copy link
Sponsor Member Author

JeffBezanson commented Aug 22, 2017

Updated to change all Number conversions to constructors, and deprecate a few more conversions that seem sketchy to me.

@StefanKarpinski
Copy link
Sponsor Member

Yes, it will. Jeff is on vacation for the week.

@JeffBezanson
Copy link
Sponsor Member Author

Getting this after rebase, if somebody wants to dig in:

julia: /home/jeff/src/julia/src/APInt-C.cpp:455: void LLVMTrunc(unsigned int, llvm::integerPart*, unsigned int, llvm::integerPart*): Assertion `inumbits > onumbits' failed.

signal (6): Aborted
in expression starting at loading.jl:335
raise at /build/buildd/eglibc-2.19/signal/../nptl/sysdeps/unix/sysv/linux/raise.c:56
abort at /build/buildd/eglibc-2.19/stdlib/abort.c:89
__assert_fail_base at /build/buildd/eglibc-2.19/assert/assert.c:92
__assert_fail at /build/buildd/eglibc-2.19/assert/assert.c:101
LLVMTrunc at /home/jeff/src/julia/src/APInt-C.cpp:455
jl_intrinsic_cvt at /home/jeff/src/julia/src/runtime_intrinsics.c:400
jl_call_fptr_internal at /home/jeff/src/julia/src/julia_internal.h:380 [inlined]
jl_call_method_internal at /home/jeff/src/julia/src/julia_internal.h:399 [inlined]
jl_apply_generic at /home/jeff/src/julia/src/gf.c:2011
jl_apply at /home/jeff/src/julia/src/julia.h:1474 [inlined]
jl_f__apply at /home/jeff/src/julia/src/builtins.c:556
builtin_tfunction at ./inference.jl:1774

@JeffBezanson
Copy link
Sponsor Member Author

Fixed that issue and rebased; let's see what happens now.

AbstractMatrix(C::Cholesky) = C.uplo == 'U' ? C[:U]'C[:U] : C[:L]*C[:L]'
AbstractArray(C::Cholesky) = AbstractMatrix(C)
Matrix(C::Cholesky) = Array(AbstractArray(C))
Array(C::Cholesky) = Matrix(C)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Beautiful! :) All factorization->array convert methods become array constructors in this pull request I imagine?

Copy link
Sponsor Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I think so.

@iblislin iblislin mentioned this pull request Dec 14, 2017
@JeffBezanson
Copy link
Sponsor Member Author

This has gotten a bit out of hand with the large number of changes happening, but please bear with me. I think we really need this in 1.0 --- it can't be handled neatly by renaming or deprecations.

@StefanKarpinski
Copy link
Sponsor Member

100% agree; just take care of it when you're back!

@JeffBezanson
Copy link
Sponsor Member Author

Tests passing again! Anybody know if these CircleCI failures are new?

@ararslan
Copy link
Member

Nope, not new.

@StefanKarpinski
Copy link
Sponsor Member

They're not new, but they're unrelated afaict. They're both remote worker exceptions and Linux builds pass on Travis, so I think you're in the clear here. Circle CI has been shot for the past week or more.

@StefanKarpinski
Copy link
Sponsor Member

@JeffBezanson, you should probably merge this when you're ready – it's passing CI and we don't want to let it get any new conflicts!

@JeffBezanson
Copy link
Sponsor Member Author

🎉

maleadt added a commit to JuliaGPU/CUDAdrv.jl that referenced this pull request Jan 2, 2018
maleadt added a commit to maleadt/LLVM.jl that referenced this pull request Jan 2, 2018
maleadt added a commit to maleadt/LLVM.jl that referenced this pull request Jan 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind:deprecation This change introduces or involves a deprecation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Falling back to Base.convert during construction does not work for custom types with a single field
8 participants