Commit 890c22bb authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Implemeted tnlGridCUDA[1,2,3]D.

Fixing my name in source files :).
parent 7993aeec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
                          compress-file.cpp  -  description
                             -------------------
    begin                : 2007/07/02
    copyright            : (C) 2007 by Tomá¹ Oberhuber
    copyright            : (C) 2007 by Tomas Oberhuber
    email                : tomas.oberhuber@fjfi.cvut.cz
 ***************************************************************************/

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
                          compress-file.h  -  description
                             -------------------
    begin                : 2007/07/02
    copyright            : (C) 2007 by Tomá¹ Oberhuber
    copyright            : (C) 2007 by Tomas Oberhuber
    email                : tomas.oberhuber@fjfi.cvut.cz
 ***************************************************************************/

+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
                          param-types.h  -  description
                             -------------------
    begin                : 2009/07/29
    copyright            : (C) 2009 by Tomá¹ Oberhuber
    copyright            : (C) 2009 by Tomas Oberhuber
    email                : tomas.oberhuber@fjfi.cvut.cz
 ***************************************************************************/

+10 −11
Original line number Diff line number Diff line
@@ -17,14 +17,13 @@ using namespace std;
#define tnlAssert( ___tnl__assert_condition, ___tnl__assert_command )     \
	if( ! ___tnl__assert_condition )                                  \
	{                                                                 \
		cerr << "Assertion '___tnl__assert_condition' failed !!!" << endl
             << "File: __FILE__" << endl
             << "Function: __PRETTY_FUNCTION__ " << endl
             << "Line: __LINE__" << endl
             << "Diagnostics: ";
        ___tnl__assert_command;
        cerr << endl;
        exit( EXIT_FAILURE );
	cerr << "Assertion '___tnl__assert_condition' failed !!!" << endl \
             << "File: __FILE__" << endl                                  \
             << "Function: __PRETTY_FUNCTION__ " << endl                  \
             << "Line: __LINE__" << endl                                  \
             << "Diagnostics: ";                                          \
        ___tnl__assert_command;                                           \
        exit( EXIT_FAILURE );                                             \
	}
#else
#define tnlAssert( ___tnl__assert_condition, ___tnl__assert_command )
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
                          tnlConfigDescription.cpp  -  description
                             -------------------
    begin                : 2007/06/09
    copyright            : (C) 2007 by Tomá¹ Oberhuber
    copyright            : (C) 2007 by Tomas Oberhuber
    email                : tomas.oberhuber@fjfi.cvut.cz
 ***************************************************************************/

Loading