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
Special cases like x = prod(A,x) require additional attention. There are checks in ViennaCL for this case, but they don't provide a unified behavior: Some create a temporary vector (good), others get stuck in asserts() (not so good). Some checks are overly restrictive when ranges are used.
The text was updated successfully, but these errors were encountered:
Checked the most common operations, a lot of the problems mentioned in the issue have been resolved with the introduction of the scheduler and op_executor. There are still a couple of corner cases left, but these are rather uncommon in practice. This is likely to be resolved with full scheduler integration, hence postponing to 1.6.0.
Special cases like x = prod(A,x) require additional attention. There are checks in ViennaCL for this case, but they don't provide a unified behavior: Some create a temporary vector (good), others get stuck in asserts() (not so good). Some checks are overly restrictive when ranges are used.
The text was updated successfully, but these errors were encountered: