From: schnorr Date: Wed, 14 Apr 2010 17:12:48 +0000 (+0000) Subject: adding another example with the declaration of multiple categories X-Git-Tag: SVN~169 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/21027ae0247d53c68b942ebbc087657c15ef21c2 adding another example with the declaration of multiple categories git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7572 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/buildtools/Cmake/src/CMakeTest.txt b/buildtools/Cmake/src/CMakeTest.txt index 3040074933..b102aa27f3 100644 --- a/buildtools/Cmake/src/CMakeTest.txt +++ b/buildtools/Cmake/src/CMakeTest.txt @@ -133,6 +133,7 @@ ADD_TEST(msg-masterslave_cpu_ti ${PROJECT_DIRECTORY}/tools/tesh/tesh --cd ${PROJ IF(HAVE_TRACING) ADD_TEST(tracing-ms ${PROJECT_DIRECTORY}/tools/tesh/tesh --cd ${PROJECT_DIRECTORY}/examples/msg tracing/ms.tesh) + ADD_TEST(tracing-categories ${PROJECT_DIRECTORY}/tools/tesh/tesh --cd ${PROJECT_DIRECTORY}/examples/msg tracing/categories.tesh) ENDIF(HAVE_TRACING) diff --git a/examples/msg/tracing/CMakeLists.txt b/examples/msg/tracing/CMakeLists.txt index eadfb6173f..7e4e1e4a4f 100644 --- a/examples/msg/tracing/CMakeLists.txt +++ b/examples/msg/tracing/CMakeLists.txt @@ -4,6 +4,8 @@ set(EXECUTABLE_OUTPUT_PATH "./") set(LIBRARY_OUTPUT_PATH "${PROJECT_DIRECTORY}/lib") add_executable(ms "ms.c") +add_executable(categories "categories.c") ### Add definitions for compile target_link_libraries(ms simgrid m -fprofile-arcs) +target_link_libraries(categories simgrid m -fprofile-arcs) diff --git a/examples/msg/tracing/categories.c b/examples/msg/tracing/categories.c new file mode 100644 index 0000000000..585f409ad9 --- /dev/null +++ b/examples/msg/tracing/categories.c @@ -0,0 +1,128 @@ +/* $Id$ */ + +/* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + +#include +#include "msg/msg.h" +#include "xbt/sysdep.h" /* calloc, printf */ + +/* Create a log channel to have nice outputs. */ +#include "xbt/log.h" +#include "xbt/asserts.h" +XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,"Messages specific for this msg example"); + +int master(int argc, char *argv[]); +int slave(int argc, char *argv[]); +MSG_error_t test_all(const char *platform_file, const char *application_file); + +/** Emitter function */ +int master(int argc, char *argv[]) +{ + long number_of_tasks = atol(argv[1]); + long slaves_count = atol(argv[4]); + + int i; + for (i = 0; i < number_of_tasks; i++) { + m_task_t task = NULL; + + //creating task and setting its category + if (i%2){ + task = MSG_task_create ("task_compute", 10000000, 0, NULL); + TRACE_msg_set_task_category (task, "compute"); + }else if (i%3){ + task = MSG_task_create ("task_request", 10, 10, NULL); + TRACE_msg_set_task_category (task, "request"); + }else{ + task = MSG_task_create ("task_data", 10, 10000000, NULL); + TRACE_msg_set_task_category (task, "data"); + } + MSG_task_send(task, "master_mailbox"); + } + + for (i = 0; i < slaves_count; i++) { + m_task_t finalize = MSG_task_create ("finalize", 0, 1000, 0); + TRACE_msg_set_task_category(finalize, "finalize"); + MSG_task_send(finalize, "master_mailbox"); + } + + return 0; +} + +/** Receiver function */ +int slave(int argc, char *argv[]) +{ + m_task_t task = NULL; + int res; + + while(1) { + res = MSG_task_receive(&(task), "master_mailbox"); + + if (!strcmp(MSG_task_get_name(task),"finalize")) { + MSG_task_destroy(task); + break; + } + + MSG_task_execute(task); + MSG_task_destroy(task); + task = NULL; + } + return 0; +} + +/** Test function */ +MSG_error_t test_all(const char *platform_file, + const char *application_file) +{ + MSG_error_t res = MSG_OK; + + { /* Simulation setting */ + MSG_set_channel_number(0); + MSG_create_environment(platform_file); + } + { /* Application deployment */ + MSG_function_register("master", master); + MSG_function_register("slave", slave); + MSG_launch_application(application_file); + } + res = MSG_main(); + + INFO1("Simulation time %g",MSG_get_clock()); + return res; +} + + +/** Main function */ +int main(int argc, char *argv[]) +{ + MSG_error_t res = MSG_OK; + int i; + + //starting the simulation tracing + TRACE_start ("categories.trace"); + + //declaring user categories + TRACE_category ("compute"); + TRACE_category ("request"); + TRACE_category ("data"); + TRACE_category ("finalize"); + + MSG_global_init(&argc,argv); + if (argc < 3) { + printf ("Usage: %s platform_file deployment_file\n",argv[0]); + printf ("example: %s msg_platform.xml msg_deployment.xml\n",argv[0]); + exit(1); + } + res = test_all(argv[1],argv[2]); + MSG_clean(); + + //ending the simulation tracing + TRACE_end(); + + if(res==MSG_OK) + return 0; + else + return 1; +} /* end_of_main */ diff --git a/examples/msg/tracing/categories.tesh b/examples/msg/tracing/categories.tesh new file mode 100644 index 0000000000..0a6640ab86 --- /dev/null +++ b/examples/msg/tracing/categories.tesh @@ -0,0 +1,490 @@ +#! ./tesh + +p Tracing multiple categories master/slave application + +$ $SG_TEST_EXENV tracing/categories$EXEEXT ${srcdir:=.}/tracing/platform.xml ${srcdir:=.}/tracing/deployment.xml +> [0.000000] [msg_test/INFO] Simulation time 4.01888 + +$ $SG_TEST_EXENV cat$EXEEXT ${srcdir:=.}/tracing/categories.trace +> %EventDef PajeDefineContainerType 0 +> % Alias string +> % ContainerType string +> % Name string +> %EndEventDef +> %EventDef PajeDefineStateType 1 +> % Alias string +> % ContainerType string +> % Name string +> %EndEventDef +> %EventDef PajeDefineEntityValue 2 +> % Alias string +> % EntityType string +> % Name string +> %EndEventDef +> %EventDef PajeDefineEventType 3 +> % Alias string +> % EntityType string +> % Name string +> %EndEventDef +> %EventDef PajeDefineLinkType 4 +> % Alias string +> % ContainerType string +> % SourceContainerType string +> % DestContainerType string +> % Name string +> %EndEventDef +> %EventDef PajeCreateContainer 5 +> % Time date +> % Alias string +> % Type string +> % Container string +> % Name string +> %EndEventDef +> %EventDef PajeDestroyContainer 9 +> % Time date +> % Type string +> % Container string +> %EndEventDef +> %EventDef PajeSetState 6 +> % Time date +> % EntityType string +> % Container string +> % Value string +> %EndEventDef +> %EventDef PajeSetState 10 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % Host string +> %EndEventDef +> %EventDef PajePushState 7 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % Host string +> %EndEventDef +> %EventDef PajePopState 8 +> % Time date +> % EntityType string +> % Container string +> %EndEventDef +> %EventDef PajeSetState 11 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % Host string +> % Comm string +> % Comp string +> %EndEventDef +> %EventDef PajeStartLink 12 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % SourceContainer string +> % Key string +> %EndEventDef +> %EventDef PajeEndLink 13 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % DestContainer string +> % Key string +> %EndEventDef +> %EventDef PajeCreateContainer 14 +> % Time date +> % Alias string +> % Type string +> % Container string +> % Name string +> % Power string +> %EndEventDef +> %EventDef PajeStartLink 15 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % SourceContainer string +> % Key string +> % Bandwidth string +> % Latency string +> %EndEventDef +> %EventDef PajePushState 16 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % PowerUsed string +> %EndEventDef +> %EventDef PajePushState 17 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % BandwidthUsed string +> %EndEventDef +> %EventDef PajeSetState 18 +> % Time date +> % EntityType string +> % Container string +> % Value string +> % PowerUsed string +> %EndEventDef +> %EventDef PajePushState 19 +> % Time date +> % EntityType string +> % Container string +> % Value string +> %EndEventDef +> %EventDef PajeCreateContainer 20 +> % Time date +> % Alias string +> % Type string +> % Container string +> % Name string +> % Bandwidth string +> % Latency string +> %EndEventDef +> %EventDef PajeCreateContainer 21 +> % Time date +> % Alias string +> % Type string +> % Container string +> % Name string +> % Bandwidth string +> % Latency string +> % SrcHost string +> % DstHost string +> %EndEventDef +> %EventDef PajeSetVariable 22 +> % Time date +> % EntityType string +> % Container string +> % Value string +> %EndEventDef +> %EventDef PajeAddVariable 23 +> % Time date +> % EntityType string +> % Container string +> % Value string +> %EndEventDef +> %EventDef PajeSubVariable 24 +> % Time date +> % EntityType string +> % Container string +> % Value string +> %EndEventDef +> %EventDef PajeDefineVariableType 25 +> % Alias string +> % ContainerType string +> % Name string +> %EndEventDef +> 0 PLATFORM 0 platform +> 0 HOST PLATFORM HOST +> 25 power HOST power +> 0 LINK PLATFORM LINK +> 25 bandwidth LINK bandwidth +> 25 latency LINK latency +> 5 0.000000000000000 platform PLATFORM 0 simgrid-platform +> 0 user_type 0 user_type +> 5 0.000000000000000 compute user_type 0 compute +> 25 bcompute LINK bcompute +> 25 pcompute HOST pcompute +> 5 0.000000000000000 request user_type 0 request +> 25 brequest LINK brequest +> 25 prequest HOST prequest +> 5 0.000000000000000 data user_type 0 data +> 25 bdata LINK bdata +> 25 pdata HOST pdata +> 5 0.000000000000000 finalize user_type 0 finalize +> 25 bfinalize LINK bfinalize +> 25 pfinalize HOST pfinalize +> 5 0.000000000000000 Tremblay HOST platform Tremblay +> 22 0.000000000000000 power Tremblay 98095000.000000 +> 5 0.000000000000000 Jupiter HOST platform Jupiter +> 22 0.000000000000000 power Jupiter 76296000.000000 +> 5 0.000000000000000 Fafard HOST platform Fafard +> 22 0.000000000000000 power Fafard 76296000.000000 +> 5 0.000000000000000 Ginette HOST platform Ginette +> 22 0.000000000000000 power Ginette 48492000.000000 +> 5 0.000000000000000 Bourassa HOST platform Bourassa +> 22 0.000000000000000 power Bourassa 48492000.000000 +> 5 0.000000000000000 R.4-3 HOST platform R.4-3 +> 22 0.000000000000000 power R.4-3 0.000000 +> 5 0.000000000000000 R.3-2-5 HOST platform R.3-2-5 +> 22 0.000000000000000 power R.3-2-5 0.000000 +> 5 0.000000000000000 R.2-0 HOST platform R.2-0 +> 22 0.000000000000000 power R.2-0 0.000000 +> 5 0.000000000000000 R.1-0 HOST platform R.1-0 +> 22 0.000000000000000 power R.1-0 0.000000 +> 5 0.000000000000000 R.1-8-6 HOST platform R.1-8-6 +> 22 0.000000000000000 power R.1-8-6 0.000000 +> 5 0.000000000000000 R.6-7 HOST platform R.6-7 +> 22 0.000000000000000 power R.6-7 0.000000 +> 21 0.000000000000000 9 LINK platform 9 7209750.000000 0.001462 Jupiter Tremblay +> 22 0.000000000000000 bandwidth 9 7209750.000000 +> 22 0.000000000000000 latency 9 0.001462 +> 21 0.000000000000000 0 LINK platform 0 41279125.000000 0.000060 R.2-0 R.1-0 +> 22 0.000000000000000 bandwidth 0 41279125.000000 +> 22 0.000000000000000 latency 0 0.000060 +> 21 0.000000000000000 4 LINK platform 4 10099625.000000 0.000480 Tremblay R.4-3 +> 22 0.000000000000000 bandwidth 4 10099625.000000 +> 22 0.000000000000000 latency 4 0.000480 +> 21 0.000000000000000 1 LINK platform 1 34285625.000000 0.000514 R.1-0 R.1-8-6 +> 22 0.000000000000000 bandwidth 1 34285625.000000 +> 22 0.000000000000000 latency 1 0.000514 +> 21 0.000000000000000 5 LINK platform 5 27946250.000000 0.000278 R.3-2-5 Ginette +> 22 0.000000000000000 bandwidth 5 27946250.000000 +> 22 0.000000000000000 latency 5 0.000278 +> 21 0.000000000000000 7 LINK platform 7 11618875.000000 0.000190 R.6-7 Bourassa +> 22 0.000000000000000 bandwidth 7 11618875.000000 +> 22 0.000000000000000 latency 7 0.000190 +> 21 0.000000000000000 3 LINK platform 3 34285622.000000 0.000514 R.4-3 R.3-2-5 +> 22 0.000000000000000 bandwidth 3 34285622.000000 +> 22 0.000000000000000 latency 3 0.000514 +> 21 0.000000000000000 6 LINK platform 6 41279125.000000 0.000060 R.1-8-6 R.6-7 +> 22 0.000000000000000 bandwidth 6 41279125.000000 +> 22 0.000000000000000 latency 6 0.000060 +> 21 0.000000000000000 8 LINK platform 8 8158000.000000 0.000271 Fafard R.1-8-6 +> 22 0.000000000000000 bandwidth 8 8158000.000000 +> 22 0.000000000000000 latency 8 0.000271 +> 21 0.000000000000000 2 LINK platform 2 22222222.000000 0.000137 R.3-2-5 R.2-0 +> 22 0.000000000000000 bandwidth 2 22222222.000000 +> 22 0.000000000000000 latency 2 0.000137 +> 22 0.021982436179501 pdata Tremblay 0 +> 23 0.021982436179501 pdata Tremblay 98095000.000000 +> 22 0.057732872979501 brequest 4 0 +> 23 0.057732872979501 brequest 4 5060664.718311 +> 22 0.057732872979501 brequest 3 0 +> 23 0.057732872979501 brequest 3 5060664.718311 +> 22 0.057732872979501 brequest 2 0 +> 23 0.057732872979501 brequest 2 5060664.718311 +> 22 0.057732872979501 brequest 0 0 +> 23 0.057732872979501 brequest 0 5060664.718311 +> 22 0.057732872979501 brequest 1 0 +> 23 0.057732872979501 brequest 1 5060664.718311 +> 22 0.057732872979501 brequest 8 0 +> 23 0.057732872979501 brequest 8 5060664.718311 +> 22 0.057734849004501 prequest Fafard 0 +> 23 0.057734849004501 prequest Fafard 76296000.000000 +> 24 0.057734849004501 brequest 4 5060664.718311 +> 23 0.091302346604501 brequest 4 5114134.701194 +> 24 0.057734849004501 brequest 3 5060664.718311 +> 23 0.091302346604501 brequest 3 5114134.701194 +> 24 0.057734849004501 brequest 2 5060664.718311 +> 23 0.091302346604501 brequest 2 5114134.701194 +> 24 0.057734849004501 brequest 0 5060664.718311 +> 23 0.091302346604501 brequest 0 5114134.701194 +> 24 0.057734849004501 brequest 1 5060664.718311 +> 23 0.091302346604501 brequest 1 5114134.701194 +> 22 0.091302346604501 brequest 6 0 +> 23 0.091302346604501 brequest 6 5114134.701194 +> 22 0.091302346604501 brequest 7 0 +> 23 0.091302346604501 brequest 7 5114134.701194 +> 22 0.091304301969501 prequest Bourassa 0 +> 23 0.091304301969501 prequest Bourassa 48492000.000000 +> 22 0.037182212979501 pcompute Jupiter 0 +> 23 0.037182212979501 pcompute Jupiter 76296000.000000 +> 24 0.091304301969501 brequest 4 5114134.701194 +> 22 0.112010961969501 bdata 4 0 +> 23 0.112010961969501 bdata 4 5060664.718311 +> 24 0.091304301969501 brequest 3 5114134.701194 +> 22 0.112010961969501 bdata 3 0 +> 23 0.112010961969501 bdata 3 5060664.718311 +> 24 0.091304301969501 brequest 2 5114134.701194 +> 22 0.112010961969501 bdata 2 0 +> 23 0.112010961969501 bdata 2 5060664.718311 +> 24 0.091304301969501 brequest 0 5114134.701194 +> 22 0.112010961969501 bdata 0 0 +> 23 0.112010961969501 bdata 0 5060664.718311 +> 24 0.091304301969501 brequest 1 5114134.701194 +> 22 0.112010961969501 bdata 1 0 +> 23 0.112010961969501 bdata 1 5060664.718311 +> 24 0.057734849004501 brequest 8 5060664.718311 +> 22 0.112010961969501 bdata 8 0 +> 23 0.112010961969501 bdata 8 5060664.718311 +> 24 0.021982538121496 pdata Tremblay 98095000.000000 +> 22 0.091460301969501 pcompute Tremblay 0 +> 23 0.091460301969501 pcompute Tremblay 98095000.000000 +> 24 0.168250683148317 bdata 4 5060664.718311 +> 23 0.168250683148317 bdata 4 5060664.718311 +> 24 0.168250683148317 bdata 3 5060664.718311 +> 23 0.168250683148317 bdata 3 5060664.718311 +> 24 0.168250683148317 bdata 2 5060664.718311 +> 23 0.168250683148317 bdata 2 5060664.718311 +> 24 0.168250683148317 bdata 0 5060664.718311 +> 23 0.168250683148317 bdata 0 5060664.718311 +> 24 0.168250683148317 bdata 1 5060664.718311 +> 23 0.168250683148317 bdata 1 5060664.718311 +> 24 0.168250683148317 bdata 8 5060664.718311 +> 23 0.168250683148317 bdata 8 5060664.718311 +> 22 0.070966550604501 pcompute Ginette 0 +> 23 0.070966550604501 pcompute Ginette 48492000.000000 +> 24 0.193402296974343 bdata 4 5060664.718311 +> 23 0.193402296974343 bdata 4 5060664.718311 +> 24 0.193402296974343 bdata 3 5060664.718311 +> 23 0.193402296974343 bdata 3 5060664.718311 +> 24 0.193402296974343 bdata 2 5060664.718311 +> 23 0.193402296974343 bdata 2 5060664.718311 +> 24 0.193402296974343 bdata 0 5060664.718311 +> 23 0.193402296974343 bdata 0 5060664.718311 +> 24 0.193402296974343 bdata 1 5060664.718311 +> 23 0.193402296974343 bdata 1 5060664.718311 +> 24 0.193402296974343 bdata 8 5060664.718311 +> 23 0.193402296974343 bdata 8 5060664.718311 +> 24 0.277186133216065 bdata 4 5060664.718311 +> 23 0.277186133216065 bdata 4 5060664.718311 +> 24 0.277186133216065 bdata 3 5060664.718311 +> 23 0.277186133216065 bdata 3 5060664.718311 +> 24 0.277186133216065 bdata 2 5060664.718311 +> 23 0.277186133216065 bdata 2 5060664.718311 +> 24 0.277186133216065 bdata 0 5060664.718311 +> 23 0.277186133216065 bdata 0 5060664.718311 +> 24 0.277186133216065 bdata 1 5060664.718311 +> 23 0.277186133216065 bdata 1 5060664.718311 +> 24 0.277186133216065 bdata 8 5060664.718311 +> 23 0.277186133216065 bdata 8 5060664.718311 +> 24 0.057734980072971 prequest Fafard 76296000.000000 +> 22 2.088035961969501 pdata Fafard 0 +> 23 2.088035961969501 pdata Fafard 76296000.000000 +> 22 2.123571534769500 brequest 9 0 +> 23 2.123571534769500 brequest 9 6632970.000000 +> 24 0.168250683148317 pcompute Jupiter 76296000.000000 +> 22 2.123573042389767 prequest Jupiter 0 +> 23 2.123573042389767 prequest Jupiter 76296000.000000 +> 24 2.088035961969501 bdata 4 5060664.718311 +> 23 2.136960743989767 brequest 4 7859911.230163 +> 24 2.088035961969501 bdata 3 5060664.718311 +> 23 2.136960743989767 brequest 3 7859911.230163 +> 22 2.136960743989767 brequest 5 0 +> 23 2.136960743989767 brequest 5 7859911.230163 +> 24 0.193402296974343 pcompute Tremblay 98095000.000000 +> 23 2.123729042389767 pcompute Tremblay 98095000.000000 +> 24 0.277186133216065 pcompute Ginette 48492000.000000 +> 22 2.136962016268767 prequest Ginette 0 +> 23 2.136962016268767 prequest Ginette 48492000.000000 +> 24 2.136962016268767 pcompute Tremblay 98095000.000000 +> 23 2.136962016268767 pcompute Tremblay 98095000.000000 +> 24 2.157512676268767 pcompute Tremblay 98095000.000000 +> 23 2.157512676268767 pcompute Tremblay 98095000.000000 +> 24 2.123573042389767 brequest 9 6632970.000000 +> 22 2.172712453068767 bdata 9 0 +> 23 2.172712453068767 bdata 9 6632970.000000 +> 24 2.088036093037971 pdata Fafard 76296000.000000 +> 22 2.157512676268767 pcompute Fafard 0 +> 23 2.157512676268767 pcompute Fafard 76296000.000000 +> 24 2.225671037394609 bdata 9 6632970.000000 +> 23 2.225671037394609 bdata 9 6632970.000000 +> 24 0.091304508189083 prequest Bourassa 48492000.000000 +> 22 2.108371757969500 pcompute Bourassa 0 +> 23 2.108371757969500 pcompute Bourassa 48492000.000000 +> 24 2.288581146437584 bdata 9 6632970.000000 +> 23 2.288581146437584 bdata 9 6632970.000000 +> 24 2.314591340581065 bdata 9 6632970.000000 +> 23 2.314591340581065 bdata 9 6632970.000000 +> 24 2.123573173458237 prequest Jupiter 76296000.000000 +> 22 3.680332719706487 pdata Jupiter 0 +> 23 3.680332719706487 pdata Jupiter 76296000.000000 +> 24 2.225671037394609 pcompute Tremblay 98095000.000000 +> 22 3.693720443132924 prequest Tremblay 0 +> 23 3.693720443132924 prequest Tremblay 98095000.000000 +> 24 2.136962016268767 brequest 4 7859911.230163 +> 23 3.734606899132924 brequest 4 5114134.701194 +> 24 2.136962016268767 brequest 3 7859911.230163 +> 23 3.734606899132924 brequest 3 5114134.701194 +> 24 2.088035961969501 bdata 2 5060664.718311 +> 23 3.734606899132924 brequest 2 5114134.701194 +> 24 2.088035961969501 bdata 0 5060664.718311 +> 23 3.734606899132924 brequest 0 5114134.701194 +> 24 2.088035961969501 bdata 1 5060664.718311 +> 23 3.734606899132924 brequest 1 5114134.701194 +> 24 0.091304301969501 brequest 6 5114134.701194 +> 23 3.734606899132924 brequest 6 5114134.701194 +> 24 0.091304301969501 brequest 7 5114134.701194 +> 23 3.734606899132924 brequest 7 5114134.701194 +> 24 2.314591340581065 pcompute Bourassa 48492000.000000 +> 23 3.734608854497924 prequest Bourassa 48492000.000000 +> 24 3.693720545074918 prequest Tremblay 98095000.000000 +> 23 3.771791067477424 pdata Tremblay 98095000.000000 +> 24 2.288581146437584 pcompute Fafard 76296000.000000 +> 23 3.714271103132924 pcompute Fafard 76296000.000000 +> 24 3.734608854497924 brequest 4 5114134.701194 +> 22 3.865890233301740 bfinalize 4 0 +> 23 3.865890233301740 bfinalize 4 5060664.718311 +> 24 3.734608854497924 brequest 3 5114134.701194 +> 22 3.865890233301740 bfinalize 3 0 +> 23 3.865890233301740 bfinalize 3 5060664.718311 +> 24 3.734608854497924 brequest 2 5114134.701194 +> 22 3.865890233301740 bfinalize 2 0 +> 23 3.865890233301740 bfinalize 2 5060664.718311 +> 24 3.734608854497924 brequest 0 5114134.701194 +> 22 3.865890233301740 bfinalize 0 0 +> 23 3.865890233301740 bfinalize 0 5060664.718311 +> 24 3.734608854497924 brequest 1 5114134.701194 +> 22 3.865890233301740 bfinalize 1 0 +> 23 3.865890233301740 bfinalize 1 5060664.718311 +> 24 2.088035961969501 bdata 8 5060664.718311 +> 22 3.865890233301740 bfinalize 8 0 +> 23 3.865890233301740 bfinalize 8 5060664.718311 +> 24 3.680332850774958 pdata Jupiter 76296000.000000 +> 23 3.749808631297924 pcompute Jupiter 76296000.000000 +> 24 3.680332719706487 bdata 9 6632970.000000 +> 22 3.896076878266740 bfinalize 9 0 +> 23 3.896076878266740 bfinalize 9 6632970.000000 +> 24 2.136962222488350 prequest Ginette 48492000.000000 +> 23 3.693564421306487 pcompute Ginette 48492000.000000 +> 24 3.866087835801740 bfinalize 4 5060664.718311 +> 23 3.913015705518052 bfinalize 4 7859911.230163 +> 24 3.866087835801740 bfinalize 3 5060664.718311 +> 23 3.913015705518052 bfinalize 3 7859911.230163 +> 24 2.136962016268767 brequest 5 7859911.230163 +> 22 3.913015705518052 bfinalize 5 0 +> 23 3.913015705518052 bfinalize 5 7859911.230163 +> 24 3.734609060717506 prequest Bourassa 48492000.000000 +> 23 3.792126863477424 pcompute Bourassa 48492000.000000 +> 24 3.913142933418052 bfinalize 4 7859911.230163 +> 23 4.018682242088989 bfinalize 4 5114134.701194 +> 24 3.913142933418052 bfinalize 3 7859911.230163 +> 23 4.018682242088989 bfinalize 3 5114134.701194 +> 24 3.866087835801740 bfinalize 2 5060664.718311 +> 23 4.018682242088989 bfinalize 2 5114134.701194 +> 24 3.866087835801740 bfinalize 0 5060664.718311 +> 23 4.018682242088989 bfinalize 0 5114134.701194 +> 24 3.866087835801740 bfinalize 1 5060664.718311 +> 23 4.018682242088989 bfinalize 1 5114134.701194 +> 24 3.734608854497924 brequest 6 5114134.701194 +> 22 4.018682242088989 bfinalize 6 0 +> 23 4.018682242088989 bfinalize 6 5114134.701194 +> 24 3.734608854497924 brequest 7 5114134.701194 +> 22 4.018682242088989 bfinalize 7 0 +> 23 4.018682242088989 bfinalize 7 5114134.701194 +> 24 4.018877778588989 bfinalize 0 5114134.701194 +> 24 4.018877778588989 bfinalize 4 5114134.701194 +> 24 3.866087835801740 bfinalize 8 5060664.718311 +> 24 3.998346446088989 pcompute Bourassa 48492000.000000 +> 24 3.899784003918052 pcompute Ginette 48492000.000000 +> 24 4.018877778588989 bfinalize 1 5114134.701194 +> 24 3.913142933418052 bfinalize 5 7859911.230163 +> 24 3.896227640293403 bfinalize 9 6632970.000000 +> 24 3.845339573301740 pcompute Fafard 76296000.000000 +> 24 4.018877778588989 bfinalize 2 5114134.701194 +> 24 4.018877778588989 bfinalize 6 5114134.701194 +> 24 4.018877778588989 bfinalize 3 5114134.701194 +> 24 4.018877778588989 bfinalize 7 5114134.701194 +> 24 3.771791169419419 pdata Tremblay 98095000.000000 +> 24 3.880877101466740 pcompute Jupiter 76296000.000000 +> 9 4.018877778588989 HOST Fafard +> 9 4.018877778588989 HOST R.2-0 +> 9 4.018877778588989 HOST R.4-3 +> 9 4.018877778588989 HOST R.3-2-5 +> 9 4.018877778588989 HOST R.1-8-6 +> 9 4.018877778588989 HOST R.6-7 +> 9 4.018877778588989 HOST Tremblay +> 9 4.018877778588989 HOST R.1-0 +> 9 4.018877778588989 HOST Bourassa +> 9 4.018877778588989 HOST Jupiter +> 9 4.018877778588989 HOST Ginette