File tree Expand file tree Collapse file tree 5 files changed +17
-3
lines changed Expand file tree Collapse file tree 5 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 29
29
- name : Install SPARC-X-API stable version for docparser
30
30
run : |
31
31
mamba install -c conda-forge pip setuptools
32
- pip install git+https://github.com/SPARC-X/SPARC-X-API.git@v1.0.5
32
+ pip install git+https://github.com/SPARC-X/SPARC-X-API.git@v1.1.0
33
33
- name : Convert parameters.json
34
34
run : |
35
35
python -m sparc.docparser --include-subdirs doc/.LaTeX
Original file line number Diff line number Diff line change 34
34
- name : Install SPARC-X-API stable version for docparser
35
35
run : |
36
36
mamba install -c conda-forge pip setuptools
37
- pip install git+https://github.com/SPARC-X/SPARC-X-API.git@v1.0.5
37
+ pip install git+https://github.com/SPARC-X/SPARC-X-API.git@v1.1.0
38
38
- name : Convert parameters.json
39
39
run : |
40
40
python -m sparc.docparser --include-subdirs doc/.LaTeX
Original file line number Diff line number Diff line change 2
2
-Date
3
3
-Name
4
4
-changes
5
+ --------------
6
+ June 17, 2025
7
+ Name: Tian Tian
8
+ Changes: src/energy.c, CI workflows
9
+ 1. Fix compilation error with CBLAS in CI workflow
10
+ 2. Bump stable API version in CI workflow to v1.1.0
5
11
6
12
--------------
7
13
June 17, 2025
Original file line number Diff line number Diff line change 1087
1087
1088
1088
\begin {block }{Example}
1089
1089
\texttt {HUBBARD: \\ }
1090
+
1090
1091
% \texttt{U\_ATOM\_TYPE: Ni \\}
1091
1092
% \texttt{U\_VAL:} 0 0 0.05 0 \\
1092
1093
\end {block }
1157
1158
\end {block }
1158
1159
1159
1160
\end {frame }
1160
- % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1161
+ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Original file line number Diff line number Diff line change 25
25
#include "sqEnergy.h"
26
26
#include "occupationMatrix.h"
27
27
28
+ #ifdef USE_MKL
29
+ #include <mkl.h>
30
+ #else
31
+ #include <cblas.h>
32
+ #include <lapacke.h>
33
+ #endif
34
+
28
35
#define TEMP_TOL (1e-14)
29
36
30
37
You can’t perform that action at this time.
0 commit comments