OSError: firmware/myproject-a3e5B04f.so: cannot open shared object file: No such file or directory
Created by: Duchstf
Hello, I'm trying to convert a simple Conv1D model. The conversion works just fine, but this happens when I try to compile the model:
---------------------------------------------------------------------------
OSError Traceback (most recent call last)
<ipython-input-2-4f5198b99864> in <module>
7 output_dir='hls4ml_prj')
8
----> 9 hls_model.compile()
/data/dhoang/miniconda3/envs/b_tag/lib/python3.6/site-packages/hls4ml/model/hls_model.py in compile(self)
474 dlclose_func.restype = ctypes.c_int
475 dlclose_func(self._top_function_lib._handle)
--> 476 self._top_function_lib = ctypes.cdll.LoadLibrary(lib_name)
477 finally:
478 os.chdir(curr_dir)
/data/dhoang/miniconda3/envs/b_tag/lib/python3.6/ctypes/__init__.py in LoadLibrary(self, name)
424
425 def LoadLibrary(self, name):
--> 426 return self._dlltype(name)
427
428 cdll = LibraryLoader(CDLL)
/data/dhoang/miniconda3/envs/b_tag/lib/python3.6/ctypes/__init__.py in __init__(self, name, mode, handle, use_errno, use_last_error)
346
347 if handle is None:
--> 348 self._handle = _dlopen(self._name, mode)
349 else:
350 self._handle = handle
OSError: firmware/myproject-a3e5B04f.so: cannot open shared object file: No such file or directory
I'm wondering if anyone have suggestions as to what to try. I am doing this on correlator2 within a Conda environment.