Home > Software engineering >  Cannot find the definition of a constant
Cannot find the definition of a constant

Time:08-17

I am trying to add a new accelerator to the Nvidia Triton inference server.

One of the last thing I need to do it add a new constant like this one (kOpenVINOExecutionAccelerator) but for some reason I cannot find where it is defined:

https://github.com/triton-inference-server/onnxruntime_backend/search?q=kOpenVINOExecutionAccelerator

I'm quite new to cmake, is this some kind of cmake trick?

CodePudding user response:

It's in the Triton Inference Server Backend here.

  • Related