Skip to content

Commit

Permalink
Merge branch 'develop' into experimental/jlnav_plus_shuds_asktell
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnav committed Nov 20, 2024
2 parents 06c14d7 + 58fc609 commit 0d146fc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,16 @@ jobs:
- name: Install Ubuntu compilers
if: matrix.os == 'ubuntu-latest'
run: conda install gcc_linux-64
run: |
conda install gcc_linux-64
pip install nlopt==2.9.0
# Roundabout solution on macos for proper linking with mpicc
- name: Install macOS compilers
if: matrix.os == 'macos-latest'
run: |
conda install clang_osx-64
pip install nlopt==2.8.0
- name: Install basic testing/feature dependencies
run: |
Expand Down Expand Up @@ -116,7 +119,7 @@ jobs:
mv libensemble/tests/.cov* .
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
mv libensemble/tests/.cov* .
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand Down
1 change: 0 additions & 1 deletion install/gen_deps_environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ channels:
dependencies:
- pip
- numpy>=2
- nlopt==2.7.1
- scipy
- superlu_dist
- hypre
Expand Down
1 change: 0 additions & 1 deletion install/testing_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ anyio==4.6.2.post1
matplotlib==3.9.2
mpmath==1.3.0
rich==13.9.4
nlopt==2.8.0
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"initial_sample_size": 0, # Don't need to do evaluations because the sampling already done below
"localopt_method": "LD_MMA",
"rk_const": 0.5 * ((gamma(1 + (n / 2)) * 5) ** (1 / n)) / sqrt(pi),
"stop_after_k_minima": 25,
"stop_after_k_minima": 15,
"xtol_rel": 1e-6,
"ftol_rel": 1e-6,
"max_active_runs": 6,
Expand Down

0 comments on commit 0d146fc

Please sign in to comment.