Skip to content

Commit 61acf43

Browse files
authored
Merge pull request #4355 from roystgnr/nvtx_support
NVTX configure + PerfLog support
2 parents b3b65a8 + 448203b commit 61acf43

118 files changed

Lines changed: 1476 additions & 1110 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile.in

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -175,16 +175,16 @@ am__aclocal_m4_deps = \
175175
$(top_srcdir)/m4/namespaces.m4 $(top_srcdir)/m4/nanoflann.m4 \
176176
$(top_srcdir)/m4/nemesis.m4 $(top_srcdir)/m4/netcdf.m4 \
177177
$(top_srcdir)/m4/netgen.m4 $(top_srcdir)/m4/nlopt.m4 \
178-
$(top_srcdir)/m4/parmetis.m4 $(top_srcdir)/m4/petsc.m4 \
179-
$(top_srcdir)/m4/poly2tri.m4 $(top_srcdir)/m4/qhull.m4 \
180-
$(top_srcdir)/m4/sfc.m4 $(top_srcdir)/m4/slepc.m4 \
181-
$(top_srcdir)/m4/sstream.m4 $(top_srcdir)/m4/strstream.m4 \
182-
$(top_srcdir)/m4/tbb.m4 $(top_srcdir)/m4/tecio.m4 \
183-
$(top_srcdir)/m4/tecplot.m4 $(top_srcdir)/m4/tetgen.m4 \
184-
$(top_srcdir)/m4/threads.m4 $(top_srcdir)/m4/triangle.m4 \
185-
$(top_srcdir)/m4/trilinos.m4 $(top_srcdir)/m4/unordered.m4 \
186-
$(top_srcdir)/m4/vtk.m4 $(top_srcdir)/m4/xdr.m4 \
187-
$(top_srcdir)/configure.ac
178+
$(top_srcdir)/m4/nvtx.m4 $(top_srcdir)/m4/parmetis.m4 \
179+
$(top_srcdir)/m4/petsc.m4 $(top_srcdir)/m4/poly2tri.m4 \
180+
$(top_srcdir)/m4/qhull.m4 $(top_srcdir)/m4/sfc.m4 \
181+
$(top_srcdir)/m4/slepc.m4 $(top_srcdir)/m4/sstream.m4 \
182+
$(top_srcdir)/m4/strstream.m4 $(top_srcdir)/m4/tbb.m4 \
183+
$(top_srcdir)/m4/tecio.m4 $(top_srcdir)/m4/tecplot.m4 \
184+
$(top_srcdir)/m4/tetgen.m4 $(top_srcdir)/m4/threads.m4 \
185+
$(top_srcdir)/m4/triangle.m4 $(top_srcdir)/m4/trilinos.m4 \
186+
$(top_srcdir)/m4/unordered.m4 $(top_srcdir)/m4/vtk.m4 \
187+
$(top_srcdir)/m4/xdr.m4 $(top_srcdir)/configure.ac
188188
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
189189
$(ACLOCAL_M4)
190190
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
@@ -7559,6 +7559,7 @@ NODEPRECATEDFLAG = @NODEPRECATEDFLAG@
75597559
NOX_INCLUDES = @NOX_INCLUDES@
75607560
NOX_LIBS = @NOX_LIBS@
75617561
NOX_MAKEFILE_EXPORT = @NOX_MAKEFILE_EXPORT@
7562+
NVTX_INCLUDE = @NVTX_INCLUDE@
75627563
OBJDUMP = @OBJDUMP@
75637564
OBJEXT = @OBJEXT@
75647565
OPENMP_CFLAGS = @OPENMP_CFLAGS@

aclocal.m4

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1417,6 +1417,7 @@ m4_include([m4/nemesis.m4])
14171417
m4_include([m4/netcdf.m4])
14181418
m4_include([m4/netgen.m4])
14191419
m4_include([m4/nlopt.m4])
1420+
m4_include([m4/nvtx.m4])
14201421
m4_include([m4/parmetis.m4])
14211422
m4_include([m4/petsc.m4])
14221423
m4_include([m4/poly2tri.m4])

configure

Lines changed: 149 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -842,6 +842,7 @@ ax_pthread_config
842842
OPENMP_CXXFLAGS
843843
OPENMP_FFLAGS
844844
OPENMP_CFLAGS
845+
NVTX_INCLUDE
845846
TPETRA_INCLUDES
846847
TPETRA_LIBS
847848
ML_INCLUDES
@@ -1275,6 +1276,8 @@ with_nox
12751276
with_ml
12761277
with_tpetra
12771278
with_dtk
1279+
enable_nvtx
1280+
with_nvtx
12781281
with_thread_model
12791282
enable_openmp
12801283
enable_pthreads
@@ -2101,6 +2104,7 @@ Optional Features:
21012104
configure
21022105
--disable-slepc build without SLEPc eigen solver support
21032106
--disable-trilinos build without Trilinos support
2107+
--disable-nvtx build without annotation support via NVTX
21042108
--disable-openmp build without OpenMP support
21052109
--disable-pthreads build without POSIX threading (pthreads) support
21062110
--disable-tbb build without threading support via Threading
@@ -2222,6 +2226,7 @@ Optional Packages:
22222226
--with-ml=PATH Specify the path to ML installation
22232227
--with-tpetra=PATH Specify the path to Tpetra installation
22242228
--with-dtk=PATH Specify the path to Dtk installation
2229+
--with-nvtx=PATH Specify the path where NVTX is installed
22252230
--with-thread-model=tbb,pthread,openmp,auto,none
22262231
Specify the thread model to use
22272232
--with-tbb=PATH Specify the path where Threading Building Blocks is
@@ -56275,6 +56280,149 @@ fi
5627556280
# -------------------------------------------------------------
5627656281

5627756282

56283+
# -------------------------------------------------------------
56284+
# NVTX -- enabled by default
56285+
# -------------------------------------------------------------
56286+
56287+
# Check whether --enable-nvtx was given.
56288+
if test ${enable_nvtx+y}
56289+
then :
56290+
enableval=$enable_nvtx; case "${enableval}" in #(
56291+
yes) :
56292+
enablenvtx=yes ;; #(
56293+
no) :
56294+
enablenvtx=no ;; #(
56295+
*) :
56296+
as_fn_error $? "bad value ${enableval} for --enable-nvtx" "$LINENO" 5 ;;
56297+
esac
56298+
else case e in #(
56299+
e) enablenvtx=$enableoptional ;;
56300+
esac
56301+
fi
56302+
56303+
56304+
if test "x$enablenvtx" = "xyes"
56305+
then :
56306+
56307+
56308+
# Check whether --with-nvtx was given.
56309+
if test ${with_nvtx+y}
56310+
then :
56311+
withval=$with_nvtx; withnvtx=$withval
56312+
else case e in #(
56313+
e) withnvtx=$NVTX_DIR ;;
56314+
esac
56315+
fi
56316+
56317+
56318+
if test "$withnvtx" != no
56319+
then :
56320+
56321+
if test "x$withnvtx" = "x"
56322+
then :
56323+
withnvtx=/usr
56324+
fi
56325+
as_ac_Header=`printf "%s\n" "ac_cv_header_$withnvtx/include/nvtx3/nvtx3.hpp" | sed "$as_sed_sh"`
56326+
ac_fn_cxx_check_header_compile "$LINENO" "$withnvtx/include/nvtx3/nvtx3.hpp" "$as_ac_Header" "$ac_includes_default"
56327+
if eval test \"x\$"$as_ac_Header"\" = x"yes"
56328+
then :
56329+
NVTX_INCLUDE_PATH=$withnvtx/include
56330+
fi
56331+
56332+
56333+
fi
56334+
56335+
if test -r $NVTX_INCLUDE_PATH/nvtx3/nvtx3.hpp
56336+
then :
56337+
56338+
NVTX_INCLUDE=-I$NVTX_INCLUDE_PATH
56339+
56340+
else case e in #(
56341+
e) enablenvtx=no ;;
56342+
esac
56343+
fi
56344+
56345+
if test "x$enablenvtx" != "xno"
56346+
then :
56347+
56348+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for nvtx3::mark support" >&5
56349+
printf %s "checking for nvtx3::mark support... " >&6; }
56350+
ac_ext=cpp
56351+
ac_cpp='$CXXCPP $CPPFLAGS'
56352+
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
56353+
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
56354+
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
56355+
56356+
56357+
saveCXXFLAGS="$CXXFLAGS"
56358+
CXXFLAGS="$saveCXXFLAGS $NVTX_INCLUDE"
56359+
56360+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
56361+
/* end confdefs.h. */
56362+
56363+
#include <nvtx3/nvtx3.hpp>
56364+
56365+
int
56366+
main (void)
56367+
{
56368+
56369+
nvtx3::mark("Hello world!");
56370+
56371+
;
56372+
return 0;
56373+
}
56374+
_ACEOF
56375+
if ac_fn_cxx_try_compile "$LINENO"
56376+
then :
56377+
56378+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
56379+
printf "%s\n" "yes" >&6; }
56380+
enablenvtx=yes
56381+
56382+
else case e in #(
56383+
e)
56384+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
56385+
printf "%s\n" "no" >&6; }
56386+
enablenvtx=no
56387+
;;
56388+
esac
56389+
fi
56390+
rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
56391+
56392+
CXXFLAGS=$saveCXXFLAGS
56393+
56394+
ac_ext=cpp
56395+
ac_cpp='$CXXCPP $CPPFLAGS'
56396+
ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
56397+
ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
56398+
ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
56399+
56400+
56401+
fi
56402+
56403+
if test "x$enablenvtx" != "xno"
56404+
then :
56405+
56406+
56407+
56408+
printf "%s\n" "#define HAVE_NVTX_API 1" >>confdefs.h
56409+
56410+
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: <<< Configuring library with NVTX annotation support >>>" >&5
56411+
printf "%s\n" "<<< Configuring library with NVTX annotation support >>>" >&6; }
56412+
56413+
fi
56414+
56415+
fi
56416+
56417+
if test "$enablenvtx" = yes
56418+
then :
56419+
56420+
libmesh_optional_INCLUDES="$NVTX_INCLUDE $libmesh_optional_INCLUDES"
56421+
56422+
fi
56423+
# --------------------------------------------------------------
56424+
56425+
5627856426
# -------------------------------------------------------------
5627956427
# Choose between TBB, OpenMP, and pthreads thread models.
5628056428
# The user can control this by configuring with
@@ -68264,6 +68412,7 @@ then :
6826468412
fi
6826568413
printf "%s\n" " netgen........................... : $enablenetgen"
6826668414
printf "%s\n" " nlopt............................ : $enablenlopt"
68415+
printf "%s\n" " nvtx............................. : $enablenvtx"
6826768416
printf "%s\n" " parmetis......................... : $enableparmetis"
6826868417
printf "%s\n" " petsc............................ : $enablepetsc"
6826968418
if test "x$enablepetsc" = "xyes"

contrib/Makefile.in

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -301,16 +301,16 @@ am__aclocal_m4_deps = \
301301
$(top_srcdir)/m4/namespaces.m4 $(top_srcdir)/m4/nanoflann.m4 \
302302
$(top_srcdir)/m4/nemesis.m4 $(top_srcdir)/m4/netcdf.m4 \
303303
$(top_srcdir)/m4/netgen.m4 $(top_srcdir)/m4/nlopt.m4 \
304-
$(top_srcdir)/m4/parmetis.m4 $(top_srcdir)/m4/petsc.m4 \
305-
$(top_srcdir)/m4/poly2tri.m4 $(top_srcdir)/m4/qhull.m4 \
306-
$(top_srcdir)/m4/sfc.m4 $(top_srcdir)/m4/slepc.m4 \
307-
$(top_srcdir)/m4/sstream.m4 $(top_srcdir)/m4/strstream.m4 \
308-
$(top_srcdir)/m4/tbb.m4 $(top_srcdir)/m4/tecio.m4 \
309-
$(top_srcdir)/m4/tecplot.m4 $(top_srcdir)/m4/tetgen.m4 \
310-
$(top_srcdir)/m4/threads.m4 $(top_srcdir)/m4/triangle.m4 \
311-
$(top_srcdir)/m4/trilinos.m4 $(top_srcdir)/m4/unordered.m4 \
312-
$(top_srcdir)/m4/vtk.m4 $(top_srcdir)/m4/xdr.m4 \
313-
$(top_srcdir)/configure.ac
304+
$(top_srcdir)/m4/nvtx.m4 $(top_srcdir)/m4/parmetis.m4 \
305+
$(top_srcdir)/m4/petsc.m4 $(top_srcdir)/m4/poly2tri.m4 \
306+
$(top_srcdir)/m4/qhull.m4 $(top_srcdir)/m4/sfc.m4 \
307+
$(top_srcdir)/m4/slepc.m4 $(top_srcdir)/m4/sstream.m4 \
308+
$(top_srcdir)/m4/strstream.m4 $(top_srcdir)/m4/tbb.m4 \
309+
$(top_srcdir)/m4/tecio.m4 $(top_srcdir)/m4/tecplot.m4 \
310+
$(top_srcdir)/m4/tetgen.m4 $(top_srcdir)/m4/threads.m4 \
311+
$(top_srcdir)/m4/triangle.m4 $(top_srcdir)/m4/trilinos.m4 \
312+
$(top_srcdir)/m4/unordered.m4 $(top_srcdir)/m4/vtk.m4 \
313+
$(top_srcdir)/m4/xdr.m4 $(top_srcdir)/configure.ac
314314
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
315315
$(ACLOCAL_M4)
316316
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
@@ -656,6 +656,7 @@ NODEPRECATEDFLAG = @NODEPRECATEDFLAG@
656656
NOX_INCLUDES = @NOX_INCLUDES@
657657
NOX_LIBS = @NOX_LIBS@
658658
NOX_MAKEFILE_EXPORT = @NOX_MAKEFILE_EXPORT@
659+
NVTX_INCLUDE = @NVTX_INCLUDE@
659660
OBJDUMP = @OBJDUMP@
660661
OBJEXT = @OBJEXT@
661662
OPENMP_CFLAGS = @OPENMP_CFLAGS@

contrib/capnproto/Makefile.in

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,16 @@ am__aclocal_m4_deps = \
148148
$(top_srcdir)/m4/namespaces.m4 $(top_srcdir)/m4/nanoflann.m4 \
149149
$(top_srcdir)/m4/nemesis.m4 $(top_srcdir)/m4/netcdf.m4 \
150150
$(top_srcdir)/m4/netgen.m4 $(top_srcdir)/m4/nlopt.m4 \
151-
$(top_srcdir)/m4/parmetis.m4 $(top_srcdir)/m4/petsc.m4 \
152-
$(top_srcdir)/m4/poly2tri.m4 $(top_srcdir)/m4/qhull.m4 \
153-
$(top_srcdir)/m4/sfc.m4 $(top_srcdir)/m4/slepc.m4 \
154-
$(top_srcdir)/m4/sstream.m4 $(top_srcdir)/m4/strstream.m4 \
155-
$(top_srcdir)/m4/tbb.m4 $(top_srcdir)/m4/tecio.m4 \
156-
$(top_srcdir)/m4/tecplot.m4 $(top_srcdir)/m4/tetgen.m4 \
157-
$(top_srcdir)/m4/threads.m4 $(top_srcdir)/m4/triangle.m4 \
158-
$(top_srcdir)/m4/trilinos.m4 $(top_srcdir)/m4/unordered.m4 \
159-
$(top_srcdir)/m4/vtk.m4 $(top_srcdir)/m4/xdr.m4 \
160-
$(top_srcdir)/configure.ac
151+
$(top_srcdir)/m4/nvtx.m4 $(top_srcdir)/m4/parmetis.m4 \
152+
$(top_srcdir)/m4/petsc.m4 $(top_srcdir)/m4/poly2tri.m4 \
153+
$(top_srcdir)/m4/qhull.m4 $(top_srcdir)/m4/sfc.m4 \
154+
$(top_srcdir)/m4/slepc.m4 $(top_srcdir)/m4/sstream.m4 \
155+
$(top_srcdir)/m4/strstream.m4 $(top_srcdir)/m4/tbb.m4 \
156+
$(top_srcdir)/m4/tecio.m4 $(top_srcdir)/m4/tecplot.m4 \
157+
$(top_srcdir)/m4/tetgen.m4 $(top_srcdir)/m4/threads.m4 \
158+
$(top_srcdir)/m4/triangle.m4 $(top_srcdir)/m4/trilinos.m4 \
159+
$(top_srcdir)/m4/unordered.m4 $(top_srcdir)/m4/vtk.m4 \
160+
$(top_srcdir)/m4/xdr.m4 $(top_srcdir)/configure.ac
161161
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
162162
$(ACLOCAL_M4)
163163
DIST_COMMON = $(srcdir)/Makefile.am $(am__include_HEADERS_DIST) \
@@ -505,6 +505,7 @@ NODEPRECATEDFLAG = @NODEPRECATEDFLAG@
505505
NOX_INCLUDES = @NOX_INCLUDES@
506506
NOX_LIBS = @NOX_LIBS@
507507
NOX_MAKEFILE_EXPORT = @NOX_MAKEFILE_EXPORT@
508+
NVTX_INCLUDE = @NVTX_INCLUDE@
508509
OBJDUMP = @OBJDUMP@
509510
OBJEXT = @OBJEXT@
510511
OPENMP_CFLAGS = @OPENMP_CFLAGS@

contrib/eigen/gitshim/Makefile.in

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -145,16 +145,16 @@ am__aclocal_m4_deps = \
145145
$(top_srcdir)/m4/namespaces.m4 $(top_srcdir)/m4/nanoflann.m4 \
146146
$(top_srcdir)/m4/nemesis.m4 $(top_srcdir)/m4/netcdf.m4 \
147147
$(top_srcdir)/m4/netgen.m4 $(top_srcdir)/m4/nlopt.m4 \
148-
$(top_srcdir)/m4/parmetis.m4 $(top_srcdir)/m4/petsc.m4 \
149-
$(top_srcdir)/m4/poly2tri.m4 $(top_srcdir)/m4/qhull.m4 \
150-
$(top_srcdir)/m4/sfc.m4 $(top_srcdir)/m4/slepc.m4 \
151-
$(top_srcdir)/m4/sstream.m4 $(top_srcdir)/m4/strstream.m4 \
152-
$(top_srcdir)/m4/tbb.m4 $(top_srcdir)/m4/tecio.m4 \
153-
$(top_srcdir)/m4/tecplot.m4 $(top_srcdir)/m4/tetgen.m4 \
154-
$(top_srcdir)/m4/threads.m4 $(top_srcdir)/m4/triangle.m4 \
155-
$(top_srcdir)/m4/trilinos.m4 $(top_srcdir)/m4/unordered.m4 \
156-
$(top_srcdir)/m4/vtk.m4 $(top_srcdir)/m4/xdr.m4 \
157-
$(top_srcdir)/configure.ac
148+
$(top_srcdir)/m4/nvtx.m4 $(top_srcdir)/m4/parmetis.m4 \
149+
$(top_srcdir)/m4/petsc.m4 $(top_srcdir)/m4/poly2tri.m4 \
150+
$(top_srcdir)/m4/qhull.m4 $(top_srcdir)/m4/sfc.m4 \
151+
$(top_srcdir)/m4/slepc.m4 $(top_srcdir)/m4/sstream.m4 \
152+
$(top_srcdir)/m4/strstream.m4 $(top_srcdir)/m4/tbb.m4 \
153+
$(top_srcdir)/m4/tecio.m4 $(top_srcdir)/m4/tecplot.m4 \
154+
$(top_srcdir)/m4/tetgen.m4 $(top_srcdir)/m4/threads.m4 \
155+
$(top_srcdir)/m4/triangle.m4 $(top_srcdir)/m4/trilinos.m4 \
156+
$(top_srcdir)/m4/unordered.m4 $(top_srcdir)/m4/vtk.m4 \
157+
$(top_srcdir)/m4/xdr.m4 $(top_srcdir)/configure.ac
158158
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
159159
$(ACLOCAL_M4)
160160
DIST_COMMON = $(srcdir)/Makefile.am $(nobase_include_HEADERS) \
@@ -389,6 +389,7 @@ NODEPRECATEDFLAG = @NODEPRECATEDFLAG@
389389
NOX_INCLUDES = @NOX_INCLUDES@
390390
NOX_LIBS = @NOX_LIBS@
391391
NOX_MAKEFILE_EXPORT = @NOX_MAKEFILE_EXPORT@
392+
NVTX_INCLUDE = @NVTX_INCLUDE@
392393
OBJDUMP = @OBJDUMP@
393394
OBJEXT = @OBJEXT@
394395
OPENMP_CFLAGS = @OPENMP_CFLAGS@

contrib/exodusii/5.22b/exodus/Makefile.in

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -157,16 +157,16 @@ am__aclocal_m4_deps = \
157157
$(top_srcdir)/m4/namespaces.m4 $(top_srcdir)/m4/nanoflann.m4 \
158158
$(top_srcdir)/m4/nemesis.m4 $(top_srcdir)/m4/netcdf.m4 \
159159
$(top_srcdir)/m4/netgen.m4 $(top_srcdir)/m4/nlopt.m4 \
160-
$(top_srcdir)/m4/parmetis.m4 $(top_srcdir)/m4/petsc.m4 \
161-
$(top_srcdir)/m4/poly2tri.m4 $(top_srcdir)/m4/qhull.m4 \
162-
$(top_srcdir)/m4/sfc.m4 $(top_srcdir)/m4/slepc.m4 \
163-
$(top_srcdir)/m4/sstream.m4 $(top_srcdir)/m4/strstream.m4 \
164-
$(top_srcdir)/m4/tbb.m4 $(top_srcdir)/m4/tecio.m4 \
165-
$(top_srcdir)/m4/tecplot.m4 $(top_srcdir)/m4/tetgen.m4 \
166-
$(top_srcdir)/m4/threads.m4 $(top_srcdir)/m4/triangle.m4 \
167-
$(top_srcdir)/m4/trilinos.m4 $(top_srcdir)/m4/unordered.m4 \
168-
$(top_srcdir)/m4/vtk.m4 $(top_srcdir)/m4/xdr.m4 \
169-
$(top_srcdir)/configure.ac
160+
$(top_srcdir)/m4/nvtx.m4 $(top_srcdir)/m4/parmetis.m4 \
161+
$(top_srcdir)/m4/petsc.m4 $(top_srcdir)/m4/poly2tri.m4 \
162+
$(top_srcdir)/m4/qhull.m4 $(top_srcdir)/m4/sfc.m4 \
163+
$(top_srcdir)/m4/slepc.m4 $(top_srcdir)/m4/sstream.m4 \
164+
$(top_srcdir)/m4/strstream.m4 $(top_srcdir)/m4/tbb.m4 \
165+
$(top_srcdir)/m4/tecio.m4 $(top_srcdir)/m4/tecplot.m4 \
166+
$(top_srcdir)/m4/tetgen.m4 $(top_srcdir)/m4/threads.m4 \
167+
$(top_srcdir)/m4/triangle.m4 $(top_srcdir)/m4/trilinos.m4 \
168+
$(top_srcdir)/m4/unordered.m4 $(top_srcdir)/m4/vtk.m4 \
169+
$(top_srcdir)/m4/xdr.m4 $(top_srcdir)/configure.ac
170170
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
171171
$(ACLOCAL_M4)
172172
DIST_COMMON = $(srcdir)/Makefile.am $(am__include_HEADERS_DIST) \
@@ -3372,6 +3372,7 @@ NODEPRECATEDFLAG = @NODEPRECATEDFLAG@
33723372
NOX_INCLUDES = @NOX_INCLUDES@
33733373
NOX_LIBS = @NOX_LIBS@
33743374
NOX_MAKEFILE_EXPORT = @NOX_MAKEFILE_EXPORT@
3375+
NVTX_INCLUDE = @NVTX_INCLUDE@
33753376
OBJDUMP = @OBJDUMP@
33763377
OBJEXT = @OBJEXT@
33773378
OPENMP_CFLAGS = @OPENMP_CFLAGS@

0 commit comments

Comments
 (0)