Open
Conversation
added 2 commits
April 8, 2026 11:24
Generated via commit c9ebb95 Download link for the artifact containing the test results: ↓ atime-results.zip
|
Member
Author
|
I checked atime results before and after this PR, and they look consistent. The biggest difference is in this test, which is normal because old test code was starting at a custom N=1e3 whereas new test code uses the standard N=1e1 for this case (custom N code deleted). which I made using data from
library(data.table)
bench_dt <- data.table(test_code=c("old","new"))[, {
result_dir <- paste0("atime-results-",test_code)
tests.RData <- file.path(result_dir, "tests.RData")
load(tests.RData)
bench.dt[, .(Test, unit, N, empirical, expr.name)]
}, by=test_code]
library(ggplot2)
gg <- ggplot()+
geom_line(aes(
N, empirical, color=expr.name),
data=bench_dt)+
scale_color_manual(values=atime:::default.version.colors)+
facet_grid(unit ~ Test + test_code, scales="free", labeller=label_both)+
scale_x_log10()+
scale_y_log10()
png("atime-results.png", width=120, height=8, units="in", res=100)
print(gg)
dev.off() |
Member
Author
|
I updated https://github.com/Rdatatable/data.table/wiki/Performance-testing to mention
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Closes #7363
Change an atime historical commit from a commit inside a PR branch, to the merge commit of that PR, and deleted branches, in
data.tablecall from as.data.table.array #7019also some more general atime cleanup which should not affect test results: