X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d13b1659a0c2551ee41b287a269e391bb2d7bc8a..cdee945b9c5436eaada21ee7b942f63d7a67df49:/src/smpi/smpi_bench.c diff --git a/src/smpi/smpi_bench.c b/src/smpi/smpi_bench.c index b6b56e8740..6dbbddb77c 100644 --- a/src/smpi/smpi_bench.c +++ b/src/smpi/smpi_bench.c @@ -1,10 +1,10 @@ -/* Copyright (c) 2007, 2009-2014. The SimGrid Team. +/* Copyright (c) 2007, 2009-2015. The SimGrid Team. * 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 "internal_config.h" +#include "src/internal_config.h" #include "private.h" #include "xbt/dict.h" #include "xbt/sysdep.h" @@ -13,7 +13,7 @@ #include "surf/surf.h" #include "simgrid/sg_config.h" #include "simgrid/modelchecker.h" -#include "mc/mc_replay.h" +#include "src/mc/mc_replay.h" #ifndef WIN32 #include @@ -153,12 +153,10 @@ void smpi_execute_(double *duration) void smpi_execute_flops(double flops) { smx_synchro_t action; - smx_host_t host; - host = SIMIX_host_self(); XBT_DEBUG("Handle real computation time: %f flops", flops); - action = simcall_host_execute("computation", host, flops, 1, 0, 0); + action = simcall_process_execute("computation", flops, 1, 0, 0); simcall_set_category (action, TRACE_internal_smpi_get_category()); - simcall_host_execution_wait(action); + simcall_process_execution_wait(action); smpi_switch_data_segment(smpi_process_index()); } @@ -460,7 +458,7 @@ void *smpi_shared_malloc(size_t size, const char *file, int line) { void* mem; if (sg_cfg_get_boolean("smpi/use_shared_malloc")){ - char *loc = bprintf("%zu_%s_%d", (size_t)getpid(), file, line); + char *loc = bprintf("/%zu_%s_%d", (size_t)getpid(), file, line); int fd; shared_data_t *data; loc = smpi_shared_alloc_hash(loc); /* hash loc, in order to have something @@ -621,7 +619,7 @@ void smpi_really_switch_data_segment(int dest) { if(smpi_size_data_exe == 0)//no need to switch return; -#ifdef HAVE_MMAP +#ifdef HAVE_PRIVATIZATION int i; if(smpi_loaded_page==-1){//initial switch, do the copy from the real page here for (i=0; i< SIMIX_process_count(); i++){ @@ -724,7 +722,7 @@ void smpi_get_executable_global_size(){ void smpi_initialize_global_memory_segments(){ -#ifndef HAVE_MMAP +#ifndef HAVE_PRIVATIZATION smpi_privatize_global_variables=0; return; #else @@ -798,7 +796,7 @@ Ask the Internet about tutorials on how to increase the files limit such as: htt void smpi_destroy_global_memory_segments(){ if (smpi_size_data_exe == 0)//no need to switch return; -#ifdef HAVE_MMAP +#ifdef HAVE_PRIVATIZATION int i; for (i=0; i< smpi_process_count(); i++){ if(munmap(smpi_privatisation_regions[i].address, smpi_size_data_exe) < 0) {