X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f021475d9021fca0a6a72dd499aa1dc5dd1d2448..041733d27687138580274a397bb287da01c48b4c:/src/smpi/smpi_datatype_derived.cpp diff --git a/src/smpi/smpi_datatype_derived.cpp b/src/smpi/smpi_datatype_derived.cpp index 01948ee661..4551048a74 100644 --- a/src/smpi/smpi_datatype_derived.cpp +++ b/src/smpi/smpi_datatype_derived.cpp @@ -1,18 +1,11 @@ -/* smpi_datatype.cpp -- MPI primitives to handle datatypes */ -/* Copyright (c) 2009-2015. The SimGrid Team. - * All rights reserved. */ +/* smpi_datatype.cpp -- MPI primitives to handle datatypes */ +/* Copyright (c) 2009-2017. 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 "mc/mc.h" -#include "private.h" - -#include -#include -#include -#include -#include +#include "src/smpi/smpi_datatype_derived.hpp" +#include "src/smpi/smpi_op.hpp" XBT_LOG_EXTERNAL_CATEGORY(smpi_datatype); @@ -29,13 +22,13 @@ Type_Contiguous::~Type_Contiguous(){ } -void Type_Contiguous::serialize( void* noncontiguous_buf, void *contiguous_buf, +void Type_Contiguous::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+lb(); memcpy(contiguous_buf_char, noncontiguous_buf_char, count * block_count_ * old_type_->size()); } -void Type_Contiguous::unserialize( void* contiguous_buf, void *noncontiguous_buf, +void Type_Contiguous::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+lb(); @@ -54,17 +47,16 @@ Type_Vector::~Type_Vector(){ } -void Type_Vector::serialize( void* noncontiguous_buf, void *contiguous_buf, +void Type_Vector::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){ - int i; char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf); - for (i = 0; i < block_count_ * count; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)) - memcpy(contiguous_buf_char, noncontiguous_buf_char, block_length_ * old_type_->size()); - else - old_type_->serialize(noncontiguous_buf_char, contiguous_buf_char, block_length_); + for (int i = 0; i < block_count_ * count; i++) { + if (not(old_type_->flags() & DT_FLAG_DERIVED)) + memcpy(contiguous_buf_char, noncontiguous_buf_char, block_length_ * old_type_->size()); + else + old_type_->serialize(noncontiguous_buf_char, contiguous_buf_char, block_length_); contiguous_buf_char += block_length_*old_type_->size(); if((i+1)%block_count_ ==0) @@ -74,14 +66,13 @@ void Type_Vector::serialize( void* noncontiguous_buf, void *contiguous_buf, } } -void Type_Vector::unserialize( void* contiguous_buf, void *noncontiguous_buf, +void Type_Vector::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){ - int i; char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf); - for (i = 0; i < block_count_ * count; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)){ + for (int i = 0; i < block_count_ * count; i++) { + if (not(old_type_->flags() & DT_FLAG_DERIVED)) { if(op != MPI_OP_NULL) op->apply(contiguous_buf_char, noncontiguous_buf_char, &block_length_, old_type_); @@ -103,14 +94,13 @@ Type_Hvector::~Type_Hvector(){ Datatype::unref(old_type_); } -void Type_Hvector::serialize( void* noncontiguous_buf, void *contiguous_buf, +void Type_Hvector::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){ - int i; char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf); - for (i = 0; i < block_count_ * count; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)) + for (int i = 0; i < block_count_ * count; i++) { + if (not(old_type_->flags() & DT_FLAG_DERIVED)) memcpy(contiguous_buf_char, noncontiguous_buf_char, block_length_ * old_type_->size()); else old_type_->serialize( noncontiguous_buf_char, contiguous_buf_char, block_length_); @@ -124,15 +114,14 @@ void Type_Hvector::serialize( void* noncontiguous_buf, void *contiguous_buf, } -void Type_Hvector::unserialize( void* contiguous_buf, void *noncontiguous_buf, +void Type_Hvector::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){ - int i; char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf); - for (i = 0; i < block_count_ * count; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)){ - if(op!=MPI_OP_NULL) + for (int i = 0; i < block_count_ * count; i++) { + if (not(old_type_->flags() & DT_FLAG_DERIVED)) { + if(op!=MPI_OP_NULL) op->apply( contiguous_buf_char, noncontiguous_buf_char, &block_length_, old_type_); }else old_type_->unserialize( contiguous_buf_char, noncontiguous_buf_char, block_length_, op); @@ -163,13 +152,13 @@ Type_Indexed::~Type_Indexed(){ } -void Type_Indexed::serialize( void* noncontiguous_buf, void *contiguous_buf, +void Type_Indexed::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+block_indices_[0] * old_type_->size(); for (int j = 0; j < count; j++) { for (int i = 0; i < block_count_; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)) + if (not(old_type_->flags() & DT_FLAG_DERIVED)) memcpy(contiguous_buf_char, noncontiguous_buf_char, block_lengths_[i] * old_type_->size()); else old_type_->serialize( noncontiguous_buf_char, contiguous_buf_char, block_lengths_[i]); @@ -186,15 +175,15 @@ void Type_Indexed::serialize( void* noncontiguous_buf, void *contiguous_buf, } -void Type_Indexed::unserialize( void* contiguous_buf, void *noncontiguous_buf, +void Type_Indexed::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+block_indices_[0]*old_type_->get_extent(); for (int j = 0; j < count; j++) { for (int i = 0; i < block_count_; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)){ - if(op!=MPI_OP_NULL) + if (not(old_type_->flags() & DT_FLAG_DERIVED)) { + if(op!=MPI_OP_NULL) op->apply( contiguous_buf_char, noncontiguous_buf_char, &block_lengths_[i], old_type_); }else @@ -231,13 +220,13 @@ Type_Hindexed::Type_Hindexed(int size,MPI_Aint lb, MPI_Aint ub, int flags, int c } } -void Type_Hindexed::serialize( void* noncontiguous_buf, void *contiguous_buf, +void Type_Hindexed::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+ block_indices_[0]; for (int j = 0; j < count; j++) { for (int i = 0; i < block_count_; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)) + if (not(old_type_->flags() & DT_FLAG_DERIVED)) memcpy(contiguous_buf_char, noncontiguous_buf_char, block_lengths_[i] * old_type_->size()); else old_type_->serialize(noncontiguous_buf_char, contiguous_buf_char,block_lengths_[i]); @@ -252,14 +241,14 @@ void Type_Hindexed::serialize( void* noncontiguous_buf, void *contiguous_buf, } } -void Type_Hindexed::unserialize( void* contiguous_buf, void *noncontiguous_buf, +void Type_Hindexed::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+ block_indices_[0]; for (int j = 0; j < count; j++) { for (int i = 0; i < block_count_; i++) { - if (!(old_type_->flags() & DT_FLAG_DERIVED)){ - if(op!=MPI_OP_NULL) + if (not(old_type_->flags() & DT_FLAG_DERIVED)) { + if(op!=MPI_OP_NULL) op->apply( contiguous_buf_char, noncontiguous_buf_char, &block_lengths_[i], old_type_); }else @@ -299,13 +288,13 @@ Type_Struct::~Type_Struct(){ } -void Type_Struct::serialize( void* noncontiguous_buf, void *contiguous_buf, +void Type_Struct::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+ block_indices_[0]; for (int j = 0; j < count; j++) { for (int i = 0; i < block_count_; i++) { - if (!(old_types_[i]->flags() & DT_FLAG_DERIVED)) + if (not(old_types_[i]->flags() & DT_FLAG_DERIVED)) memcpy(contiguous_buf_char, noncontiguous_buf_char, block_lengths_[i] * old_types_[i]->size()); else old_types_[i]->serialize( noncontiguous_buf_char,contiguous_buf_char,block_lengths_[i]); @@ -321,14 +310,14 @@ void Type_Struct::serialize( void* noncontiguous_buf, void *contiguous_buf, } } -void Type_Struct::unserialize( void* contiguous_buf, void *noncontiguous_buf, +void Type_Struct::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){ char* contiguous_buf_char = static_cast(contiguous_buf); char* noncontiguous_buf_char = static_cast(noncontiguous_buf)+ block_indices_[0]; for (int j = 0; j < count; j++) { for (int i = 0; i < block_count_; i++) { - if (!(old_types_[i]->flags() & DT_FLAG_DERIVED)){ - if(op!=MPI_OP_NULL) + if (not(old_types_[i]->flags() & DT_FLAG_DERIVED)) { + if(op!=MPI_OP_NULL) op->apply( contiguous_buf_char, noncontiguous_buf_char, &block_lengths_[i], old_types_[i]); }else old_types_[i]->unserialize( contiguous_buf_char, noncontiguous_buf_char,block_lengths_[i], op);