Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / src / gpu / configuration.cpp
1 /*
2 // Copyright (c) 2016 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //      http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 */
16
17 ///////////////////////////////////////////////////////////////////////////////////////////////////
18 #include "confiugration.h"
19
20 namespace cldnn {
21     namespace gpu {
22
23         configuration::configuration()
24             : enable_profiling(false)
25             , meaningful_kernels_names(false)
26             , device_type(gpu)
27             , device_vendor(0x8086)
28             , compiler_options("")
29             , single_kernel_name("")
30             , host_out_of_order(false)
31             , log("")
32             , ocl_sources_dumps_dir("")
33             , user_context(nullptr)            
34             , tuning_cache_path("cache.json")        
35         {}
36     }
37 }