diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-09-02 17:19:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 16:19:35 +0100 |
commit | 21109e19834ad852e54daef7c7729b535e2241ba (patch) | |
tree | 31b1fcee81b502970e04203b10447fad5c029f2a /candle-pyo3/test.py | |
parent | ad796eb4be9877712c0034d291a082cee1fd2dec (diff) | |
download | candle-21109e19834ad852e54daef7c7729b535e2241ba.tar.gz candle-21109e19834ad852e54daef7c7729b535e2241ba.tar.bz2 candle-21109e19834ad852e54daef7c7729b535e2241ba.zip |
Recommend using maturin. (#717)
Diffstat (limited to 'candle-pyo3/test.py')
-rw-r--r-- | candle-pyo3/test.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/candle-pyo3/test.py b/candle-pyo3/test.py index f76dee9b..7f24b49d 100644 --- a/candle-pyo3/test.py +++ b/candle-pyo3/test.py @@ -1,18 +1,3 @@ -import os -import sys - -# The "import candle" statement below works if there is a "candle.so" file in sys.path. -# Here we check for shared libraries that can be used in the build directory. -BUILD_DIR = "./target/release-with-debug" -so_file = BUILD_DIR + "/candle.so" -if os.path.islink(so_file): os.remove(so_file) -for lib_file in ["libcandle.dylib", "libcandle.so"]: - lib_file_ = BUILD_DIR + "/" + lib_file - if os.path.isfile(lib_file_): - os.symlink(lib_file, so_file) - sys.path.insert(0, BUILD_DIR) - break - import candle t = candle.Tensor(42.0) |