Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
39c2106
Added basic profiling
Vasilije1990 Dec 4, 2024
a935940
Added basic profiling
Vasilije1990 Dec 4, 2024
7e66d50
Added basic profiling
Vasilije1990 Dec 4, 2024
df7bbfe
Added basic profiling
Vasilije1990 Dec 4, 2024
d589255
Added basic profiling
Vasilije1990 Dec 4, 2024
94688ed
Added basic profiling
Vasilije1990 Dec 4, 2024
6171cd7
Added basic profiling
Vasilije1990 Dec 4, 2024
bba32aa
Added basic profiling
Vasilije1990 Dec 4, 2024
a904b8d
Added basic profiling
Vasilije1990 Dec 4, 2024
bdef152
Added basic profiling
Vasilije1990 Dec 4, 2024
e2539cd
Added basic profiling
Vasilije1990 Dec 4, 2024
6ab427e
Added basic profiling
Vasilije1990 Dec 4, 2024
fa60827
Added basic profiling
Vasilije1990 Dec 4, 2024
32ca751
Added basic profiling
Vasilije1990 Dec 4, 2024
d523f71
Added basic profiling
Vasilije1990 Dec 4, 2024
c2896f3
Added basic profiling
Vasilije1990 Dec 4, 2024
e178d38
Added basic profiling
Vasilije1990 Dec 4, 2024
21c7b8e
Bump release version
Vasilije1990 Dec 4, 2024
54b8844
Bump release version
Vasilije1990 Dec 4, 2024
692770c
Bump release version
Vasilije1990 Dec 4, 2024
2df1eb6
Bump release version
Vasilije1990 Dec 4, 2024
8d1936f
Bump release version
Vasilije1990 Dec 4, 2024
f37d96d
Bump release version
Vasilije1990 Dec 4, 2024
cc43a8c
Bump release version
Vasilije1990 Dec 4, 2024
cf51555
Bump release version
Vasilije1990 Dec 4, 2024
d2fccc1
Bump release version
Vasilije1990 Dec 4, 2024
a96daef
Bump release version
Vasilije1990 Dec 4, 2024
316f2f3
Merge branch 'main' into COG-698
Vasilije1990 Dec 5, 2024
0268df2
Merge branch 'main' into COG-698
borisarzentar Dec 6, 2024
ea879b2
Merge branch 'main' into COG-698
borisarzentar Dec 8, 2024
b397f9e
Merge branch 'main' into COG-698
borisarzentar Dec 9, 2024
c431e7c
Update profiling.yaml
Vasilije1990 Dec 10, 2024
5609bbc
removed issues
Vasilije1990 Dec 11, 2024
0e68019
fix
Vasilije1990 Dec 11, 2024
0f0e34e
Merge branch 'main' into COG-698
Vasilije1990 Dec 11, 2024
7cc5607
fix
Vasilije1990 Dec 11, 2024
4dac950
Merge remote-tracking branch 'origin/COG-698' into COG-698
Vasilije1990 Dec 11, 2024
9a9ea75
Fix neo4j
Vasilije1990 Dec 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added basic profiling
  • Loading branch information
Vasilije1990 committed Dec 4, 2024
commit c2896f3b5b29295ae25c9ad3323e154757edf84e
11 changes: 3 additions & 8 deletions .github/workflows/profiling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@ jobs:
- name: Install dependencies
run: |
poetry install --no-interaction --all-extras

# Install necessary dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install scalene requests
poetry add scalene requests


# Set environment variables for SHAs
Expand All @@ -55,7 +50,7 @@ jobs:
# Ensure the script is executable
chmod +x cognee/api/v1/cognify/code_graph_pipeline.py
# Run Scalene
scalene --json --outfile base_results.json cognee/api/v1/cognify/code_graph_pipeline.py
poetry run scalene --json --outfile base_results.json cognee/api/v1/cognify/code_graph_pipeline.py

# Run profiler on head branch
- name: Run profiler on head branch
Expand All @@ -69,7 +64,7 @@ jobs:
# Ensure the script is executable
chmod +x cognee/api/v1/cognify/code_graph_pipeline.py
# Run Scalene
scalene --json --outfile head_results.json cognee/api/v1/cognify/code_graph_pipeline.py
poetry run scalene --json --outfile head_results.json cognee/api/v1/cognify/code_graph_pipeline.py

# Compare profiling results
- name: Compare profiling results
Expand Down
Loading