From 0ca0bcd00972cac2523f9f6ee620fd84d202ac99 Mon Sep 17 00:00:00 2001
From: Christian Godenschwager <christian.godenschwager@fau.de>
Date: Sat, 5 Aug 2017 02:33:53 +0200
Subject: [PATCH] Fixed some copy&paste bugs

---
 tests/cuda/CudaMPI.cpp                | 4 ++--
 tests/cuda/communication/CommTest.cpp | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/cuda/CudaMPI.cpp b/tests/cuda/CudaMPI.cpp
index 1669a1acd..56d03807f 100644
--- a/tests/cuda/CudaMPI.cpp
+++ b/tests/cuda/CudaMPI.cpp
@@ -44,7 +44,7 @@ void fullFieldTransfer()
    Field<double,4>  h_f1 ( 3, 4, 2, 42.0, field::fzyx );
    Field<double,4>  h_f2 ( 3, 4, 2, 27.0, field::fzyx );
 
-   cuda::GPUField<double> d_f ( 3, 4, 2, 4, 8.0, field::fzyx );
+   cuda::GPUField<double> d_f ( 3, 4, 2, 4, 0, field::fzyx );
 
 
    // Transfer h_f1 from CPU to GPU d_f
@@ -100,7 +100,7 @@ void blockStorageAndGui( int argc, char ** argv )
                return new GPUField( s->getNumberOfXCells(*block),
                                     s->getNumberOfYCells(*block),
                                     s->getNumberOfZCells(*block),
-                                    1 , 1.0);
+                                    1 , 1);
              },
              "GPU Field" );
 
diff --git a/tests/cuda/communication/CommTest.cpp b/tests/cuda/communication/CommTest.cpp
index ada3c766f..8233ac561 100644
--- a/tests/cuda/communication/CommTest.cpp
+++ b/tests/cuda/communication/CommTest.cpp
@@ -54,7 +54,7 @@ void hostToHost()
 void hostToDevice()
 {
 	Field<double, 1> hostField(SIZE_X, SIZE_Y, SIZE_Z, 4321.0, LAYOUT);
-	cuda::GPUField<double> deviceField(SIZE_X, SIZE_Y, SIZE_Z, 1, 0.0, LAYOUT);
+	cuda::GPUField<double> deviceField(SIZE_X, SIZE_Y, SIZE_Z, 1, 0, LAYOUT);
 
 	double startTime = MPI_Wtime();
 	for (int i = 0; i < NUM_ITER; ++i) {
-- 
GitLab