C++ API Reference for Intel® Data Analytics Acceleration Library 2018 Update 3

fullyconnected_layer_types.h
1 /* file: fullyconnected_layer_types.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 // Fully-connected layer parameter structure.
19 //--
20 */
21 
22 #ifndef __FULLYCONNECTED_LAYER_TYPES_H__
23 #define __FULLYCONNECTED_LAYER_TYPES_H__
24 
25 #include "algorithms/algorithm.h"
26 #include "data_management/data/tensor.h"
27 #include "data_management/data/homogen_tensor.h"
28 #include "services/daal_defines.h"
29 #include "algorithms/neural_networks/layers/layer_types.h"
30 
31 namespace daal
32 {
33 namespace algorithms
34 {
35 namespace neural_networks
36 {
37 namespace layers
38 {
45 namespace fullyconnected
46 {
51 enum Method
52 {
53  defaultDense = 0,
54 };
55 
60 enum LayerDataId
61 {
62  auxData = 0,
63  auxWeights = 1,
64  lastLayerDataId = auxWeights
65 };
66 
67 namespace interface1
68 {
73 class DAAL_EXPORT Parameter: public layers::Parameter
74 {
75 public:
80  Parameter(size_t _nOutputs);
81 
82  size_t nOutputs;
83 };
84 
85 } // namespace interface1
86 using interface1::Parameter;
87 
88 } // namespace fullyconnected
90 } // namespace layers
91 } // namespace neural_networks
92 } // namespace algorithms
93 } // namespace daal
94 #endif
daal::algorithms::neural_networks::layers::fullyconnected::interface1::Parameter
Fully-connected layer parameters.
Definition: fullyconnected_layer_types.h:73
daal
Definition: algorithm_base_common.h:31
daal::algorithms::neural_networks::layers::fullyconnected::defaultDense
Definition: fullyconnected_layer_types.h:53
daal::algorithms::neural_networks::layers::fullyconnected::LayerDataId
LayerDataId
Definition: fullyconnected_layer_types.h:60
daal::algorithms::neural_networks::layers::fullyconnected::Method
Method
Definition: fullyconnected_layer_types.h:51
daal::algorithms::neural_networks::layers::fullyconnected::auxData
Definition: fullyconnected_layer_types.h:62
daal_defines.h
daal::algorithms::neural_networks::layers::fullyconnected::auxWeights
Definition: fullyconnected_layer_types.h:63
daal::algorithms::neural_networks::layers::fullyconnected::interface1::Parameter::nOutputs
size_t nOutputs
Definition: fullyconnected_layer_types.h:82

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