Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AWG Updates to infos #352

Merged
merged 2 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.9.0) # version 3.9.0 needed for FindMPI and FindOpenMP versions which provide imported targets

project(quick LANGUAGES NONE VERSION 22.03)
project(quick LANGUAGES NONE VERSION 24.03)

list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/quick-cmake)

Expand Down
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,21 @@ Features
* Supports QM/MM calculations with Amber22 and later
* Fortran API to use QUICK as QM energy and force engine
* MPI parallelization for CPU platforms
* Massively parallel GPU implementation via CUDA/HIP for Nvidia/AMD GPUs
* Massively parallel GPU implementation via CUDA/HIP for Nvidia/AMD GPUs (HIP available in QUICK-23.08, currently disabled)
* Multi-GPU support via MPI + CUDA/HIP, also across multiple compute nodes

Limitations
-----------
* Supports energy/gradient calculations with basis functions up to d
* Supports energy/gradient calculations with basis functions up to f
* Supports only Cartesian basis functions (no spherical harmonics)
* Effective core potentials (ECPs) are not supported
* DFT calculations are performed exclusively using the SG1 grid system
* No meta-GGA functionals, no range-separated hybrid functionals
* HIP (AMD GPU support) is currently disabled (available in QUICK-23.08 but not QUICK-24.03)

Installation
------------
Supported platforms: Linux (x86 and ARM), macOS (only Intel x86 tested)
Supported platforms: Linux (x86 and ARM), macOS (x86 and ARM)

* [Installation Guide](https://quick-docs.readthedocs.io/en/23.8.0/installation-guide.html#installation-guide)
1. [Compatible Compilers and Hardware](https://quick-docs.readthedocs.io/en/23.8.0/installation-guide.html#compatible-compilers-and-hardware)
Expand All @@ -56,10 +57,12 @@ A list of installation and runtime issues can be found [here](https://quick-docs

Citation
--------
Please cite QUICK-23.08 as follows.
Please cite QUICK-24.03 as follows.

Manathunga, M.; Shajan, A.; Smith, J.; Miao, Y.; He, X.; Ayers, K;
Brothers, E.; Götz, A. W.; Merz, K. M. QUICK-23.08 University of California San Diego, CA and Michigan State University, East Lansing, MI, 2023.
Brothers, E.; Götz, A. W.; Merz, K. M. QUICK-24.03
University of California San Diego, CA and
Michigan State University, East Lansing, MI, 2024.

If you perform density functional theory calculations please also cite:

Expand Down Expand Up @@ -99,9 +102,16 @@ Cruzeiro, V. W. D.; Manathunga, M.; Merz, K. M.; Götz, A. W.
Open-Source Multi-GPU-Accelerated QM/MM Simulations with AMBER and QUICK.
[*J. Chem. Inf. Model.* 61, 2109–2115 (2021)](https://pubs.acs.org/doi/abs/10.1021/acs.jcim.1c00169).

If you perform geometry optimization calculations using the DL-FIND optimizer please also cite:
If you perform geometry optimizations please cite:

Kästner, J.; Carr, J. M.; Keal, T. W.; Thiel, W.; Wander, A.; Sherwood, P. DL-FIND: An Open-Source Geometry Optimizer for Atomistic Simulations.
Shajan, A.; Manathunga, M.; Götz, A.W.; Merz, K.M.
Geometry optimization: A comparison of different open-source geometry optimizers.
[*J. Chem. Theory Comput.* 19, 7533-7541 (2023)](https://doi.org/10.1021/acs.jctc.3c00188).

If you use the DL-FIND for the geometry optimizations please also cite:

Kästner, J.; Carr, J. M.; Keal, T. W.; Thiel, W.; Wander, A.; Sherwood, P.
DL-FIND: An Open-Source Geometry Optimizer for Atomistic Simulations.
[*J. Phys. Chem. A* 113, 11856-11865 (2009)](https://pubs.acs.org/doi/10.1021/jp9028968).

License
Expand Down
4 changes: 2 additions & 2 deletions src/initialize.f90
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ subroutine outputCopyright(io,ierr)
write(io,'(A107)') "| ** 8888888Z 888 .8888I 88888 88888 8888888 8888: 888888 **"
write(io,'(A107)') "| ** **"
write(io,'(A107)') "| ** **"
write(io,'(A107)') "| ** Copyright (c) 2023 **"
write(io,'(A107)') "| ** Copyright (c) 2024 **"
write(io,'(A107)') "| ** Regents of the University of California San Diego **"
write(io,'(A107)') "| ** & Michigan State University **"
write(io,'(A107)') "| ** All Rights Reserved. **"
Expand All @@ -103,7 +103,7 @@ subroutine outputCopyright(io,ierr)
write(io,'(A107)') "| "
write(io,'(A107)') "| Cite this work as: "
write(io,'(A107)') "| Manathunga, M.; Shajan, A.; Smith, J.; Miao, Y.; He, X.; Ayers, K.; Brothers, E.; Goetz, A.W.; Merz, K.M."
write(io,'(A107)') "| QUICK-23.08 University of California San Diego, CA and Michigan State University, East Lansing, MI, 2023 "
write(io,'(A107)') "| QUICK-24.03 University of California San Diego, CA and Michigan State University, East Lansing, MI, 2024 "
write(io,'(A107)') "| "
write(io,'(A107)') "| If you have any comments or queries, please reach out to us on GitHub issues or discussion sections: "
write(io,'(A107)') "| https://github.com/merzlab/QUICK. "
Expand Down
Loading