Skip to content

Commit c11101b

Browse files
committed
Print out the version used
1 parent c2e32f8 commit c11101b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

demos/cython/mandel_main.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,13 @@ def main(version='py'):
1616

1717
# choose pure Python or Cython version
1818
if version == 'py':
19+
print("Using pure Python")
1920
mandel_func = compute_mandel_py
20-
else:
21+
elif version == 'cyt':
22+
print("Using Cython")
2123
mandel_func = compute_mandel_cyt
24+
else:
25+
raise RuntimeError("Unknown version")
2226

2327
mandel_set, runtime = mandel_func(**kwargs)
2428
return mandel_set, runtime

0 commit comments

Comments
 (0)