mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-06-08 00:23:48 +02:00
Add more apps for tagger
This commit is contained in:
parent
249128e011
commit
3d6dca9386
1
internal/tagger/apps/alf.txt
Normal file
1
internal/tagger/apps/alf.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
alf
|
7
internal/tagger/apps/caracal.txt
Normal file
7
internal/tagger/apps/caracal.txt
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
calc_rate
|
||||||
|
qmdffgen
|
||||||
|
dynamic
|
||||||
|
evbopt
|
||||||
|
explore
|
||||||
|
black_box
|
||||||
|
poly_qmdff
|
3
internal/tagger/apps/chroma.txt
Normal file
3
internal/tagger/apps/chroma.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
chroma
|
||||||
|
qdp
|
||||||
|
qmp
|
1
internal/tagger/apps/cp2k.txt
Normal file
1
internal/tagger/apps/cp2k.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
cp2k
|
1
internal/tagger/apps/cpmd.txt
Normal file
1
internal/tagger/apps/cpmd.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
cpmd
|
1
internal/tagger/apps/flame.txt
Normal file
1
internal/tagger/apps/flame.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
flame
|
@ -1,4 +1,3 @@
|
|||||||
GROMACS
|
|
||||||
gromacs
|
gromacs
|
||||||
GMX
|
gmx
|
||||||
mdrun
|
mdrun
|
||||||
|
1
internal/tagger/apps/lammps.txt
Normal file
1
internal/tagger/apps/lammps.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
lmp
|
1
internal/tagger/apps/orca.txt
Normal file
1
internal/tagger/apps/orca.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
orca
|
@ -1,3 +1,4 @@
|
|||||||
python
|
python
|
||||||
|
pip
|
||||||
anaconda
|
anaconda
|
||||||
conda
|
conda
|
||||||
|
3
internal/tagger/apps/qe.txt
Normal file
3
internal/tagger/apps/qe.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
pw
|
||||||
|
neb
|
||||||
|
ph
|
10
internal/tagger/apps/turbomole.txt
Normal file
10
internal/tagger/apps/turbomole.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
dscf
|
||||||
|
grad
|
||||||
|
ridft
|
||||||
|
rdgrad
|
||||||
|
ricc2
|
||||||
|
statpt
|
||||||
|
aoforce
|
||||||
|
escf
|
||||||
|
egrad
|
||||||
|
odft
|
@ -1,2 +1 @@
|
|||||||
VASP
|
|
||||||
vasp
|
vasp
|
||||||
|
@ -111,7 +111,7 @@ func (t *AppTagger) Match(job *schema.Job) {
|
|||||||
for _, a := range t.apps {
|
for _, a := range t.apps {
|
||||||
tag := a.tag
|
tag := a.tag
|
||||||
for _, s := range a.strings {
|
for _, s := range a.strings {
|
||||||
if strings.Contains(jobscript, s) {
|
if strings.Contains(strings.ToLower(jobscript), s) {
|
||||||
if !r.HasTag(id, t.tagType, tag) {
|
if !r.HasTag(id, t.tagType, tag) {
|
||||||
r.AddTagOrCreateDirect(id, t.tagType, tag)
|
r.AddTagOrCreateDirect(id, t.tagType, tag)
|
||||||
break out
|
break out
|
||||||
|
Loading…
x
Reference in New Issue
Block a user