You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slow="548410d23dd74b625e8ea9aeb1a5d2e9dddd2927", # Parent of the first commit in the PR (https://github.com/Rdatatable/data.table/commit/548410d23dd74b625e8ea9aeb1a5d2e9dddd2927)
287
287
Fast="c0b32a60466bed0e63420ec105bc75c34590865e"), # Commit in the PR (https://github.com/Rdatatable/data.table/pull/7144/commits) that uses a much faster implementation
288
288
289
+
"GForce aggregation (benchmark across # rows)"=atime::atime_test(
290
+
setup= {
291
+
set.seed(34893)
292
+
DT= data.table(grp= sample.int(10L, N, TRUE), v=rnorm(N), i=sample(N), vna=rnorm(N))
`Status quo`="8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0"), # Parent of the first commit in the PR (https://github.com/Rdatatable/data.table/commit/8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0)
297
+
298
+
"GForce aggregation (benchmark across # groups)"=atime::atime_test(
299
+
setup= {
300
+
set.seed(34893)
301
+
DT= data.table(grp= sample.int(1e7, N, TRUE), v=rnorm(1e7), i=sample(1e7))
`Status quo`="8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0"), # Parent of the first commit in the PR (https://github.com/Rdatatable/data.table/commit/8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0)
305
+
306
+
"Serial value setting with :="=atime::atime_test(
307
+
setup= {
308
+
set.seed(34893)
309
+
DT= data.table(i=N:1)
310
+
},
311
+
expr=for (iiin seq_len(nrow(DT))) data.table:::`[.data.table`(DT, ii, `:=`(i, ii)),
312
+
`Status quo`="8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0"), # Parent of the first commit in the PR (https://github.com/Rdatatable/data.table/commit/8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0)
313
+
314
+
"Serial value setting with set"=atime::atime_test(
315
+
setup= {
316
+
set.seed(34893)
317
+
DT= data.table(i=N:1)
318
+
},
319
+
expr=for (iiin seq_len(nrow(DT))) set(DT, ii, "i", ii),
320
+
`Status quo`="8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0") # Parent of the first commit in the PR (https://github.com/Rdatatable/data.table/commit/8f5ffa8bb8f3f5861020a6e32f897c30e42eeab0)
0 commit comments