Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit 0ad0bb0

Browse files
committed
Move Test Troubleshooting text
1 parent 098b758 commit 0ad0bb0

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

OnnxStack.IntegrationTests/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Troubleshooting
2+
3+
- I'm running on linux but it's not working citing:`The ONNX Runtime extensions library was not found`?
4+
- It's having a problem loading `libortextensions.so`
5+
- From the project root run `find -name "libortextensions.so"` to locate that file
6+
- Then run `ldd libortextensions.so` against it to see what dependencies it needs versus what your system has.
7+
- It has a dependency on SSL 1.1 which was removed from Ubuntu based OSes and causes this error.
8+
- It can be remedied by manually installing the dependency.
9+
- See: https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory
10+
- I've installed `Microsoft.ML.OnnxRuntime` and `Microsoft.ML.OnnxRuntime.Gpu` into my project and set the execution provider to `Cuda`, but it's complaining it can't find an entry point for CUDA?
11+
- `System.EntryPointNotFoundException : Unable to find an entry point named 'OrtSessionOptionsAppendExecutionProvider_CUDA' in shared library 'onnxruntime'`
12+
- Adding both `Microsoft.ML.OnnxRuntime` AND `Microsoft.ML.OnnxRuntime.Gpu` at the same time causes this.
13+
- Remove `Microsoft.ML.OnnxRuntime` and try again.
14+
- I'm trying to run via CUDA execution provider but it's complaining about missing `libcublaslt11`, `libcublas11`, or `libcudnn8`?
15+
- Aside from just the NVIDIA Drivers you also need to install CUDA, and cuDNN.

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -182,22 +182,6 @@ Other `Microsoft.ML.OnnxRuntime.*` executors like `Cuda` may work but are untest
182182

183183
`DirectML` > 10GB VRAM
184184

185-
## Troubleshooting
186-
187-
- I'm running on linux but it's not working citing:`The ONNX Runtime extensions library was not found`?
188-
- It's having a problem loading `libortextensions.so`
189-
- From the project root run `find -name "libortextensions.so"` to locate that file
190-
- Then run `ldd libortextensions.so` against it to see what dependencies it needs versus what your system has.
191-
- It has a dependency on SSL 1.1 which was removed from Ubuntu based OSes and causes this error.
192-
- It can be remedied by manually installing the dependency.
193-
- See: https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory
194-
- I've installed `Microsoft.ML.OnnxRuntime` and `Microsoft.ML.OnnxRuntime.Gpu` into my project and set the execution provider to `Cuda`, but it's complaining it can't find an entry point for CUDA?
195-
- `System.EntryPointNotFoundException : Unable to find an entry point named 'OrtSessionOptionsAppendExecutionProvider_CUDA' in shared library 'onnxruntime'`
196-
- Adding both `Microsoft.ML.OnnxRuntime` AND `Microsoft.ML.OnnxRuntime.Gpu` at the same time causes this.
197-
- Remove `Microsoft.ML.OnnxRuntime` and try again.
198-
- I'm trying to run via CUDA execution provider but it's complaining about missing `libcublaslt11`, `libcublas11`, or `libcudnn8`?
199-
- Aside from just the NVIDIA Drivers you also need to install CUDA, and cuDNN.
200-
201185
## Contribution
202186

203187
We welcome contributions to OnnxStack! If you have any ideas, bug reports, or improvements, feel free to open an issue or submit a pull request.

0 commit comments

Comments
 (0)