Added support for CUDA calls in sequence diagrams (#263)
This commit is contained in:
@@ -60,7 +60,8 @@ with open(r'tests/test_cases.yaml') as f:
|
||||
tc.write("## Source code\n")
|
||||
for root, dirs, files in os.walk(f'tests/{name}/'):
|
||||
for source_file in files:
|
||||
if source_file.endswith((".h", ".cc", ".c", ".cppm")):
|
||||
if source_file.endswith((
|
||||
".h", ".cc", ".c", ".cppm", ".cu", ".cuh")):
|
||||
if source_file == "test_case.h":
|
||||
continue
|
||||
file_path = os.path.join(root, source_file)
|
||||
|
||||
Reference in New Issue
Block a user