-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve attribution of delayed invalidations (#261)
Improves on #260 by collecting all callees and callers and then doing the attribution at once (finding at least one identifiable callee). This also adds the test's Manifest.toml, which was missing on #260 but not detected because the necessary Julia version had not yet hit nightly.
- Loading branch information
Showing
3 changed files
with
100 additions
and
21 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This file is machine-generated - editing it directly is not advised | ||
|
||
julia_version = "1.6.3-pre.1" | ||
manifest_format = "2.0" | ||
|
||
[[deps.StaleA]] | ||
path = "StaleA" | ||
uuid = "daf834c3-b832-4a67-a95b-01ec1ffe9b4d" | ||
version = "0.1.0" | ||
|
||
[[deps.StaleB]] | ||
deps = ["StaleA", "StaleC"] | ||
path = "StaleB" | ||
uuid = "af730a9e-e668-4d07-a0f0-de54196c2067" | ||
version = "0.1.0" | ||
|
||
[[deps.StaleC]] | ||
deps = ["StaleA"] | ||
path = "StaleC" | ||
uuid = "f6b5ece7-60fa-49fc-ba7e-b783050e37f1" | ||
version = "0.1.0" |