diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..627adbea --- /dev/null +++ b/LICENSE @@ -0,0 +1,28 @@ +BSD 3-Clause License + +Copyright (c) 2024, Triton Inference Server + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/docs/install.md b/docs/install.md index 5390dc00..28aa336b 100644 --- a/docs/install.md +++ b/docs/install.md @@ -82,15 +82,15 @@ apt update && apt install -y gpg wget && wget -O - https://apt.kitware.com/keys/ # install build/runtime dependencies apt update && apt install -y cmake-data=3.27.7* cmake=3.27.7* libcurl4-openssl-dev rapidjson-dev -rm -rf client ; git clone --depth 1 https://github.com/triton-inference-server/client +rm -rf perf_analyzer ; git clone --depth 1 https://github.com/triton-inference-server/perf_analyzer -mkdir client/build ; cd client/build +mkdir perf_analyzer/build ; cd perf_analyzer/build -cmake -DTRITON_ENABLE_PERF_ANALYZER=ON .. +cmake .. -make -j8 cc-clients +make -j8 perf-analyzer -cc-clients/perf_analyzer/perf_analyzer -m +perf_analyzer/src/perf-analyzer-build/perf_analyzer -m ``` - To enable diff --git a/genai-perf/README.md b/genai-perf/README.md index 68b0f216..617d58cf 100644 --- a/genai-perf/README.md +++ b/genai-perf/README.md @@ -105,9 +105,9 @@ You can also build Perf Analyzer [from source](../docs/install.md#build-from-sou ### Install GenAI-Perf from source ```bash -git clone https://github.com/triton-inference-server/client.git && cd client +git clone https://github.com/triton-inference-server/perf_analyzer.git && cd perf_analyzer -pip install -e . +pip install -e genai-perf ``` diff --git a/genai-perf/tests/test_cli.py b/genai-perf/tests/test_cli.py index b88a050e..dcf637ed 100644 --- a/genai-perf/tests/test_cli.py +++ b/genai-perf/tests/test_cli.py @@ -250,7 +250,6 @@ def test_non_file_flags_parsed(self, monkeypatch, arg, expected_attributes, caps for key, value in expected_attributes.items(): assert getattr(args, key) == value - @pytest.mark.parametrize( "models, expected_model_list, formatted_name", [