]> AND Private Git Repository - kahina_paper2.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new master
authorcouturie <couturie@extinction>
Sat, 30 Apr 2016 08:20:28 +0000 (10:20 +0200)
committercouturie <couturie@extinction>
Sat, 30 Apr 2016 08:20:28 +0000 (10:20 +0200)
code.c
maj.tex

diff --git a/code.c b/code.c
index b27065314cf44b2931d375c7cb8470d1778fb86c..0059fc01a347919b9bf0c65295079e55efea39d2 100644 (file)
--- a/code.c
+++ b/code.c
@@ -77,7 +77,8 @@ cuDoubleComplex NewH_EA(int i, cuDoubleComplex *Z) {
 
 //kernels to update a root i
 __global__
-void Dev_EA(int i, cuDoubleComplex *Z, int size) {
+void Dev_EA(int i, cuDoubleComplex *Z, int* finished,
+           int size) {
   int i= blockIdx.x*blockDim.x+ threadIdx.x;
   if(i<size) {
     //if the root needs to be updated
diff --git a/maj.tex b/maj.tex
index ef1900914cd89dfa03a63bdcb19f95fd9c3829bb..d218adb20e02b64ae224564b4d7cd4d964721a95 100644 (file)
--- a/maj.tex
+++ b/maj.tex
@@ -330,7 +330,7 @@ Copy $Z$ from GPU to CPU\;
 Listing~\ref{lst:01} shows the a simplified version of second kernel
 code (some parameters in the kernels have been simplified in order to
 increase the readability). As can be seen this
-kernel calls multiple kernels, all the kernals for complex numbers and
+kernel calls multiple kernels, all the kernels for complex numbers and
 kernels for the evaluation of a polynomial are not detailed. 
 
 \begin{footnotesize}