-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdefault_selector.cc
98 lines (85 loc) · 3.37 KB
/
default_selector.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Copyright Codeplay Software Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use these files 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 <gtest/gtest.h>
#include "portdnn/conv2d/launch.h"
#include "portdnn/conv2d/selector/default_selector.h"
#include "portdnn/conv2d/sizes.h"
#include "portdnn/conv2d/workspace_size.h"
#include "portdnn/backend/snn_backend.h"
#include "portdnn/backend/snn_usm_backend.h"
#include "src/backend/snn_backend_provider.h"
#include "src/backend/snn_usm_backend_provider.h"
#include "test/backend/backend_test_fixture.h"
#include "test/types/test_backend_types.h"
#include "test/types/to_gtest_types.h"
#include <memory>
#include <CL/sycl.hpp>
template <typename Backend>
struct DefaultSelectorFixture : public BackendTestFixture<Backend> {
protected:
void check_conv_launch_successful(
sycldnn::conv2d::Conv2DParams const& params) {
using ConvType = sycldnn::conv2d::conv_type::Forward;
using HostData = std::vector<float>;
auto& provider = this->provider_;
auto device = provider.get_backend().get_queue().get_device();
auto selector = sycldnn::conv2d::get_default_selector(device);
auto sizes = sycldnn::conv2d::get_sizes<ConvType>(params);
auto workspace_size =
sycldnn::conv2d::query_workspace_size<ConvType>(params, *selector);
HostData input(sizes.input_size);
HostData filter(sizes.filter_size);
HostData output(sizes.output_size);
auto input_gpu =
provider.get_initialised_device_memory(sizes.input_size, input);
auto filter_gpu =
provider.get_initialised_device_memory(sizes.filter_size, filter);
auto output_gpu =
provider.get_initialised_device_memory(sizes.output_size, output);
auto workspace_gpu = provider.get_backend().template allocate<float>(
workspace_size.recommended_size);
// Use the queue to get a device reference, then validate that we return a
// non-null selector.
EXPECT_TRUE(nullptr != selector);
auto status = sycldnn::conv2d::launch<float, ConvType>(
input_gpu, filter_gpu, output_gpu, params, *selector,
provider.get_backend(), workspace_gpu, workspace_size.recommended_size);
ASSERT_EQ(sycldnn::StatusCode::OK, status.status);
status.event.wait_and_throw();
}
};
template <typename Backend>
using DefaultSelectorTest = DefaultSelectorFixture<Backend>;
TYPED_TEST_SUITE(DefaultSelectorTest, sycldnn::types::GTestDefaultBackendTypes);
TYPED_TEST(DefaultSelectorTest, GetValidSelectionFor5x5s2) {
sycldnn::conv2d::Conv2DParams params;
params.channels = 3;
params.features = 32;
params.batch = 5;
params.in_rows = 128;
params.in_cols = 128;
params.window_rows = 5;
params.window_cols = 5;
params.stride_rows = 2;
params.stride_cols = 2;
params.out_rows = 64;
params.out_cols = 64;
params.pad_rows = 1;
params.pad_cols = 1;
params.dilation_rows = 1;
params.dilation_cols = 1;
this->check_conv_launch_successful(params);
}