-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from Zhaoli2042/main
PR: small change of code and initial pybind mix
- Loading branch information
Showing
15 changed files
with
657 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,11 @@ A detailed installation note for gRASPA on CentOS/Ubuntu 24.04 is documented in | |
* A40, A100, RTX 3080 Ti, RTX 3090, RTX 4090. | ||
* 🤯: RTX 3090/4090 is faster than A40/A100 for gRASPA | ||
* gRASPA has a SYCL version (experimental) that supports other devices, available in [Releases](https://github.com/snurr-group/gRASPA/releases) | ||
|
||
### Pybind Extension (testing) | ||
* Pybind extension for gRASPA allows user to interact with the **internal variables** of gRASPA, break down **MC moves**, add their **modifications** | ||
* Access the pybind-gRASPA extension [here](https://github.com/Zhaoli2042/gRASPA_pybind), as a patch to the original code | ||
|
||
## Quick Start | ||
* Go to [```Examples/```](Examples/) folder and read more! | ||
|
||
|
@@ -75,11 +80,11 @@ A detailed installation note for gRASPA on CentOS/Ubuntu 24.04 is documented in | |
| Automatic Determination<br>of # unit cells | | | :heavy_check_mark: | | ||
|
||
## Authors | ||
* Zhao Li (Northwestern University, currently at Purdue University) | ||
* Kaihang Shi (Northwestern University, currently at University at Buffalo) | ||
* David Dubbeldam (University of Amsterdam) | ||
* Mark Dewing (Argonne National Laboratory) | ||
* Christopher Knight (Argonne National Laboratory) | ||
* Alvaro Vazquez Mayagoitia (Argonne National Laboratory) | ||
* Randall Q. Snurr (Northwestern University) | ||
* Zhao Li (Northwestern University, currently at Purdue University/University of Notre Dame, [email protected]) | ||
* Kaihang Shi (Northwestern University, currently at University at Buffalo, [email protected]) | ||
* David Dubbeldam (University of Amsterdam, [email protected]) | ||
* Mark Dewing (Argonne National Laboratory, [email protected]) | ||
* Christopher Knight (Argonne National Laboratory, [email protected]) | ||
* Alvaro Vazquez Mayagoitia (Argonne National Laboratory, [email protected]) | ||
* Randall Q. Snurr (Northwestern University, [email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Variables Initialize(void); | ||
void RunSimulation(Variables& Vars); | ||
void EndOfSimulationWrapUp(Variables& Vars); | ||
|
||
MoveEnergy check_energy_wrapper(Variables& Var, size_t i); | ||
void ENERGY_SUMMARY(Variables& Vars); |
Oops, something went wrong.