Skip to content

Commit

Permalink
address dask rounding issue #136
Browse files Browse the repository at this point in the history
  • Loading branch information
jangorecki committed Feb 23, 2020
1 parent 04a8804 commit 24c6586
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion _report/report.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,13 @@ clean_questions = function(q) {
model_time = function(d) {
# chk tolerance for cudf disabled as of now: https://github.com/rapidsai/cudf/issues/2494
#d[!is.na(chk) & solution=="cudf", .(unq_chk=paste(unique(chk), collapse=","), unqn_chk=uniqueN(chk)), .(task, solution, data, question)][unqn_chk>1L]
# as well for dask due to #136
#d[!is.na(chk) & solution=="dask", .(unq_chk=paste(unique(chk), collapse=","), unqn_chk=uniqueN(chk)), .(task, solution, data, question)][unqn_chk>1L]
if (nrow(
d[!is.na(chk) & solution!="cudf",
d[!is.na(chk) & (
solution!="cudf" &
solution!="dask"
),
.(unqn_chk=uniqueN(chk)), .(task, solution, data, question)][unqn_chk>1L]
))
stop("Value of 'chk' varies for different runs for single solution+question")
Expand Down

0 comments on commit 24c6586

Please sign in to comment.