Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename host callbacks
[simgrid.git] / examples / java / surfCpuModel / TestCpuModel.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package surfCpuModel;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.NativeException;
11 import org.simgrid.surf.Surf;
12 import org.simgrid.surf.Cpu;
13 import org.simgrid.surf.CpuModel;
14
15 public class TestCpuModel {
16
17   /* This only contains the launcher. If you do nothing more than than you can run
18   *   java simgrid.msg.Msg
19   * which also contains such a launcher
20   */
21
22   public static void main(String[] args) throws NativeException {
23     /* initialize the MSG simulation. Must be done before anything else (even logging). */
24     Msg.init(args);
25     
26     CpuConstantModel cm = new CpuConstantModel();
27     Surf.setCpuModel(cm);
28
29     if(args.length < 2) {
30       Msg.info("Usage   : TestPlugin platform_file deployment_file");
31       Msg.info("example : TestPlugin ping_pong_platform.xml ping_pong_deployment.xml");
32       System.exit(1);
33     }
34
35     /* construct the platform and deploy the application */
36     Msg.createEnvironment(args[0]);
37     Msg.deployApplication(args[1]);
38     Msg.info("Cpu Loaded: "+Surf.getCpuModel().getClass().getName());
39
40     /*  execute the simulation. */
41     Msg.run();
42   }
43 }