C++ API Reference for Intel® Data Analytics Acceleration Library 2020 Update 1

initializer_types_defs.h
1 /* file: initializer_types_defs.h */
2 /*******************************************************************************
3 * Copyright 2014-2020 Intel Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *******************************************************************************/
17 
18 /*
19 //++
20 // Forward declarations of classes in other namespaces.
21 // Needed for implementation of neural_networks network layer initializers.
22 //--
23 */
24 
25 #ifndef __INITIALIZERS__TYPES__DEFS__H__
26 #define __INITIALIZERS__TYPES__DEFS__H__
27 
28 namespace daal
29 {
30 namespace algorithms
31 {
32 namespace neural_networks
33 {
34 namespace layers
35 {
36 namespace forward
37 {
38 namespace interface1
39 {
40 class LayerIface;
41 typedef services::SharedPtr<LayerIface> LayerIfacePtr;
42 } // namespace interface1
43 using interface1::LayerIface;
44 using interface1::LayerIfacePtr;
45 } // namespace forward
46 } // namespace layers
47 } // namespace neural_networks
48 } // namespace algorithm
49 } // namespace daal
50 
51 #endif
daal::algorithms::neural_networks::layers::forward::interface1::LayerIface
Abstract class which defines interface for the layer.
Definition: layer_forward.h:63

For more complete information about compiler optimizations, see our Optimization Notice.