Skip to content

Commit

Permalink
PA Migration: Update docs (#21)
Browse files Browse the repository at this point in the history
* PA Migration: Doc updates and add License
  • Loading branch information
fpetrini15 authored Aug 6, 2024
1 parent 7ced23f commit f5cabf8
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 8 deletions.
28 changes: 28 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
10 changes: 5 additions & 5 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <model>
perf_analyzer/src/perf-analyzer-build/perf_analyzer -m <model>
```

- To enable
Expand Down
4 changes: 2 additions & 2 deletions genai-perf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

</details>
Expand Down
1 change: 0 additions & 1 deletion genai-perf/tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
[
Expand Down

0 comments on commit f5cabf8

Please sign in to comment.