Files
Gopesh Bhardwaj e2c30bd438 adding pandas and pytest to rquirements.txt (#748)
* adding pandas and pytest to rquirements.txt

* setting up requrements.txt

* Update requirements

- formatting packages
- remove packages not directly used by rocprofiler-sdk

* Update cmake formatting, linting, and options

- if BUILD_CI -> force BUILD_DEVELOPER and BUILD_WERROR
- support python installed clang-format and python installed clang-tidy

* Update build.sh

- split into install-deps.sh and install-apt-deps.sh

* Improve code coverage

---------

Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>

[ROCm/rocprofiler-sdk commit: e2d8ccad4b]
2024-04-09 07:24:40 -05:00

9 wiersze
297 B
Bash
Executable File

#!/bin/bash -e
ROCPROFILER_SDK_PATH=$(cd $(dirname ${BASH_SOURCE[0]})/../.. && pwd)
# echo "ROCPROFILER_SDK_PATH: ${ROCPROFILER_SDK_PATH}"
echo -e "Installing dependencies from: ${ROCPROFILER_SDK_PATH}/requirements.txt"
python3 -m pip install --user -r ${ROCPROFILER_SDK_PATH}/requirements.txt