Skip to content

Commit f721aed

Browse files
committed
ci: drop runner-name guard on ccache restore
Restore ccache unconditionally so every runner (VM/pod) attempts a restore; the previous ${{ !startsWith(runner.name, 'iZ0x') }} guard was not evaluated reliably and the guard provides no benefit (a VM restore hit simply refreshes local cache from the cloud).
1 parent 0703637 commit f721aed

521 files changed

Lines changed: 1078 additions & 1092 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/cuda.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
5555
- name: Restore ccache
5656
id: ccache
57-
if: ${{ !startsWith(runner.name, 'iZ0x') }}
5857
uses: actions/cache/restore@v4
5958
with:
6059
path: /tmp/ccache.tar.zst

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ jobs:
6868
6969
- name: Restore ccache
7070
id: ccache
71-
if: ${{ !startsWith(runner.name, 'iZ0x') }}
7271
uses: actions/cache/restore@v4
7372
with:
7473
path: /tmp/ccache.tar.zst

python/pyabacus/src/ModuleBase/py_base_math.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#include "source_base/math_sphbes.h"
55
#include "source_base/math_integral.h"
6-
#include "source_base/sph_bessel_tf.h"
6+
#include "source_base/spherical_bessel_transformer.h"
77

88
#include "../utils/pybind_utils.h"
99

source/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ list(APPEND device_srcs
566566
source_hamilt/module_xc/kernels/xc_functional_op.cpp
567567
source_pw/module_pwdft/kernels/cal_density_real_op.cpp
568568
source_pw/module_pwdft/kernels/mul_potential_op.cpp
569-
source_pw/module_pwdft/kernels/vec_mul_cx_op.cpp
569+
source_pw/module_pwdft/kernels/vec_mul_vec_complex_op.cpp
570570
source_pw/module_pwdft/kernels/exx_cal_energy_op.cpp)
571571

572572
if(USE_CUDA)

0 commit comments

Comments
 (0)