revert-15296-async_double_buffered_py_reader
commit
06f2448848
@ -1,147 +0,0 @@
|
||||
# - This module looks for Sphinx
|
||||
# Find the Sphinx documentation generator
|
||||
#
|
||||
# This modules defines
|
||||
# SPHINX_EXECUTABLE
|
||||
# SPHINX_FOUND
|
||||
|
||||
find_program(SPHINX_EXECUTABLE
|
||||
NAMES sphinx-build
|
||||
PATHS
|
||||
/usr/bin
|
||||
/usr/local/bin
|
||||
/opt/local/bin
|
||||
DOC "Sphinx documentation generator"
|
||||
)
|
||||
|
||||
if( NOT SPHINX_EXECUTABLE )
|
||||
set(_Python_VERSIONS
|
||||
2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0 1.6 1.5
|
||||
)
|
||||
|
||||
foreach( _version ${_Python_VERSIONS} )
|
||||
set( _sphinx_NAMES sphinx-build-${_version} )
|
||||
|
||||
find_program( SPHINX_EXECUTABLE
|
||||
NAMES ${_sphinx_NAMES}
|
||||
PATHS
|
||||
/usr/bin
|
||||
/usr/local/bin
|
||||
/opt/loca/bin
|
||||
DOC "Sphinx documentation generator"
|
||||
)
|
||||
endforeach()
|
||||
endif()
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
|
||||
find_package_handle_standard_args(Sphinx DEFAULT_MSG
|
||||
SPHINX_EXECUTABLE
|
||||
)
|
||||
|
||||
|
||||
option( SPHINX_HTML_OUTPUT "Build a single HTML with the whole content." ON )
|
||||
option( SPHINX_DIRHTML_OUTPUT "Build HTML pages, but with a single directory per document." OFF )
|
||||
option( SPHINX_HTMLHELP_OUTPUT "Build HTML pages with additional information for building a documentation collection in htmlhelp." OFF )
|
||||
option( SPHINX_QTHELP_OUTPUT "Build HTML pages with additional information for building a documentation collection in qthelp." OFF )
|
||||
option( SPHINX_DEVHELP_OUTPUT "Build HTML pages with additional information for building a documentation collection in devhelp." OFF )
|
||||
option( SPHINX_EPUB_OUTPUT "Build HTML pages with additional information for building a documentation collection in epub." OFF )
|
||||
option( SPHINX_LATEX_OUTPUT "Build LaTeX sources that can be compiled to a PDF document using pdflatex." OFF )
|
||||
option( SPHINX_MAN_OUTPUT "Build manual pages in groff format for UNIX systems." OFF )
|
||||
option( SPHINX_TEXT_OUTPUT "Build plain text files." OFF )
|
||||
|
||||
|
||||
mark_as_advanced(
|
||||
SPHINX_EXECUTABLE
|
||||
SPHINX_HTML_OUTPUT
|
||||
SPHINX_DIRHTML_OUTPUT
|
||||
SPHINX_HTMLHELP_OUTPUT
|
||||
SPHINX_QTHELP_OUTPUT
|
||||
SPHINX_DEVHELP_OUTPUT
|
||||
SPHINX_EPUB_OUTPUT
|
||||
SPHINX_LATEX_OUTPUT
|
||||
SPHINX_MAN_OUTPUT
|
||||
SPHINX_TEXT_OUTPUT
|
||||
)
|
||||
|
||||
function( Sphinx_add_target target_name builder conf cache source destination )
|
||||
add_custom_target( ${target_name} ALL
|
||||
COMMAND ${SPHINX_EXECUTABLE} -b ${builder}
|
||||
-d ${cache}
|
||||
-c ${conf}
|
||||
${source}
|
||||
${destination}
|
||||
COMMENT "Generating sphinx documentation: ${builder}"
|
||||
COMMAND cd ${destination} && ln -sf ./index_*.html index.html
|
||||
)
|
||||
|
||||
set_property(
|
||||
DIRECTORY APPEND PROPERTY
|
||||
ADDITIONAL_MAKE_CLEAN_FILES
|
||||
${destination}
|
||||
)
|
||||
endfunction()
|
||||
|
||||
# Target dependencies can be optionally listed at the end.
|
||||
function( Sphinx_add_targets target_base_name conf source base_destination )
|
||||
|
||||
set( _dependencies )
|
||||
|
||||
foreach( arg IN LISTS ARGN )
|
||||
set( _dependencies ${_dependencies} ${arg} )
|
||||
endforeach()
|
||||
|
||||
if( ${SPHINX_HTML_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_html html ${conf} ${source} ${base_destination}/html )
|
||||
|
||||
add_dependencies( ${target_base_name}_html ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_DIRHTML_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_dirhtml dirhtml ${conf} ${source} ${base_destination}/dirhtml )
|
||||
|
||||
add_dependencies( ${target_base_name}_dirhtml ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_QTHELP_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_qthelp qthelp ${conf} ${source} ${base_destination}/qthelp )
|
||||
|
||||
add_dependencies( ${target_base_name}_qthelp ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_DEVHELP_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_devhelp devhelp ${conf} ${source} ${base_destination}/devhelp )
|
||||
|
||||
add_dependencies( ${target_base_name}_devhelp ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_EPUB_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_epub epub ${conf} ${source} ${base_destination}/epub )
|
||||
|
||||
add_dependencies( ${target_base_name}_epub ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_LATEX_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_latex latex ${conf} ${source} ${base_destination}/latex )
|
||||
|
||||
add_dependencies( ${target_base_name}_latex ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_MAN_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_man man ${conf} ${source} ${base_destination}/man )
|
||||
|
||||
add_dependencies( ${target_base_name}_man ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${SPHINX_TEXT_OUTPUT} )
|
||||
Sphinx_add_target( ${target_base_name}_text text ${conf} ${source} ${base_destination}/text )
|
||||
|
||||
add_dependencies( ${target_base_name}_text ${_dependencies} )
|
||||
endif()
|
||||
|
||||
if( ${BUILD_TESTING} )
|
||||
sphinx_add_target( ${target_base_name}_linkcheck linkcheck ${conf} ${source} ${base_destination}/linkcheck )
|
||||
|
||||
add_dependencies( ${target_base_name}_linkcheck ${_dependencies} )
|
||||
endif()
|
||||
endfunction()
|
@ -0,0 +1,223 @@
|
||||
// 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/inference/tests/api/tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
|
||||
using paddle::PaddleTensor;
|
||||
|
||||
template <typename T>
|
||||
void GetValueFromStream(std::stringstream *ss, T *t) {
|
||||
(*ss) >> (*t);
|
||||
}
|
||||
|
||||
template <>
|
||||
void GetValueFromStream<std::string>(std::stringstream *ss, std::string *t) {
|
||||
*t = ss->str();
|
||||
}
|
||||
|
||||
// Split string to vector
|
||||
template <typename T>
|
||||
void Split(const std::string &line, char sep, std::vector<T> *v) {
|
||||
std::stringstream ss;
|
||||
T t;
|
||||
for (auto c : line) {
|
||||
if (c != sep) {
|
||||
ss << c;
|
||||
} else {
|
||||
GetValueFromStream<T>(&ss, &t);
|
||||
v->push_back(std::move(t));
|
||||
ss.str({});
|
||||
ss.clear();
|
||||
}
|
||||
}
|
||||
|
||||
if (!ss.str().empty()) {
|
||||
GetValueFromStream<T>(&ss, &t);
|
||||
v->push_back(std::move(t));
|
||||
ss.str({});
|
||||
ss.clear();
|
||||
}
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
constexpr paddle::PaddleDType GetPaddleDType();
|
||||
|
||||
template <>
|
||||
constexpr paddle::PaddleDType GetPaddleDType<int64_t>() {
|
||||
return paddle::PaddleDType::INT64;
|
||||
}
|
||||
|
||||
template <>
|
||||
constexpr paddle::PaddleDType GetPaddleDType<float>() {
|
||||
return paddle::PaddleDType::FLOAT32;
|
||||
}
|
||||
|
||||
// Parse tensor from string
|
||||
template <typename T>
|
||||
bool ParseTensor(const std::string &field, paddle::PaddleTensor *tensor) {
|
||||
std::vector<std::string> data;
|
||||
Split(field, ':', &data);
|
||||
if (data.size() < 2) return false;
|
||||
|
||||
std::string shape_str = data[0];
|
||||
|
||||
std::vector<int> shape;
|
||||
Split(shape_str, ' ', &shape);
|
||||
|
||||
std::string mat_str = data[1];
|
||||
|
||||
std::vector<T> mat;
|
||||
Split(mat_str, ' ', &mat);
|
||||
|
||||
tensor->shape = shape;
|
||||
auto size =
|
||||
std::accumulate(shape.begin(), shape.end(), 1, std::multiplies<int>()) *
|
||||
sizeof(T);
|
||||
tensor->data.Resize(size);
|
||||
std::copy(mat.begin(), mat.end(), static_cast<T *>(tensor->data.data()));
|
||||
tensor->dtype = GetPaddleDType<T>();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// Parse input tensors from string
|
||||
bool ParseLine(const std::string &line,
|
||||
std::vector<paddle::PaddleTensor> *tensors) {
|
||||
std::vector<std::string> fields;
|
||||
Split(line, ';', &fields);
|
||||
|
||||
if (fields.size() < 5) return false;
|
||||
|
||||
tensors->clear();
|
||||
tensors->reserve(5);
|
||||
|
||||
int i = 0;
|
||||
// src_id
|
||||
paddle::PaddleTensor src_id;
|
||||
ParseTensor<int64_t>(fields[i++], &src_id);
|
||||
tensors->push_back(src_id);
|
||||
|
||||
// pos_id
|
||||
paddle::PaddleTensor pos_id;
|
||||
ParseTensor<int64_t>(fields[i++], &pos_id);
|
||||
tensors->push_back(pos_id);
|
||||
|
||||
// segment_id
|
||||
paddle::PaddleTensor segment_id;
|
||||
ParseTensor<int64_t>(fields[i++], &segment_id);
|
||||
tensors->push_back(segment_id);
|
||||
|
||||
// self_attention_bias
|
||||
paddle::PaddleTensor self_attention_bias;
|
||||
ParseTensor<float>(fields[i++], &self_attention_bias);
|
||||
tensors->push_back(self_attention_bias);
|
||||
|
||||
// next_segment_index
|
||||
paddle::PaddleTensor next_segment_index;
|
||||
ParseTensor<int64_t>(fields[i++], &next_segment_index);
|
||||
tensors->push_back(next_segment_index);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool LoadInputData(std::vector<std::vector<paddle::PaddleTensor>> *inputs) {
|
||||
if (FLAGS_infer_data.empty()) {
|
||||
LOG(ERROR) << "please set input data path";
|
||||
return false;
|
||||
}
|
||||
|
||||
std::ifstream fin(FLAGS_infer_data);
|
||||
std::string line;
|
||||
int sample = 0;
|
||||
|
||||
// The unit-test dataset only have 10 samples, each sample have 5 feeds.
|
||||
while (std::getline(fin, line)) {
|
||||
std::vector<paddle::PaddleTensor> feed_data;
|
||||
ParseLine(line, &feed_data);
|
||||
inputs->push_back(std::move(feed_data));
|
||||
sample++;
|
||||
if (!FLAGS_test_all_data && sample == FLAGS_batch_size) break;
|
||||
}
|
||||
LOG(INFO) << "number of samples: " << sample;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void SetConfig(AnalysisConfig *config) { config->SetModel(FLAGS_infer_model); }
|
||||
|
||||
void profile(bool use_mkldnn = false) {
|
||||
AnalysisConfig config;
|
||||
SetConfig(&config);
|
||||
|
||||
if (use_mkldnn) {
|
||||
config.EnableMKLDNN();
|
||||
}
|
||||
|
||||
std::vector<PaddleTensor> outputs;
|
||||
std::vector<std::vector<PaddleTensor>> inputs;
|
||||
LoadInputData(&inputs);
|
||||
TestPrediction(reinterpret_cast<const PaddlePredictor::Config *>(&config),
|
||||
inputs, &outputs, FLAGS_num_threads);
|
||||
}
|
||||
|
||||
TEST(Analyzer_bert, profile) { profile(); }
|
||||
#ifdef PADDLE_WITH_MKLDNN
|
||||
TEST(Analyzer_bert, profile_mkldnn) { profile(true); }
|
||||
#endif
|
||||
|
||||
// Check the fuse status
|
||||
TEST(Analyzer_bert, fuse_statis) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
int num_ops;
|
||||
auto predictor = CreatePaddlePredictor<AnalysisConfig>(cfg);
|
||||
auto fuse_statis = GetFuseStatis(
|
||||
static_cast<AnalysisPredictor *>(predictor.get()), &num_ops);
|
||||
LOG(INFO) << "num_ops: " << num_ops;
|
||||
}
|
||||
|
||||
// Compare result of NativeConfig and AnalysisConfig
|
||||
void compare(bool use_mkldnn = false) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
if (use_mkldnn) {
|
||||
cfg.EnableMKLDNN();
|
||||
}
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> inputs;
|
||||
LoadInputData(&inputs);
|
||||
CompareNativeAndAnalysis(
|
||||
reinterpret_cast<const PaddlePredictor::Config *>(&cfg), inputs);
|
||||
}
|
||||
|
||||
TEST(Analyzer_bert, compare) { compare(); }
|
||||
#ifdef PADDLE_WITH_MKLDNN
|
||||
TEST(Analyzer_bert, compare_mkldnn) { compare(true /* use_mkldnn */); }
|
||||
#endif
|
||||
|
||||
// Compare Deterministic result
|
||||
TEST(Analyzer_bert, compare_determine) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> inputs;
|
||||
LoadInputData(&inputs);
|
||||
CompareDeterministic(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
|
||||
inputs);
|
||||
}
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue