-
Notifications
You must be signed in to change notification settings - Fork 0
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
#5636 #2
Comments
first of all I don't think this issue should "compare the performance of data.table and repair_sum2one" because data.table is being used to set the value which is computed by repair_sum2one. In this issue I think you should compare the current version with a past version, or with a PR which fixes this issue. atime.list <- atime::atime(
N = nrow(newConfigurations),
setup = {
parameters <- list(types = c(p1 = "r", p2 = "r", p3 = "r", dummy = "c"),
digits = 4)
n <- 10000
newConfigurations <- data.table(p1 = runif(n), p2 = runif(n), p3 = runif(n),
dummy = sample(c("d1", "d2"), n, replace = TRUE))
}, instead, you should specify a range on log scale, like as.integer(10^seq(1, 4, by=0.5)) etc. |
@tdhock well noted let me get on that now |
please try comparing current data.table master with Rdatatable/data.table#4488 which is apparently a fix for this issue. |
sure, on it |
Rdatatable/data.table#5636
This is a performance regression I want to reproduce, is trying to compare the performance of data.table and repair_sum2one.
I want to draw a graph showing the time each of the two took and compare, since the author stated that repair_sum2one is 5* faster than data.table
my result gives me a plot with just one point.
@tdhock kindly assist.
The text was updated successfully, but these errors were encountered: