supertone-inc / onnxruntime-build

A build project for ONNX Runtime
29 stars 13 forks source link

Telemetry feature of onnxruntime #1

Closed raphaelmenges closed 1 year ago

raphaelmenges commented 1 year ago

Hello 👋

According to the official documentation, onnxruntime may send telemetry to Microsoft. This feature seems to be activated by default for official Windows builds and may be activated soon for other targets as well. To my understanding, telemetry is disabled by default for custom builds of onnxruntime. How is it for the builds from this repository?

krazijames commented 1 year ago

https://github.com/microsoft/onnxruntime/blob/baeece44ba075009c6bfe95891a8c1b3d4571cb3/cmake/CMakeLists.txt#L124 It seems to be disabled as the default value for onnxruntime_USE_TELEMETRY is set to OFF. 😄

raphaelmenges commented 1 year ago

Nice! Thanks for the swift reply.