forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
202 additions
and
2,711 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# 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. | ||
# | ||
|
||
IF(MOBILE_INFERENCE) | ||
return() | ||
ENDIF() | ||
|
||
include (ExternalProject) | ||
|
||
# NOTE: snappy is needed when linking with recordio | ||
|
||
SET(SNAPPYSTREAM_SOURCES_DIR ${THIRD_PARTY_PATH}/snappy_stream) | ||
SET(SNAPPYSTREAM_INSTALL_DIR ${THIRD_PARTY_PATH}/install/snappy_stream) | ||
SET(SNAPPYSTREAM_INCLUDE_DIR "${SNAPPYSTREAM_INSTALL_DIR}/include/" CACHE PATH "snappy stream include directory." FORCE) | ||
|
||
ExternalProject_Add( | ||
extern_snappystream | ||
GIT_REPOSITORY "https://github.com/hoxnox/snappystream.git" | ||
GIT_TAG "0.2.8" | ||
PREFIX ${SNAPPYSTREAM_SOURCES_DIR} | ||
UPDATE_COMMAND "" | ||
CMAKE_ARGS -DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER} | ||
-DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} | ||
-DCMAKE_CXX_FLAGS=${CMAKE_CXX_FLAGS} | ||
-DCMAKE_C_FLAGS=${CMAKE_C_FLAGS} | ||
-DCMAKE_INSTALL_PREFIX=${SNAPPY_INSTALL_DIR} | ||
-DCMAKE_INSTALL_LIBDIR=${SNAPPY_INSTALL_DIR}/lib | ||
-DCMAKE_POSITION_INDEPENDENT_CODE=ON | ||
-DCMAKE_BUILD_TYPE=${THIRD_PARTY_BUILD_TYPE} | ||
-DSNAPPY_ROOT=${SNAPPY_INSTALL_DIR} | ||
${EXTERNAL_OPTIONAL_ARGS} | ||
CMAKE_CACHE_ARGS | ||
-DCMAKE_INSTALL_PREFIX:PATH=${SNAPPYSTREAM_INSTALL_DIR} | ||
-DCMAKE_INSTALL_LIBDIR:PATH=${SNAPPYSTREAM_INSTALL_DIR}/lib | ||
-DCMAKE_BUILD_TYPE:STRING=${THIRD_PARTY_BUILD_TYPE} | ||
BUILD_COMMAND make -j8 | ||
INSTALL_COMMAND make install | ||
DEPENDS snappy | ||
) | ||
|
||
add_library(snappystream STATIC IMPORTED GLOBAL) | ||
set_property(TARGET snappystream PROPERTY IMPORTED_LOCATION | ||
"${SNAPPYSTREAM_INSTALL_DIR}/lib/libsnappystream.a") | ||
|
||
include_directories(${SNAPPYSTREAM_INCLUDE_DIR}) | ||
add_dependencies(snappystream extern_snappystream) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,6 @@ | ||
# internal library. | ||
cc_library(io SRCS io.cc DEPS stringpiece) | ||
cc_test(io_test SRCS io_test.cc DEPS io) | ||
cc_library(header SRCS header.cc DEPS io) | ||
cc_library(header SRCS header.cc) | ||
cc_test(header_test SRCS header_test.cc DEPS header) | ||
cc_library(chunk SRCS chunk.cc DEPS snappy) | ||
cc_library(chunk SRCS chunk.cc DEPS snappystream snappy header zlib) | ||
cc_test(chunk_test SRCS chunk_test.cc DEPS chunk) | ||
cc_library(range_scanner SRCS range_scanner.cc DEPS io chunk) | ||
cc_test(range_scanner_test SRCS range_scanner_test.cc DEPS range_scanner) | ||
cc_library(scanner SRCS scanner.cc DEPS range_scanner) | ||
cc_test(scanner_test SRCS scanner_test.cc DEPS scanner) | ||
# exported library. | ||
cc_library(recordio SRCS recordio.cc DEPS scanner chunk header) | ||
cc_test(recordio_test SRCS recordio_test.cc DEPS scanner) | ||
cc_library(recordio DEPS chunk header) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.