diff options
Diffstat (limited to 'src/__init__.py')
-rw-r--r-- | src/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..865d612 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,6 @@ +import os + +dir = os.path.split(os.path.realpath(__file__))[0] + +kernel = open(dir + '/kernel.cu').read() +daq = open(dir + '/daq.cu').read() |