Skip to content

Commit 356fcb7

Browse files
committed
Merge branch 'workflows' of github.com:lorenzotomada/devtools_scicomp_project_2025 into final_project
2 parents de4ec1d + e0cac27 commit 356fcb7

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@ on:
55
branches:
66
- main
77
- final_project
8-
- gpu_branch
98
- workflows
109

1110
pull_request:
1211
branches:
1312
- main
1413
- final_project
15-
- gpu_branch
16-
1714
jobs:
1815
test:
1916
name: Testing using pytest
@@ -31,6 +28,9 @@ jobs:
3128
run: |
3229
apt-get update && apt-get install -y python3.10-venv python3-pip cmake
3330
31+
- name: Install MPI (OpenMPI)
32+
run: apt-get update && apt-get install -y libopenmpi-dev openmpi-bin
33+
3434
- name: Install additional dependencies
3535
run: |
3636
python3.10 -m venv venv

src/pyclassify/__init__.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,4 @@
2626
# QR_cp,
2727
)
2828

29-
from .helpers_secular import (
30-
inner_outer_eigs,
31-
return_secular_f,
32-
secular_function,
33-
check_is_root,
34-
bisection,
35-
compute_outer_zero,
36-
compute_psi_s,
37-
compute_inner_zero,
38-
compute_eigenvalues,
39-
)
29+
from .zero_founder import compute_Psi, secular_solver

0 commit comments

Comments
 (0)