Revision: 27
http://c-mpi.svn.sourceforge.net/c-mpi/?rev=27&view=rev
Author: jmwozniak
Date: 2010-04-20 17:42:29 +0000 (Tue, 20 Apr 2010)
Log Message:
-----------
Better name.
Added Paths:
-----------
test/mpi_tools/test-tools01.c
Removed Paths:
-------------
test/mpi_tools/test01.c
Copied: test/mpi_tools/test-tools01.c (from rev 26, test/mpi_tools/test01.c)
===================================================================
--- test/mpi_tools/test-tools01.c (rev 0)
+++ test/mpi_tools/test-tools01.c 2010-04-20 17:42:29 UTC (rev 27)
@@ -0,0 +1,25 @@
+
+/**
+ Test math functions and simple output.
+*/
+
+#include <mpi_tools.h>
+
+int
+main(int argc, char* argv[])
+{
+ MPI_Init(&argc, &argv);
+
+ whoami();
+
+ int i;
+ for (i = 0; i < 20; i++)
+ {
+ SHOW_II(i, ilog2(i));
+ SHOW_II(i, isqrt(i));
+ }
+
+ MPI_Finalize();
+
+ return 0;
+}
Property changes on: test/mpi_tools/test-tools01.c
___________________________________________________________________
Added: svn:mergeinfo
+
Deleted: test/mpi_tools/test01.c
===================================================================
--- test/mpi_tools/test01.c 2010-04-20 17:40:43 UTC (rev 26)
+++ test/mpi_tools/test01.c 2010-04-20 17:42:29 UTC (rev 27)
@@ -1,25 +0,0 @@
-
-/**
- Test math functions and simple output.
-*/
-
-#include <mpi_tools.h>
-
-int
-main(int argc, char* argv[])
-{
- MPI_Init(&argc, &argv);
-
- whoami();
-
- int i;
- for (i = 0; i < 20; i++)
- {
- SHOW_II(i, ilog2(i));
- SHOW_II(i, isqrt(i));
- }
-
- MPI_Finalize();
-
- return 0;
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|