You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.3 KiB
71 lines
2.3 KiB
// 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/framework/details/broadcast_op_handle_test.h"
|
|
|
|
namespace paddle {
|
|
namespace framework {
|
|
namespace details {
|
|
|
|
using DeviceType = paddle::platform::DeviceType;
|
|
|
|
TEST(BroadcastTester, TestCPUBroadcastTestLodTensor) {
|
|
TestBroadcastOpHandle test_op;
|
|
size_t input_scope_idx = 0;
|
|
test_op.InitCtxOnDevice(p::kCPU);
|
|
test_op.InitBroadcastOp(input_scope_idx);
|
|
test_op.TestBroadcastLodTensor(input_scope_idx);
|
|
}
|
|
|
|
TEST(BroadcastTester, TestCPUBroadcastTestSelectedRows) {
|
|
TestBroadcastOpHandle test_op;
|
|
size_t input_scope_idx = 0;
|
|
test_op.InitCtxOnDevice(p::kCPU);
|
|
test_op.InitBroadcastOp(input_scope_idx);
|
|
test_op.TestBroadcastSelectedRows(input_scope_idx);
|
|
}
|
|
|
|
#if (defined(PADDLE_WITH_CUDA) && defined(PADDLE_WITH_NCCL)) || \
|
|
(defined(PADDLE_WITH_HIP) && defined(PADDLE_WITH_RCCL))
|
|
TEST(BroadcastTester, TestGPUBroadcastTestLodTensor) {
|
|
TestBroadcastOpHandle test_op;
|
|
size_t input_scope_idx = 0;
|
|
test_op.InitCtxOnDevice(p::kCUDA);
|
|
test_op.InitBroadcastOp(input_scope_idx);
|
|
test_op.TestBroadcastLodTensor(input_scope_idx);
|
|
}
|
|
|
|
TEST(BroadcastTester, TestGPUBroadcastTestSelectedRows) {
|
|
TestBroadcastOpHandle test_op;
|
|
size_t input_scope_idx = 0;
|
|
test_op.InitCtxOnDevice(p::kCUDA);
|
|
test_op.InitBroadcastOp(input_scope_idx);
|
|
test_op.TestBroadcastSelectedRows(input_scope_idx);
|
|
}
|
|
#endif
|
|
|
|
#if defined(PADDLE_WITH_XPU_BKCL)
|
|
TEST(BroadcastTester, TestXPUBroadcastTestLodTensor) {
|
|
TestBroadcastOpHandle test_op;
|
|
size_t input_scope_idx = 0;
|
|
test_op.InitCtxOnDevice(p::kXPU);
|
|
test_op.InitBroadcastOp(input_scope_idx);
|
|
test_op.TestBroadcastLodTensor(input_scope_idx);
|
|
}
|
|
#endif
|
|
|
|
} // namespace details
|
|
} // namespace framework
|
|
} // namespace paddle
|