]> SALOME platform Git repositories - modules/kernel.git/blob - src/Launcher_SWIG/test.py
Salome HOME
Update copyrights
[modules/kernel.git] / src / Launcher_SWIG / test.py
1 # Copyright (C) 2019  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import pylauncher as pyla
21 jyf=pyla.Job_YACSFile()
22 jyf.setJobName("YDFX")
23 jyf.setWorkDirectory("/scratch/geay/Example")
24 jyf.setLocalDirectory("/home/geay/Example")
25 jyf.setResultDirectory("/home/geay/Example")
26 jyf.setLauncherFile("")
27 jyf.setLauncherArgs("")
28 jyf.setJobFile("/tmp/EvalYFX_geay_180119_093600.xml") # schema YACS
29 jyf.setPreCommand("")
30 jyf.setEnvFile("")
31 for elt in []:
32     jyf.add_in_file(elt)
33 for elt in ["EvalYFX_geay_180119_093600"]:
34     jyf.add_out_file(elt)
35 jyf.setMaximumDuration("00:05")
36 jyf.setQueue("")
37 jyf.setPartition("")
38 jyf.setExclusive(False)
39 jyf.setMemPerCpu(0)
40 jyf.setWCKey("P11U5:CARBONES")
41 jyf.setExtraParams("")
42 #
43 rp=pyla.resourceParams()
44 rp.name = "athos"
45 rp.hostname = ""
46 rp.OS = "Linux"
47 rp.nb_proc = 5
48 rp.nb_node = 0
49 rp.nb_proc_per_node = 1
50 rp.cpu_clock = -1
51 rp.mem_mb = 0
52 jyf.setResourceRequiredParams(rp)
53 jyf.checkSpecificParameters()
54 l = pyla.Launcher_cpp()
55 res = pyla.ResourcesManager_cpp("/home/geay/salome/V9_DEV/appli_V9_2_0/CatalogResources.xml")
56 l.SetResourcesManager(res)
57 l.createJob(jyf)
58 nb=jyf.getNumber()
59 l.launchJob(nb)
60 l.sendJobToSession(nb)
61 #l.getJobState(nb)
62 #l.getJobResults(nb,jyf.getLocalDirectory())