We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 956b659 commit 3e3a099Copy full SHA for 3e3a099
python/tvm/topi/gpu/scan.py
@@ -40,6 +40,8 @@ def _can_use_scan_thrust(binop):
40
target = tvm.target.Target.current()
41
if target is None:
42
return False
43
+ if target.arch == "sm_60":
44
+ return False
45
return binop == tvm.tir.generic.add and any(
46
[
47
can_use_thrust(target, "tvm.contrib.thrust.sum_scan"),
0 commit comments