diff --git a/CMakeLists.txt b/CMakeLists.txt index acbf2471473..9537635d69f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,8 +49,9 @@ endif () set(LBANN_VERSION_MAJOR 0) set(LBANN_VERSION_MINOR 97) +set(LBANN_VERSION_PATCH 1) -set(LBANN_VERSION "${LBANN_VERSION_MAJOR}.${LBANN_VERSION_MINOR}") +set(LBANN_VERSION "${LBANN_VERSION_MAJOR}.${LBANN_VERSION_MINOR}.${LBANN_VERSION_PATCH}") # Check to see if we are in a git repo find_program(__GIT_EXECUTABLE git) diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index b87b47b81dc..d0c8c4aaa05 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -17,6 +17,10 @@ Build system: Retired features: +============================== Release Notes: v0.97.1 ============================== +Bug Fixes: + - Removed deprecated header file include + ============================== Release Notes: v0.97 ============================== Support for new layers: - Mean absolute error and L1 norm diff --git a/src/callbacks/callback_ltfb.cpp b/src/callbacks/callback_ltfb.cpp index f55262e6f4b..6f6f7924a19 100644 --- a/src/callbacks/callback_ltfb.cpp +++ b/src/callbacks/callback_ltfb.cpp @@ -26,7 +26,6 @@ #include "lbann/callbacks/callback_ltfb.hpp" #include "lbann/callbacks/callback_imcomm.hpp" -#include "lbann/metrics/categorical_accuracy.hpp" #include "lbann/utils/random.hpp" #include #include