diff --git a/README.md b/README.md index db2eb94b..61ff434e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Coverage Status](https://coveralls.io/repos/github/hariharan-devarajan/dftracer/badge.svg?branch=feature/apis)](https://coveralls.io/github/hariharan-devarajan/dftracer?branch=dev) [![Documentation Status](https://readthedocs.org/projects/dftracer/badge/?version=latest)](https://dftracer.readthedocs.io/en/latest/?badge=latest) -# DFTracer v1.0.0 +# DFTracer v1.0.1 A multi-level profiler for capturing application functions and low-level system I/O calls from deep learning workloads. Requirements for profiler diff --git a/docs/build.rst b/docs/build.rst index 6bbe8615..37f29c68 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -36,7 +36,7 @@ From Github .. code-block:: Bash - DFT_VERSION=v1.0.0 + DFT_VERSION=v1.0.1 pip install git+https://github.com/hariharan-devarajan/dftracer.git@${DFT_VERSION} .. attention:: diff --git a/docs/conf.py b/docs/conf.py index a487dcb9..ace87e06 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = u'0.0' # The full version, including alpha/beta/rc tags -release = u'1.0.0' +release = u'1.0.1' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 6032538c..f224654f 100644 --- a/setup.py +++ b/setup.py @@ -151,7 +151,7 @@ def build_extension(self, ext: CMakeExtension) -> None: # logic and declaration, and simpler if you include description/version in a file. setup( name="pydftracer", - version="1.0.0", + version="1.0.1", description="I/O profiler for deep learning python apps. Specifically for dlio_benchmark.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/test/paper/CMakeLists.txt b/test/paper/CMakeLists.txt index 432fb9e2..dec99f03 100644 --- a/test/paper/CMakeLists.txt +++ b/test/paper/CMakeLists.txt @@ -25,7 +25,7 @@ if (${MPI_FOUND}) else () message(FATAL_ERROR "-- [DFTRACER] MPI is needed for ${PROJECT_NAME} paper test build") endif () -find_package(cpp-logger 1.0.0 REQUIRED) +find_package(cpp-logger 0.0.4 REQUIRED) if (${cpp-logger_FOUND}) include_directories(${CPP_LOGGER_INCLUDE_DIRS}) set(TEST_DEPENDENCY_LIB ${TEST_DEPENDENCY_LIB} ${CPP_LOGGER_LIBRARIES})