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
cuda.core: fix int(condition) call sites missed when removing GraphCondition.__int__ (#1945)
The conditional builder methods (if_then, if_else, switch, while_loop)
were still calling int(condition) on the GraphCondition object after
__int__ was removed in the prior commit. Use the public .handle property
instead, which mirrors the kernel argument handler fix.
This was caught by CI: 26 conditional graph tests failed with
TypeError in cuda/core/graph/_graph_builder.pyx:549.
Made-with: Cursor
0 commit comments