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
I can't necessarily reproduce the issue with ease, and this is for a project I can't share, but I'm running into this error while running make:
Errorin FUN(X[[i]], ...) :size>0LisnotTRUE
This seems to occur after make finishes compiling a dynamic target. Afterwards, the error above occurs.
I've experimented with this a couple times and have found that:
the targets are successfully created and I can read them in w/ loadd or readd
if I run make again, subsequent dependent targets are kicked off and in the process of being created, although the same error above occurs for dynamic targets
if i keep repeating make, eventually, I only get the error described above.
Unfortunately, the error persists after numerous attempts running clean(), clean(destroy=TRUE), and even re-installing drake. I have also attempted to force targets to be lists via target(..., subtarget_list = TRUE)
After some more debugging, it turns out that this is due to problematic subsequent dynamic targets where one of the inputs is an empty list and you're using cross
I am closing this because it's not a bug, although a more useful error message would be helpful. For example, telling me that the error came from drake and not some other procedure in my program.
I can't necessarily reproduce the issue with ease, and this is for a project I can't share, but I'm running into this error while running
make
:This seems to occur after
make
finishes compiling a dynamic target. Afterwards, the error above occurs.I've experimented with this a couple times and have found that:
loadd
orreadd
make
again, subsequent dependent targets are kicked off and in the process of being created, although the same error above occurs for dynamic targetsmake
, eventually, I only get the error described above.Unfortunately, the error persists after numerous attempts running
clean()
,clean(destroy=TRUE)
, and even re-installing drake. I have also attempted to force targets to be lists viatarget(..., subtarget_list = TRUE)
Here's the traceback()
And here's the
sessionInfo()
The text was updated successfully, but these errors were encountered: