-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Labels
performanceMust go fasterMust go fasterregressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version
Description
On 0.4:
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.4.7-pre+1 (2016-06-19 17:17 UTC)
_/ |\__'_|_|_|\__'_| | Commit 57d0834* (3 days old release-0.4)
|__/ | x86_64-apple-darwin15.5.0
julia> include("/Users/ericdavies/.julia/v0.4/Timezones/deps/build.jl")
INFO: Downloading latest tz database
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 306k 100 306k 0 0 125k 0 0:00:02 0:00:02 --:--:-- 126k
INFO: Extracting tz database archive
x africa
x antarctica
x asia
x australasia
x europe
x northamerica
x southamerica
INFO: Converting tz database into TimeZone data
INFO: Successfully processed TimeZone data
julia> @time compile(TZDATA_DIR, COMPILED_DIR)
10.541140 seconds (2.66 M allocations: 132.962 MB, 0.44% gc time)On 0.5:
_
_ _ _(_)_ | A fresh approach to technical computing
(_) | (_) (_) | Documentation: http://docs.julialang.org
_ _ _| |_ __ _ | Type "?help" for help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.5.0-dev+4850 (2016-06-18 03:25 UTC)
_/ |\__'_|_|_|\__'_| | Commit 9ae4520* (5 days old master)
|__/ | x86_64-apple-darwin15.5.0
julia> include("/Users/ericdavies/.julia/v0.5/Timezones/deps/build.jl")
INFO: Downloading latest tz database
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 306k 100 306k 0 0 120k 0 0:00:02 0:00:02 --:--:-- 120k
INFO: Extracting tz database archive
x africa
x antarctica
x asia
x australasia
x europe
x northamerica
x southamerica
INFO: Converting tz database into TimeZone data
INFO: Successfully processed TimeZone data
julia> @time compile(TZDATA_DIR, COMPILED_DIR)
210.887527 seconds (10.10 M allocations: 496.789 MB, 0.21% gc time)
Unfortunately I cannot seem to run a @profile (Julia hangs and can't be SIGINTd) in either version of Julia on this call. I seem to remember the regression being related to codegen/inference when running profiles previously.
This is the same version of the code (master) but this has been the case for previous versions.
Metadata
Metadata
Assignees
Labels
performanceMust go fasterMust go fasterregressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version