Add option to give nvcc extra arguments

This commit is contained in:
Cosmin Ștefan Ciocan
2024-01-23 22:53:47 +00:00
parent 5cd225851b
commit 881c67f5f1
2 changed files with 15 additions and 13 deletions
+1
View File
@@ -19,6 +19,7 @@ def get_parser_cuda() -> argparse.ArgumentParser:
parser.add_argument("-t", "--timeit", action="store_true")
parser.add_argument("-p", "--profile", action="store_true")
parser.add_argument("-a", "--profiler-args", type=str, default="")
parser.add_argument("-c", "--compiler-args", type=str, default="")
return parser