diff options
author | Anthony LaTorre <telatorre@gmail.com> | 2011-05-23 19:33:02 -0400 |
---|---|---|
committer | Anthony LaTorre <telatorre@gmail.com> | 2011-05-23 19:33:02 -0400 |
commit | 36391a29dfb02a24e97b3ef9a3727201af415985 (patch) | |
tree | e1113c6aa310ba5f49c985b4fef0858b0d0f00d9 /src | |
parent | 37b1d85c9f61190f223ee0cc6893c75c6c5f88cb (diff) | |
download | chroma-36391a29dfb02a24e97b3ef9a3727201af415985.tar.gz chroma-36391a29dfb02a24e97b3ef9a3727201af415985.tar.bz2 chroma-36391a29dfb02a24e97b3ef9a3727201af415985.zip |
lbne model now imports python modules directly
Diffstat (limited to 'src')
-rw-r--r-- | src/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..d2958f1 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,5 @@ +import os + +dir = os.path.split(os.path.realpath(__file__))[0] + +kernel = open(dir + '/kernel.cu').read() |