[buf fix]:fix some unittests error (#27540)
* [buf fix]:fix unittest test_activation_op error * split long-time unittests to smaller ones * rename some unittestsrevert-27520-disable_pr
parent
6e16a0997c
commit
77a36f8997
@ -0,0 +1,40 @@
|
||||
/* 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 <algorithm>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "paddle/fluid/inference/tests/api/analyzer_seq_pool1_tester_helper.h"
|
||||
#include "paddle/fluid/inference/tests/api/tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace seq_pool1_tester {
|
||||
|
||||
// Compare Deterministic result
|
||||
TEST(Analyzer_seq_pool1_compare_determine, compare_determine) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> input_slots_all;
|
||||
SetInput(&input_slots_all);
|
||||
CompareDeterministic(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
|
||||
input_slots_all);
|
||||
}
|
||||
|
||||
} // namespace seq_pool1_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,39 @@
|
||||
/* 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 <algorithm>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "paddle/fluid/inference/tests/api/analyzer_seq_pool1_tester_helper.h"
|
||||
#include "paddle/fluid/inference/tests/api/tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace seq_pool1_tester {
|
||||
|
||||
TEST(Analyzer_seq_pool1_compare, compare) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> input_slots_all;
|
||||
SetInput(&input_slots_all);
|
||||
CompareNativeAndAnalysis(
|
||||
reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all);
|
||||
}
|
||||
|
||||
} // namespace seq_pool1_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,46 @@
|
||||
/* 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 <algorithm>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "paddle/fluid/inference/tests/api/analyzer_seq_pool1_tester_helper.h"
|
||||
#include "paddle/fluid/inference/tests/api/tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace seq_pool1_tester {
|
||||
|
||||
// Compare result of AnalysisConfig and AnalysisConfig + ZeroCopy
|
||||
TEST(Analyzer_seq_pool1_compare_zero_copy, compare_zero_copy) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
|
||||
AnalysisConfig cfg1;
|
||||
SetConfig(&cfg1);
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> input_slots_all;
|
||||
SetInput(&input_slots_all);
|
||||
std::vector<std::string> outputs_name;
|
||||
outputs_name.emplace_back(out_var_name);
|
||||
CompareAnalysisAndZeroCopy(reinterpret_cast<PaddlePredictor::Config *>(&cfg),
|
||||
reinterpret_cast<PaddlePredictor::Config *>(&cfg1),
|
||||
input_slots_all, outputs_name);
|
||||
}
|
||||
|
||||
} // namespace seq_pool1_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,48 @@
|
||||
/* 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 <algorithm>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "paddle/fluid/inference/tests/api/analyzer_seq_pool1_tester_helper.h"
|
||||
#include "paddle/fluid/inference/tests/api/tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace seq_pool1_tester {
|
||||
|
||||
// Check the fuse status
|
||||
TEST(Analyzer_seq_pool1_fuse_statis, fuse_statis) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
int num_ops;
|
||||
auto predictor = CreatePaddlePredictor<AnalysisConfig>(cfg);
|
||||
auto fuse_statis = GetFuseStatis(predictor.get(), &num_ops);
|
||||
ASSERT_TRUE(fuse_statis.count("fc_fuse"));
|
||||
ASSERT_TRUE(fuse_statis.count("seqpool_concat_fuse"));
|
||||
ASSERT_TRUE(fuse_statis.count("squared_mat_sub_fuse"));
|
||||
ASSERT_TRUE(fuse_statis.count("repeated_fc_relu_fuse"));
|
||||
ASSERT_EQ(fuse_statis.at("fc_fuse"), 10);
|
||||
EXPECT_EQ(fuse_statis.at("seqpool_concat_fuse"), 2);
|
||||
EXPECT_EQ(fuse_statis.at("squared_mat_sub_fuse"), 2);
|
||||
EXPECT_EQ(fuse_statis.at("repeated_fc_relu_fuse"), 2);
|
||||
LOG(INFO) << "num_ops: " << num_ops;
|
||||
EXPECT_EQ(num_ops, 171);
|
||||
}
|
||||
|
||||
} // namespace seq_pool1_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,42 @@
|
||||
/* 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 <algorithm>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include "paddle/fluid/inference/tests/api/analyzer_seq_pool1_tester_helper.h"
|
||||
#include "paddle/fluid/inference/tests/api/tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace seq_pool1_tester {
|
||||
|
||||
void profile(bool use_mkldnn = false) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg, use_mkldnn);
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> outputs;
|
||||
std::vector<std::vector<PaddleTensor>> input_slots_all;
|
||||
SetInput(&input_slots_all);
|
||||
TestPrediction(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
|
||||
input_slots_all, &outputs, FLAGS_num_threads);
|
||||
}
|
||||
|
||||
TEST(Analyzer_seq_pool1_profile, profile) { profile(); }
|
||||
|
||||
} // namespace seq_pool1_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,44 @@
|
||||
// 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/analyzer_transformer_tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace transformer_tester {
|
||||
|
||||
void compare(bool use_mkldnn = false) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
if (use_mkldnn) {
|
||||
cfg.EnableMKLDNN();
|
||||
cfg.pass_builder()->AppendPass("fc_mkldnn_pass");
|
||||
}
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> input_slots_all;
|
||||
SetInput(&input_slots_all);
|
||||
CompareNativeAndAnalysis(
|
||||
reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all);
|
||||
}
|
||||
|
||||
TEST(Analyzer_Transformer, compare) { compare(); }
|
||||
#ifdef PADDLE_WITH_MKLDNN
|
||||
TEST(Analyzer_Transformer, compare_mkldnn) { compare(true /* use_mkldnn */); }
|
||||
#endif
|
||||
|
||||
} // namespace transformer_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,36 @@
|
||||
// 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/analyzer_transformer_tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace transformer_tester {
|
||||
|
||||
// Check the fuse status
|
||||
TEST(Analyzer_Transformer, 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);
|
||||
}
|
||||
|
||||
} // namespace transformer_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
@ -0,0 +1,45 @@
|
||||
// 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/analyzer_transformer_tester_helper.h"
|
||||
|
||||
namespace paddle {
|
||||
namespace inference {
|
||||
namespace analysis {
|
||||
namespace transformer_tester {
|
||||
|
||||
void profile(bool use_mkldnn = false) {
|
||||
AnalysisConfig cfg;
|
||||
SetConfig(&cfg);
|
||||
std::vector<std::vector<PaddleTensor>> outputs;
|
||||
if (use_mkldnn) {
|
||||
cfg.EnableMKLDNN();
|
||||
cfg.pass_builder()->AppendPass("fc_mkldnn_pass");
|
||||
}
|
||||
|
||||
std::vector<std::vector<PaddleTensor>> input_slots_all;
|
||||
SetInput(&input_slots_all);
|
||||
TestPrediction(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
|
||||
input_slots_all, &outputs, FLAGS_num_threads);
|
||||
}
|
||||
|
||||
TEST(Analyzer_Transformer, profile) { profile(); }
|
||||
#ifdef PADDLE_WITH_MKLDNN
|
||||
TEST(Analyzer_Transformer, profile_mkldnn) { profile(true); }
|
||||
#endif
|
||||
|
||||
} // namespace transformer_tester
|
||||
} // namespace analysis
|
||||
} // namespace inference
|
||||
} // namespace paddle
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue