aboutsummaryrefslogtreecommitdiff
path: root/examples/graph_inception_v4.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-07-13 12:25:33 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit772e17f8a6683cf3f19cba15c7a1e677fe07a559 (patch)
tree49afc7e2b1cbd4b8f3e1cf849093e8d6e4503892 /examples/graph_inception_v4.cpp
parent6200fa405b16b4145b926a96de197718ad31bf93 (diff)
downloadComputeLibrary-772e17f8a6683cf3f19cba15c7a1e677fe07a559.tar.gz
COMPMID-1188: Substream copy constructor primitives.
Change-Id: I50b0d9d2f6bfbcd7bfacf31090b94f551fa00bbe Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139876 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'examples/graph_inception_v4.cpp')
-rw-r--r--examples/graph_inception_v4.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/graph_inception_v4.cpp b/examples/graph_inception_v4.cpp
index e7c1bc69e2..e048766634 100644
--- a/examples/graph_inception_v4.cpp
+++ b/examples/graph_inception_v4.cpp
@@ -598,7 +598,7 @@ private:
0.001f)
<< ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU));
- SubStream i_b1(static_cast<IStream &>(i_b));
+ SubStream i_b1(i_b);
i_b1 << ConvolutionLayer(
3U, 1U, 256U,
get_weights_accessor(data_path, total_path + "Branch_1_Conv2d_0b_1x3_weights.npy"),
@@ -612,7 +612,7 @@ private:
0.001f)
<< ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU));
- SubStream i_b2(static_cast<IStream &>(i_b));
+ SubStream i_b2(i_b);
i_b2 << ConvolutionLayer(
1U, 3U, 256U,
get_weights_accessor(data_path, total_path + "Branch_1_Conv2d_0c_3x1_weights.npy"),
@@ -667,7 +667,7 @@ private:
0.001f)
<< ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU));
- SubStream i_c1(static_cast<IStream &>(i_c));
+ SubStream i_c1(i_c);
i_c1 << ConvolutionLayer(
3U, 1U, 256U,
get_weights_accessor(data_path, total_path + "Branch_2_Conv2d_0d_1x3_weights.npy"),
@@ -681,7 +681,7 @@ private:
0.001f)
<< ActivationLayer(ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU));
- SubStream i_c2(static_cast<IStream &>(i_c));
+ SubStream i_c2(i_c);
i_c2 << ConvolutionLayer(
1U, 3U, 256U,
get_weights_accessor(data_path, total_path + "Branch_2_Conv2d_0e_3x1_weights.npy"),