Skip to content
Prev Previous commit
Next Next commit
fix header
  • Loading branch information
thevishalagarwal committed Sep 4, 2025
commit cd8f6b3950f70b793c2b44cc87ffd51a918cb57b
12 changes: 5 additions & 7 deletions docs/build/eps.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,21 +187,19 @@ git clone https://github.com/microsoft/onnxruntime.git
cd onnxruntime
```

### C/C++ APIs

#### Windows
### Windows

```powershell
.\build.bat --config Release --build_dir build --parallel --use_nv_tensorrt_rtx --tensorrt_rtx_home "path\to\tensorrt-rtx" --cuda_home "path\to\cuda\home" --cmake_generator "Visual Studio 17 2022" --build_shared_lib --skip_tests --build --update --use_vcpkg
```

#### Linux
### Linux

```sh
./build.sh --config Release --build_dir build --parallel --use_nv_tensorrt_rtx --tensorrt_rtx_home "path/to/tensorrt-rtx" --cuda_home "path/to/cuda/home" --build_shared_lib --skip_tests --build --update
```

#### Run unit test
### Run unit test
```powershell
.\build\Release\Release\onnxruntime_test_all.exe --gtest_filter=*NvExecutionProviderTest.*
```
Expand All @@ -215,8 +213,8 @@ cd onnxruntime
# install
pip install "build\Release\Release\dist\onnxruntime-1.23.0-cp312-cp312-win_amd64.whl"
```
{: .note }
TensorRT-RTX .dll or .so are in `PATH` or in the same folder as the application

> NOTE: TensorRT-RTX .dll or .so are in `PATH` or in the same folder as the application

---

Expand Down
3 changes: 1 addition & 2 deletions docs/execution-providers/TensorRTRTX-ExecutionProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,7 @@ session_options.AppendExecutionProvider(onnxruntime::kNvTensorRTRTXExecutionProv



{: .note }
For bool type options, assign them with **True**/**False** in python, or **1**/**0** in C++.
> NOTE: For bool type options, assign them with **True**/**False** in python, or **1**/**0** in C++.


#### Profile shape options
Expand Down
Loading