File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
features/feature_case/thrust Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 14
14
#include < thrust/gather.h>
15
15
#include < thrust/scatter.h>
16
16
#include " report.h"
17
+ // for cuda 12.0
18
+ #include < thrust/partition.h>
19
+ #include < thrust/unique.h>
20
+
17
21
18
22
struct greater_than_zero
19
23
{
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ def is_platform_supported(platform_rule_list):
272
272
273
273
def is_option_supported (option_rule_list ):
274
274
for option_rule in option_rule_list :
275
- if option_rule .exclude_option in test_config .test_option and not option_rule .not_double_type_feature :
275
+ if option_rule .exclude_option != "" and option_rule . exclude_option in test_config .test_option and not option_rule .not_double_type_feature :
276
276
return False
277
277
elif option_rule .only_option not in test_config .test_option :
278
278
return False
@@ -514,4 +514,4 @@ def main():
514
514
print ("----------------Test pass-----------------" )
515
515
516
516
if __name__ == "__main__" :
517
- main ()
517
+ main ()
You can’t perform that action at this time.
0 commit comments