-
Notifications
You must be signed in to change notification settings - Fork 378
Fix build errors #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Fix build errors #145
Conversation
3812aed
to
124866d
Compare
The build failures are expected. I will refactor the pipelines to let them fetch bits from our ORT-Nightly feed to fix the issues. |
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/cpu" | ||
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/cuda" | ||
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/dnnl" | ||
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/nuphar" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nuphar is deleted from the latest ORT.
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/tensorrt" | ||
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/dml" | ||
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/providers/migraphx" | ||
"${ONNXRUNTIME_ROOTDIR}/include/onnxruntime/core/session") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, it means we need to list all EPs here? Why?
If I understood correctly, ONNXRUNTIME_ROOTDIR is where ORT is installed, not the source folder. At the installation step, should we already put all the EP specific header files into one place?
Fixes [Build] Onnxruntime C++ samples do not build off Cmake installed onnxruntime onnxruntime#13058