aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/Types.h11
-rw-r--r--arm_compute/graph/frontend/Types.h1
-rw-r--r--arm_compute/graph/nodes/FullyConnectedLayerNode.h2
3 files changed, 14 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index 81d652dd7d..d9109e4565 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -701,6 +701,17 @@ struct FullyConnectedLayerInfo
weights_trained_layout = layout;
return *this;
}
+ /** Sets the transpose weights flag
+ *
+ * @param[in] should_transpose_weights Boolean flag indicating if weights should be transposed
+ *
+ * @return Updated object
+ */
+ FullyConnectedLayerInfo &set_transpose_weights(bool should_transpose_weights)
+ {
+ transpose_weights = should_transpose_weights;
+ return *this;
+ }
};
/** Pooling Layer Information class */
diff --git a/arm_compute/graph/frontend/Types.h b/arm_compute/graph/frontend/Types.h
index 8f6312f318..ebbf7101ac 100644
--- a/arm_compute/graph/frontend/Types.h
+++ b/arm_compute/graph/frontend/Types.h
@@ -39,6 +39,7 @@ using graph::TensorShape;
using graph::PermutationVector;
using graph::ActivationLayerInfo;
+using graph::FullyConnectedLayerInfo;
using graph::NormalizationLayerInfo;
using graph::NormType;
using graph::PadStrideInfo;
diff --git a/arm_compute/graph/nodes/FullyConnectedLayerNode.h b/arm_compute/graph/nodes/FullyConnectedLayerNode.h
index 1bff6006c8..33f9b1eefe 100644
--- a/arm_compute/graph/nodes/FullyConnectedLayerNode.h
+++ b/arm_compute/graph/nodes/FullyConnectedLayerNode.h
@@ -49,12 +49,14 @@ public:
*
* @param[in] input_descriptor Input descriptor
* @param[in] num_outputs Number of output neurons
+ * @param[in] fc_info (Optional) Additional information about the fully connected layer
* @param[in] weights_quant_info (Optional) Weights quantization info
*
* @return Weights descriptor
*/
static TensorDescriptor compute_weights_descriptor(const TensorDescriptor &input_descriptor,
unsigned int num_outputs,
+ FullyConnectedLayerInfo fc_info = FullyConnectedLayerInfo(),
QuantizationInfo weights_quant_info = QuantizationInfo());
/** Computes fully connected layer output descriptor
*