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

neural_networks_types.h
1 /* file: neural_networks_types.h */
2 /*******************************************************************************
3 * Copyright 2014-2019 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 // Implementation of neural network algorithm interface.
19 //--
20 */
21 
22 #ifndef __NEURAL_NETWORKS_TYPES_H__
23 #define __NEURAL_NETWORKS_TYPES_H__
24 
25 #include "algorithms/algorithm.h"
26 
27 #include "data_management/data/data_serialize.h"
28 #include "services/daal_defines.h"
29 #include "algorithms/neural_networks/layers/layer_forward.h"
30 #include "algorithms/neural_networks/layers/layer_backward.h"
31 
32 namespace daal
33 {
34 namespace algorithms
35 {
45 namespace neural_networks
46 {
50 namespace interface1
51 {
52 
57 typedef services::Collection<layers::forward::LayerIfacePtr > ForwardLayers;
58 typedef services::SharedPtr<ForwardLayers> ForwardLayersPtr;
59 
64 typedef services::Collection<layers::backward::LayerIfacePtr > BackwardLayers;
65 typedef services::SharedPtr<BackwardLayers> BackwardLayersPtr;
66 
67 } // namespace interface1
68 using interface1::ForwardLayers;
69 using interface1::ForwardLayersPtr;
70 using interface1::BackwardLayers;
71 using interface1::BackwardLayersPtr;
72 
73 }
75 }
76 } // namespace daal
77 #endif
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::interface1::ForwardLayers
services::Collection< layers::forward::LayerIfacePtr > ForwardLayers
Represents a collection of forward stages of neural network layers.
Definition: neural_networks_types.h:57
daal_defines.h
daal::algorithms::neural_networks::interface1::BackwardLayers
services::Collection< layers::backward::LayerIfacePtr > BackwardLayers
Represents a collection of forward stages of neural network layers.
Definition: neural_networks_types.h:64

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