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

restore v0.4 behavior on v0.5, fixes #880 #884

Merged
merged 1 commit into from
Aug 25, 2016

Conversation

tlnagy
Copy link
Member

@tlnagy tlnagy commented Aug 24, 2016

also add test for histogram with density=true

@coveralls
Copy link

coveralls commented Aug 24, 2016

Coverage Status

Coverage increased (+0.01%) to 65.451% when pulling f3ba121 on tlnagy:pull-request/f3ba1217 into 4a36837 on dcjones:master.

@@ -327,7 +327,7 @@ function apply_statistic(stat::HistogramStatistic,
x_min = Gadfly.concrete_minimum(values)
span = x_max - x_min
binwidth = span / d
bincounts ./= sum(bincounts) * binwidth
bincounts = bincounts ./ sum(bincounts) * binwidth
Copy link
Collaborator

@shashi shashi Aug 24, 2016

Choose a reason for hiding this comment

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

I thought this was safe. See #864

There's one more occurrence of this same line in this file. Does that work OK?

Copy link
Member Author

Choose a reason for hiding this comment

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

It's not. This line causes an InexactError in the case that binwidth is a float. bincounts is always an integer array and with the new meaning of ./= on v0.5 we are trying to do an in-place update of integer array using floats causing a type coercion error, i.e. the InexactError.

julia v0.4:

julia> a = [1,2,3]
3-element Array{Int64,1}:
 1
 2
 3

julia> a ./= 2.0
3-element Array{Float64,1}:
 0.5
 1.0
 1.5

julia v0.5-rc3

julia> a = [1,2,3]
3-element Array{Int64,1}:
 1
 2
 3

julia> a ./= 2.0
ERROR: InexactError()
 in copy!(::Base.LinearFast, ::Array{Int64,1}, ::Base.LinearFast, ::Array{Float64,1}) at ./abstractarray.jl:559
 in broadcast!(::Base.#identity, ::Array{Int64,1}, ::Array{Float64,1}) at ./broadcast.jl:24

Copy link
Collaborator

Choose a reason for hiding this comment

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

good detective work!

@stevengj pinging you to let you know about this.

Copy link
Member Author

Choose a reason for hiding this comment

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

I think that is the intended behavior.

Choose a reason for hiding this comment

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

Yes, that is the intended behavior.

Choose a reason for hiding this comment

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

(In-place, fused vectorized operations will be a key feature in Julia 0.6. The fact that it catches a type instability is a bonus. 😉)

Choose a reason for hiding this comment

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

Note that your new 0.4-style code is still type-unstable. If I were you, I'd use a different variable name (binmean?) for the normalized bincounts.

Copy link
Member Author

Choose a reason for hiding this comment

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

Note that your new 0.4-style code is still type-unstable.

All of Gadfly is type-unstable 😂 haha.

If I were you, I'd use a different variable name (binmean?) for the normalized bincounts.

Why is having a new variable better? binmean will still sometimes be an Int sometimes a Float64.

Copy link

@stevengj stevengj Aug 25, 2016

Choose a reason for hiding this comment

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

No, I mean do binmean = bincounts ./ sum(bincounts) .* binwidth. Then bincounts is always an array of integers, and binmean is always an array of floats. In subsequent lines, work with binmean.

(I realize that it is probably not performance critical to be type-stable here, but it is better style in Julia to retain type stability if it is not too hard.)

Copy link
Member Author

Choose a reason for hiding this comment

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

Ah, I see what you mean.

also add test for histogram with density=true
@tlnagy
Copy link
Member Author

tlnagy commented Aug 24, 2016

I wasn't able to get the other ./= to break, but it looks like it is the same exact style of operation so it would probably be best to replace it. I'm going push that and squash.

@tlnagy tlnagy closed this Aug 24, 2016
@tlnagy tlnagy reopened this Aug 24, 2016
@tlnagy tlnagy closed this Aug 25, 2016
@tlnagy tlnagy reopened this Aug 25, 2016
@shashi
Copy link
Collaborator

shashi commented Aug 25, 2016

wow that build hasn't started in a good 4 hours.

@tlnagy
Copy link
Member Author

tlnagy commented Aug 25, 2016

Yeah, at least tests are passing on nightlies now that JuliaStats/KernelDensity.jl#36 was resolved.

Would it be possible to merge this? Tests pass on Linux on Travis and they pass on my local OS X machine. It would be nice for #879

@tkelman
Copy link
Contributor

tkelman commented Aug 25, 2016

@tlnagy
Copy link
Member Author

tlnagy commented Aug 25, 2016

Thanks @tkelman! That explains why Documenter.jl tests were stalling on OS X too. Hopefully travis gets that back up and running soon.

@coveralls
Copy link

coveralls commented Aug 25, 2016

Coverage Status

Coverage increased (+0.2%) to 65.67% when pulling b9e8975 on tlnagy:pull-request/f3ba1217 into 07e0c9f on dcjones:master.

@coveralls
Copy link

Coverage Status

Coverage remained the same at 65.451% when pulling b9e8975 on tlnagy:pull-request/f3ba1217 into 07e0c9f on dcjones:master.

@shashi shashi closed this Aug 25, 2016
@shashi shashi reopened this Aug 25, 2016
@coveralls
Copy link

coveralls commented Aug 25, 2016

Coverage Status

Coverage increased (+0.1%) to 65.597% when pulling b9e8975 on tlnagy:pull-request/f3ba1217 into 07e0c9f on dcjones:master.

@shashi shashi merged commit f6183ac into GiovineItalia:master Aug 25, 2016
@coveralls
Copy link

coveralls commented Aug 25, 2016

Coverage Status

Coverage increased (+0.2%) to 65.603% when pulling b9e8975 on tlnagy:pull-request/f3ba1217 into 07e0c9f on dcjones:master.

@tlnagy tlnagy deleted the pull-request/f3ba1217 branch August 25, 2016 18:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants