C++ API Reference for Intel® Data Analytics Acceleration Library 2019

initializer_types_defs.h
1 /* file: initializer_types_defs.h */
2 /*******************************************************************************
3 * Copyright 2014-2018 Intel Corporation.
4 *
5 * This software and the related documents are Intel copyrighted materials, and
6 * your use of them is governed by the express license under which they were
7 * provided to you (License). Unless the License provides otherwise, you may not
8 * use, modify, copy, publish, distribute, disclose or transmit this software or
9 * the related documents without Intel's prior written permission.
10 *
11 * This software and the related documents are provided as is, with no express
12 * or implied warranties, other than those that are expressly stated in the
13 * License.
14 *******************************************************************************/
15 
16 /*
17 //++
18 // Forward declarations of classes in other namespaces.
19 // Needed for implementation of neural_networks network layer initializers.
20 //--
21 */
22 
23 #ifndef __INITIALIZERS__TYPES__DEFS__H__
24 #define __INITIALIZERS__TYPES__DEFS__H__
25 
26 namespace daal
27 {
28 namespace algorithms
29 {
30 namespace neural_networks
31 {
32 namespace layers
33 {
34 namespace forward
35 {
36 namespace interface1
37 {
38 class LayerIface;
39 typedef services::SharedPtr<LayerIface> LayerIfacePtr;
40 } // namespace interface1
41 using interface1::LayerIface;
42 using interface1::LayerIfacePtr;
43 } // namespace forward
44 } // namespace layers
45 } // namespace neural_networks
46 } // namespace algorithm
47 } // namespace daal
48 
49 #endif
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::forward::interface1::LayerIface
Abstract class which defines interface for the layer.
Definition: layer_forward.h:60

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