Skip to content

Commit

Permalink
Merge pull request #33373 from JuliaLang/jn/profile-more-stats
Browse files Browse the repository at this point in the history
Profile: more formatting / information printing
  • Loading branch information
vtjnash authored Oct 1, 2019
2 parents 311b0b9 + 30647b6 commit 035acf4
Show file tree
Hide file tree
Showing 2 changed files with 157 additions and 81 deletions.
15 changes: 0 additions & 15 deletions base/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -466,21 +466,6 @@ function entry_path(path::String, name::String)::Union{Nothing,String}
return nothing # source not found
end

# given a project path (project directory or entry point)
# return the project file
function package_path_to_project_file(path::String)::Union{Nothing,String}
if !isdir(path)
dir = dirname(path)
basename(dir) == "src" || return nothing
path = dirname(dir)
end
for proj in project_names
project_file = joinpath(path, proj)
isfile_casesensitive(project_file) && return project_file
end
return nothing
end

## explicit project & manifest API ##

# find project file root or deps `name => uuid` mapping
Expand Down
Loading

2 comments on commit 035acf4

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

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

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

Please sign in to comment.