Skip to content

Latest commit

 

History

History
54 lines (47 loc) · 2.47 KB

README.md

File metadata and controls

54 lines (47 loc) · 2.47 KB

License

Triton Inference Server Square Backend

An simple Triton backend used for testing. You can learn more about backends in the backend repo. Ask questions or report problems in the main Triton issues page.

Use cmake to build and install in a local directory.

$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX:PATH=`pwd`/install ..
$ make install

The following required Triton repositories will be pulled and used in the build. By default the "main" branch/tag will be used for each repo but the listed CMake argument can be used to override.

  • triton-inference-server/backend: -DTRITON_BACKEND_REPO_TAG=[tag]
  • triton-inference-server/core: -DTRITON_CORE_REPO_TAG=[tag]
  • triton-inference-server/common: -DTRITON_COMMON_REPO_TAG=[tag]