-
Notifications
You must be signed in to change notification settings - Fork 4
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 #288 from Exabyte-io/feat/SOF-7194
SOF-7194: new deepmd application schema
- Loading branch information
Showing
6 changed files
with
47 additions
and
6 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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
"name": "espresso", | ||
"shortName": "qe", | ||
"summary": "Quantum Espresso", | ||
"version": "5.1.1" | ||
"version": "7.2" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,34 @@ | ||
{ | ||
"$id": "software-directory/modeling/deepmd", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "DeePMD app schema", | ||
"type": "object", | ||
"allOf": [ | ||
{ | ||
"$ref": "../../software/application.json" | ||
} | ||
], | ||
"properties": { | ||
"name": { | ||
"enum": [ | ||
"deepmd" | ||
] | ||
}, | ||
"summary": { | ||
"enum": [ | ||
"DeePMD is a deep learning package that is based on neural network fitted first-principles data for many-body potential energy representation and molecular dynamics" | ||
] | ||
}, | ||
"version": { | ||
"enum": [ | ||
"2.0.2" | ||
] | ||
}, | ||
"exec": { | ||
"enum": [ | ||
"dp_prepare", | ||
"dp_train" | ||
] | ||
} | ||
} | ||
} |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.