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
# Test case created directly using the atime code below (not adapted from any other benchmark), based on the PR Removes unnecessary data.table call from as.data.table.array https://github.com/Rdatatable/data.table/pull/7010
255
255
"as.data.table.array improved in #7010"=atime::atime_test(
256
+
N=1:5,
256
257
setup= {
257
-
dims=c(50, 50, 300, 10)
258
-
arr=array(1:prod(dims), dim=dims)
258
+
dims=N* c(10L, 10L, 60L, 2L)
259
+
arr=array(seq_len(prod(dims)), dim=dims)
259
260
},
260
-
expr=data.table:::as.data.table(arr),
261
+
expr=data.table::as.data.table(arr),
261
262
Slow="73d79edf8ff8c55163e90631072192301056e336", # Parent of the first commit https://github.com/Rdatatable/data.table/tree/73d79edf8ff8c55163e90631072192301056e336
262
263
Fast="8397dc3c993b61a07a81c786ca68c22bc589befc"), # Merge commit of the PR (https://github.com/Rdatatable/data.table/pull/5054) that fixes the issue
0 commit comments