commit
61fa5218b9
@ -0,0 +1,92 @@
|
||||
# Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
add_library(ngraph INTERFACE)
|
||||
|
||||
IF(WIN32 OR APPLE)
|
||||
MESSAGE(WARNING
|
||||
"Windows or Mac is not supported with nGraph in Paddle yet."
|
||||
"Force WITH_NGRAPH=OFF")
|
||||
SET(WITH_NGRAPH OFF CACHE STRING "Disable nGraph in Windows and MacOS" FORCE)
|
||||
ENDIF()
|
||||
|
||||
IF(${WITH_NGRAPH} AND NOT ${WITH_MKLDNN})
|
||||
MESSAGE(WARNING
|
||||
"nGraph needs mkl-dnn to be enabled."
|
||||
"Force WITH_NGRAPH=OFF")
|
||||
SET(WITH_NGRAPH OFF CACHE STRING "Disable nGraph if mkl-dnn is disabled" FORCE)
|
||||
ENDIF()
|
||||
|
||||
IF(NOT ${WITH_NGRAPH})
|
||||
return()
|
||||
ENDIF()
|
||||
|
||||
INCLUDE(ExternalProject)
|
||||
|
||||
SET(NGRAPH_PROJECT "extern_ngraph")
|
||||
SET(NGRAPH_VERSION "0.9")
|
||||
SET(NGRAPH_GIT_TAG "f9fd9d4cc318dc59dd4b68448e7fbb5f67a28bd0")
|
||||
SET(NGRAPH_SOURCES_DIR ${THIRD_PARTY_PATH}/ngraph)
|
||||
SET(NGRAPH_INSTALL_DIR ${THIRD_PARTY_PATH}/install/ngraph)
|
||||
SET(NGRAPH_INC_DIR ${NGRAPH_INSTALL_DIR}/include)
|
||||
SET(NGRAPH_SHARED_LIB_NAME libngraph.so.${NGRAPH_VERSION})
|
||||
SET(NGRAPH_CPU_LIB_NAME libcpu_backend.so)
|
||||
SET(NGRAPH_TBB_LIB_NAME libtbb.so.2)
|
||||
SET(NGRAPH_GIT_REPO "https://github.com/NervanaSystems/ngraph.git")
|
||||
|
||||
ExternalProject_Add(
|
||||
${NGRAPH_PROJECT}
|
||||
${EXTERNAL_PROJECT_LOG_ARGS}
|
||||
DEPENDS ${MKLDNN_PROJECT} ${MKLML_PROJECT}
|
||||
GIT_REPOSITORY ${NGRAPH_GIT_REPO}
|
||||
GIT_TAG ${NGRAPH_GIT_TAG}
|
||||
PREFIX ${NGRAPH_SOURCES_DIR}
|
||||
UPDATE_COMMAND ""
|
||||
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX=${NGRAPH_INSTALL_DIR}
|
||||
CMAKE_ARGS -DNGRAPH_UNIT_TEST_ENABLE=FALSE
|
||||
CMAKE_ARGS -DNGRAPH_TOOLS_ENABLE=FALSE
|
||||
CMAKE_ARGS -DNGRAPH_INTERPRETER_ENABLE=FALSE
|
||||
CMAKE_ARGS -DNGRAPH_DEX_ONLY=TRUE
|
||||
CMAKE_ARGS -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
|
||||
CMAKE_ARGS -DMKLDNN_INCLUDE_DIR=${MKLDNN_INC_DIR}
|
||||
CMAKE_ARGS -DMKLDNN_LIB_DIR=${MKLDNN_INSTALL_DIR}/lib
|
||||
)
|
||||
|
||||
if(UNIX AND NOT APPLE)
|
||||
include(GNUInstallDirs)
|
||||
SET(NGRAPH_LIB_DIR ${NGRAPH_INSTALL_DIR}/${CMAKE_INSTALL_LIBDIR})
|
||||
else()
|
||||
SET(NGRAPH_LIB_DIR ${NGRAPH_INSTALL_DIR}/lib)
|
||||
endif()
|
||||
MESSAGE(STATUS "nGraph lib will be installed at: ${NGRAPH_LIB_DIR}")
|
||||
|
||||
SET(NGRAPH_SHARED_LIB ${NGRAPH_LIB_DIR}/${NGRAPH_SHARED_LIB_NAME})
|
||||
SET(NGRAPH_CPU_LIB ${NGRAPH_LIB_DIR}/${NGRAPH_CPU_LIB_NAME})
|
||||
SET(NGRAPH_TBB_LIB ${NGRAPH_LIB_DIR}/${NGRAPH_TBB_LIB_NAME})
|
||||
|
||||
# Workaround for nGraph expecting mklml to be in mkldnn install directory.
|
||||
ExternalProject_Add_Step(
|
||||
${NGRAPH_PROJECT}
|
||||
PrepareMKL
|
||||
COMMAND ${CMAKE_COMMAND} -E create_symlink ${MKLML_LIB} ${MKLDNN_INSTALL_DIR}/lib/libmklml_intel.so
|
||||
COMMAND ${CMAKE_COMMAND} -E create_symlink ${MKLML_IOMP_LIB} ${MKLDNN_INSTALL_DIR}/lib/libiomp5.so
|
||||
DEPENDEES download
|
||||
DEPENDERS configure
|
||||
)
|
||||
|
||||
add_dependencies(ngraph ${NGRAPH_PROJECT})
|
||||
target_compile_definitions(ngraph INTERFACE -DPADDLE_WITH_NGRAPH)
|
||||
target_include_directories(ngraph INTERFACE ${NGRAPH_INC_DIR})
|
||||
target_link_libraries(ngraph INTERFACE ${NGRAPH_SHARED_LIB})
|
||||
LIST(APPEND external_project_dependencies ngraph)
|
@ -0,0 +1,25 @@
|
||||
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "paddle/fluid/operators/reduce_min_max_op.h"
|
||||
|
||||
REGISTER_OP_CUDA_KERNEL(
|
||||
reduce_max_grad, ops::ReduceGradKernel<paddle::platform::CUDADeviceContext,
|
||||
float, ops::MaxOrMinGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, double,
|
||||
ops::MaxOrMinGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int,
|
||||
ops::MaxOrMinGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int64_t,
|
||||
ops::MaxOrMinGradFunctor>);
|
@ -0,0 +1,26 @@
|
||||
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// .part used to speed up nvcc compile
|
||||
#include "paddle/fluid/operators/reduce_mean_op.h"
|
||||
|
||||
REGISTER_OP_CUDA_KERNEL(
|
||||
reduce_mean_grad, ops::ReduceGradKernel<paddle::platform::CUDADeviceContext,
|
||||
float, ops::MeanGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, double,
|
||||
ops::MeanGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int,
|
||||
ops::MeanGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int64_t,
|
||||
ops::MeanGradFunctor>);
|
@ -0,0 +1,25 @@
|
||||
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "paddle/fluid/operators/reduce_min_max_op.h"
|
||||
|
||||
REGISTER_OP_CUDA_KERNEL(
|
||||
reduce_min_grad, ops::ReduceGradKernel<paddle::platform::CUDADeviceContext,
|
||||
float, ops::MaxOrMinGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, double,
|
||||
ops::MaxOrMinGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int,
|
||||
ops::MaxOrMinGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int64_t,
|
||||
ops::MaxOrMinGradFunctor>);
|
@ -0,0 +1,25 @@
|
||||
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "paddle/fluid/operators/reduce_prod_op.h"
|
||||
|
||||
REGISTER_OP_CUDA_KERNEL(
|
||||
reduce_prod_grad, ops::ReduceGradKernel<paddle::platform::CUDADeviceContext,
|
||||
float, ops::ProdGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, double,
|
||||
ops::ProdGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int,
|
||||
ops::ProdGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int64_t,
|
||||
ops::ProdGradFunctor>);
|
@ -0,0 +1,26 @@
|
||||
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "paddle/fluid/operators/cub_reduce.h"
|
||||
#include "paddle/fluid/operators/reduce_sum_op.h"
|
||||
|
||||
REGISTER_OP_CUDA_KERNEL(
|
||||
reduce_sum_grad, ops::ReduceGradKernel<paddle::platform::CUDADeviceContext,
|
||||
float, ops::SumGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, double,
|
||||
ops::SumGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int,
|
||||
ops::SumGradFunctor>,
|
||||
ops::ReduceGradKernel<paddle::platform::CUDADeviceContext, int64_t,
|
||||
ops::SumGradFunctor>);
|
Loading…
Reference in new issue