Skip to content

Commit

Permalink
fixed resolution issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghh04 committed Sep 13, 2023
1 parent c7d9f96 commit be2d049
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
12 changes: 10 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dnl Process this file with GNU autoconf(1) to produce a configure script.
dnl

dnl autoconf v2.69 was released in 2012-04-24
AC_PREREQ([2.69])
AC_PREREQ([2.71])
AC_INIT([e3sm_io],[1.3.0],[],[e3sm_io],[])

AM_EXTRA_RECURSIVE_TARGETS([tests])
Expand Down Expand Up @@ -217,7 +217,15 @@ dnl AC_PROG_RANLIB
LT_INIT

AC_HEADER_STAT
AC_HEADER_STDC
m4_warn([obsolete],
[The preprocessor macro `STDC_HEADERS' is obsolete.
Except in unusual embedded environments, you can safely include all
ISO C90 headers unconditionally.])dnl
# Autoupdate added the next two lines to ensure that your configure
# script's behavior did not change. They are probably safe to remove.
AC_CHECK_INCLUDES_DEFAULT
AC_PROG_EGREP

AC_CHECK_HEADERS([fts.h])
if test "x$ac_cv_header_fts_h" != xyes ; then
# Force to use MPICXX to check C++ header
Expand Down
5 changes: 0 additions & 5 deletions src/cases/var_wr_case.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -420,19 +420,14 @@ int e3sm_io_case::var_wr_case(e3sm_io_config &cfg,
}
}
}
<<<<<<< HEAD
#ifdef ENABLE_CACHE_VOL
hid_t fd;
if (cfg.api == hdf5) {
driver.inq_file_id(ncid, &fd);
H5Fcache_async_op_pause(fd);
}
#endif
/* write all climate variables */
=======

/* write all climate record variables */
>>>>>>> 037cb7ab18c152f01417ad6711052d742075de72
for (j=num_decomp_vars; j<nvars; j++) {

if (!vars[j].isRecVar) continue;
Expand Down

0 comments on commit be2d049

Please sign in to comment.