Skip to content

Commit c6c11da

Browse files
Release 1.0. Includes Microsoft Contributions
1 parent 151a3c6 commit c6c11da

File tree

137 files changed

+444497
-1969
lines changed

Some content is hidden

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

137 files changed

+444497
-1969
lines changed

.github/workflows/build_and_test_compiler_zoo.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040

4141
- name: Test
4242
shell: bash
43-
run: cmake --build ${{runner.workspace}}/build --target test
43+
run: ${{runner.workspace}}/build/test/xc_kernel_test &&
44+
${{runner.workspace}}/build/test/xc_functional_test
4445

4546
debug_build:
4647
runs-on: ubuntu-latest

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
build
2+
.vscode
13
*.*.swp

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ ExchCXX Copyright (c) 2020-2022, The Regents of the University of California,
44
through Lawrence Berkeley National Laboratory (subject to receipt of
55
any required approvals from the U.S. Dept. of Energy). All rights reserved.
66

7-
If you have questions about your rights to use or distribute this software,
8-
please contact Berkeley Lab's Intellectual Property Office at
9-
IPO@lbl.gov.
10-
117
NOTICE. This Software was developed under funding from the U.S. Department
128
of Energy and the U.S. Government consequently retains certain rights. As
139
such, the U.S. Government has been granted for itself and others acting on
@@ -156,8 +152,6 @@ b3lyp.eval_exc_vxc_device( npts, rho_device, gamma_device, exc_device, vrho_devi
156152
| Perdew-Zunger 86 Modified | `XC_LDA_C_PZ_MOD` | `Kernel::PZ86_LDA_MOD` | Y |
157153
| Becke Exchange 88 | `XC_GGA_X_B88` | `Kernel::B88` | Y |
158154
| Lee-Yang-Parr | `XC_GGA_C_LYP` | `Kernel::LYP` | Y |
159-
| PBE0 | `XC_HYB_GGA_XC_PBEH` | `Kernel::PBE0` | Y |
160-
| B3LYP | `XC_HYB_GGA_XC_B3LYP` | `Kernel::B3LYP` | Y |
161155

162156

163157

0 commit comments

Comments
 (0)