Open PierreCarceller opened 3 weeks ago
Hi @PierreCarceller,
I believe the issue lies in the tensorflow2
used instead of tensorflow
in --extra-backend-cmake-arg=tensorflow2:TRITON_TENSORFLOW_INSTALL_EXTRA_DEPS=ON
When you run --backend tensorflow2
(we internally translate that to tensorflow
), but the --extra-backend-cmake-arg
looks like it doesn't have the same logic to handle the user providing "tensorflow2", so you should use tensorflow
instead of tensorflow2
.
Description I want to build a docker image of triton in CPU-ONLY mode. I followed this section of the doc to get there:
I executed :``` bash git clone https://github.com/triton-inference-server/server.git cd server git checkout v2.50.0
python3 build.py --backend tensorflow2 --repoagent checksum --container-version 24.09 -v --extra-backend-cmake-arg=tensorflow2:TRITON_TENSORFLOW_INSTALL_EXTRA_DEPS=ON
But if I change the order a little like this it works :
Did I make a mistake or did the doc give the wrong information?