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
Due to #1802, if you use out=myblockoperator.domain_geometry().allocate(0) where myblockoperator is a BlockOperator of size (1,1) then out will be a DataContainer and not a BlockDataContainer.
If you then call myblockoperator.direct(something, out=out) you get an error because you try and call getitem on the data container out.
This leads to errors when you try and run PDHG or SPDHG on partitioned data with just one batch e.g.
Description
Due to #1802, if you use
out=myblockoperator.domain_geometry().allocate(0)
wheremyblockoperator
is a BlockOperator of size (1,1) then out will be a DataContainer and not a BlockDataContainer.If you then call
myblockoperator.direct(something, out=out)
you get an error because you try and callgetitem
on the data containerout
.This leads to errors when you try and run PDHG or SPDHG on partitioned data with just one batch e.g.
The text was updated successfully, but these errors were encountered: