mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 13:30:34 +05:00
parallel
This commit is contained in:
parent
2d15141187
commit
70c854d00c
@ -9,9 +9,6 @@
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the `pthread' library (-lpthread). */
|
||||
#undef HAVE_LIBPTHREAD
|
||||
|
||||
/* Define to 1 if you have the <limits.h> header file. */
|
||||
#undef HAVE_LIMITS_H
|
||||
|
||||
@ -67,6 +64,9 @@
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
|
@ -88,7 +88,7 @@ AC_ARG_ENABLE([nglib],
|
||||
AC_ARG_ENABLE([parallel],
|
||||
[AC_HELP_STRING([--enable-parallel],[enable mpi parallelization])],
|
||||
[AC_SUBST([MPI_INCLUDES], "-I/usr/lib64/mpi/gcc/openmpi/include -DPARALLEL -I/usr/include/metis -I/home/lv70202/jschoebe/tcltk/include -DMETIS -I/usr/local/include/vampirtrace")
|
||||
AC_SUBST([MPI_LIBS], "-L/usr/lib64/mpi/gcc/openmpi/lib64 -L/home/lv70202/jschoebe/tcltk/lib -lmpi_cxx -lmetis")
|
||||
AC_SUBST([MPI_LIBS], "-L/usr/lib64/mpi/gcc/openmpi/lib64 -L/home/lv70202/jschoebe/tcltk/lib -lmetis -L/opt/sw/vampirtrace/lib")
|
||||
]
|
||||
)
|
||||
# -DVTRACE
|
||||
@ -141,7 +141,7 @@ AC_CHECK_FUNCS([floor])
|
||||
AC_CHECK_FUNCS([matherr])
|
||||
AC_CHECK_HEADERS([limits.h])
|
||||
|
||||
AC_CHECK_LIB(pthread, pthread_create)
|
||||
# AC_CHECK_LIB(pthread, pthread_create)
|
||||
|
||||
|
||||
|
||||
|
8280
ng/onetcl.cpp
8280
ng/onetcl.cpp
File diff suppressed because it is too large
Load Diff
@ -102,7 +102,8 @@ void ParallelRun()
|
||||
|
||||
bool test = true;
|
||||
|
||||
testout = new ofstream (string("testout_proc") + id );
|
||||
testout = new ostream(0);
|
||||
// new ofstream (string("testout_proc") + id );
|
||||
|
||||
while ( test )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user