git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2152 331e1502-861f-0410-8da2-ba01fb791d7f

This commit is contained in:
boufaras 2011-02-10 13:56:56 +00:00
commit 9ba9cb7587

View file

@ -2,7 +2,7 @@
<t-memory.cu> <t-memory.cu>
Copyright (C) DOLPHIN Project-Team, INRIA Lille - Nord Europe, 2006-2010 Copyright (C) DOLPHIN Project-Team, INRIA Lille - Nord Europe, 2006-2010
Thé Van LUONG, Karima Boufaras Karima Boufaras, Thé Van LUONG
This software is governed by the CeCILL license under French law and This software is governed by the CeCILL license under French law and
abiding by the rules of distribution of free software. You can use, abiding by the rules of distribution of free software. You can use,
@ -67,7 +67,6 @@ int main() {
//test copy from device to host //test copy from device to host
cpy(cpy_data,d_data,5,0); cpy(cpy_data,d_data,5,0);
i=0;
for(i=0;i<5;i++) for(i=0;i<5;i++)
assert(cpy_data[i]==i); assert(cpy_data[i]==i);
@ -88,4 +87,3 @@ int main() {
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }