-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Performance check | ||
|
||
on: | ||
pull_request: | ||
|
||
push: | ||
branches: | ||
- main | ||
- 'release-*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run_profiler: | ||
|
||
- name: Run Profiler | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Run all tests | ||
run: | | ||
python -m venv profiler_env | ||
source profiler_env/bin/activate | ||
pip install -e ./profiler | ||
./tools/perf_checker/perf_checker.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from time import perf_counter | ||
|
||
import cellxgene_census | ||
|
||
import tiledbsoma as soma | ||
|
||
census_S3_latest = dict(census_version="2023-10-23") | ||
|
||
|
||
def main(): | ||
t1 = perf_counter() | ||
with cellxgene_census.open_soma(**census_S3_latest) as census: | ||
with census["census_data"]["homo_sapiens"].axis_query( | ||
measurement_name="RNA", | ||
obs_query=soma.AxisQuery(value_filter="""tissue_general == 'eye'"""), | ||
) as query: | ||
query.to_anndata(X_name="raw") | ||
t2 = perf_counter() | ||
print(f"End to end time {t2 - t1}") | ||
|
||
|
||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.sh | ||
#!/bin/sh | ||
set -euox pipefail | ||
|
||
python -m venv perf | ||
source perf/bin/activate | ||
pip install gitpython | ||
pip install psutil | ||
pip install comacore | ||
pip install profiler | ||
pip install tiledbsoma | ||
pip install cellxgene_census | ||
|
||
|
||
sudo apt install -y python3.8-venv | ||
sudo wget https://s3.amazonaws.com/mountpoint-s3-release/latest/x86_64/mount-s3.deb | ||
sudo apt install -y ./mount-s3.deb | ||
mkdir ./mount-s3 | ||
mkdir ./s3_cache | ||
mount-s3 census.profiler.tests ./mount-s3 --cache ./s3_cache --metadata-ttl 300 | ||
|
||
# new benchmarks must be added to this list | ||
declare -a benchmarks=("benchmark1.py") | ||
|
||
for (( i=0; i<${benchmarks}; i++ )) | ||
do | ||
python -m profiler "python ${benchmarks[$i]}" -t gtime | ||
python ./profile_report.py ${benchmarks[$i]} | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import data | ||
import argparse | ||
|
||
parser = argparse.ArgumentParser() | ||
parser.add_argument("benchmark", type=str) | ||
args = parser.parse_args() | ||
|
||
# Processes the set of previously written logs | ||
|
||
threshold = 1.10 # Percent difference | ||
|
||
db = data.FileBasedProfileDB("./mount-s3") | ||
actual_max_ts = 0 | ||
dt = db.find(f"python {parser.benchmark}") | ||
last_two = dt[-2:] | ||
c = 0 | ||
|
||
for s in last_two: | ||
new_db = sorted(dt, key=lambda ProfileData: ProfileData.timestamp) | ||
|
||
L = [] | ||
L[0] = dt[0].user_time_sec + dt[0].elapsed_time | ||
L[1] = dt[1].user_time_sec + dt[1].elapsed_time | ||
for i in range(0, len(dt)): | ||
print(f"{i} dt[{i}].user_time_sec = {dt[i].user_time_sec} ts {dt[i].timestamp}") | ||
print(f"Prev = {L[0]} Curr = {L[1]}") | ||
|
||
if threshold * float(L[1]) < float(L[0]) or float(L[1]) > threshold * float(L[0]): | ||
raise SystemExit(f"Potential performance degradation detected {L[0]} va {L[1]}") | ||
print("No recent performance degradation detected") | ||
print( | ||
f"Prev TBD version = {dt[0].tiledbsoma_version} Curr TBD version = {dt[1].tiledbsoma_version}" | ||
) |