Commit 1a7ab108 authored by Sandeep's avatar Sandeep Committed by Adam Procter

missed small nnp rename (#788)

parent aa8a7c11
...@@ -83,7 +83,7 @@ if(NGRAPH_CPU_ENABLE) ...@@ -83,7 +83,7 @@ if(NGRAPH_CPU_ENABLE)
set(MKLDNN_INCLUDE_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/include" PARENT_SCOPE) set(MKLDNN_INCLUDE_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/include" PARENT_SCOPE)
set(MKLDNN_LIB_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/lib" PARENT_SCOPE) set(MKLDNN_LIB_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/lib" PARENT_SCOPE)
# Other .cmake files in current scope (e.g. Argon Transformer) needs this path as well # Other .cmake files in current scope (e.g. NNP Transformer) needs this path as well
set(MKLDNN_INCLUDE_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/include") set(MKLDNN_INCLUDE_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/include")
set(MKLDNN_LIB_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/lib") set(MKLDNN_LIB_DIR "${EXTERNAL_PROJECTS_ROOT}/mkldnn/lib")
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
# limitations under the License. # limitations under the License.
# ****************************************************************************** # ******************************************************************************
# To build ngraph with Argon transformer using pre-build Argon API # To build ngraph with NNP transformer using pre-build Argon API
# ``` # ```
# cmake -DNGRAPH_NNP_ENABLE=True -DNGRAPH_PREBUILD_ARGON_API_PATH=$HOME/dev/system/_out/debug-x86_64-Linux .. # cmake -DNGRAPH_NNP_ENABLE=True -DNGRAPH_PREBUILD_ARGON_API_PATH=$HOME/dev/system/_out/debug-x86_64-Linux ..
# make -j # make -j
......
...@@ -45,12 +45,12 @@ declare NUM_FILES_CHECKED=0 ...@@ -45,12 +45,12 @@ declare NUM_FILES_CHECKED=0
pushd "${THIS_SCRIPT_DIR}/.." pushd "${THIS_SCRIPT_DIR}/.."
declare ARGON_SRC_DIR="build/third-party/nnp_transformer/src/ext_nnp_transformer/src" declare NNP_SRC_DIR="build/third-party/nnp_transformer/src/ext_nnp_transformer/src"
declare ARGON_TEST_DIR="build/third-party/nnp_transformer/src/ext_nnp_transformer/test" declare NNP_TEST_DIR="build/third-party/nnp_transformer/src/ext_nnp_transformer/test"
declare PYBIND_WRAPPER="python/pyngraph" declare PYBIND_WRAPPER="python/pyngraph"
declare ROOT_SUBDIR declare ROOT_SUBDIR
for ROOT_SUBDIR in src test ${ARGON_SRC_DIR} ${ARGON_TEST_DIR} ${PYBIND_WRAPPER}; do for ROOT_SUBDIR in src test ${NNP_SRC_DIR} ${NNP_TEST_DIR} ${PYBIND_WRAPPER}; do
if ! [[ -d "${ROOT_SUBDIR}" ]]; then if ! [[ -d "${ROOT_SUBDIR}" ]]; then
bash_lib_status "In directory '$(pwd)', no subdirectory named '${ROOT_SUBDIR}' was found." bash_lib_status "In directory '$(pwd)', no subdirectory named '${ROOT_SUBDIR}' was found."
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment