aboutsummaryrefslogtreecommitdiff
path: root/examples/gc_dc.cpp
diff options
context:
space:
mode:
authorFrank Lei <frank.lei@arm.com>2017-12-27 12:32:14 +0800
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commitb59eb0b031e1dc73fa0a67ee08b468a135cec835 (patch)
tree06d9d38316c7ba4143fa99aa3d595a6177a6222e /examples/gc_dc.cpp
parent1c5ffd612979d40730feecc4f43fa6c9f177f2e3 (diff)
downloadComputeLibrary-b59eb0b031e1dc73fa0a67ee08b468a135cec835.tar.gz
APPBROWSER-347: Add GCDirectConvolution example.
Change-Id: Ic59b2d852d59abb3d149e29760a1e16978d41bdc Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/114593 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Joel Liang <joel.liang@arm.com> Reviewed-by: Ioan-Cristian Szabo <ioan-cristian.szabo@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'examples/gc_dc.cpp')
-rw-r--r--examples/gc_dc.cpp123
1 files changed, 123 insertions, 0 deletions
diff --git a/examples/gc_dc.cpp b/examples/gc_dc.cpp
new file mode 100644
index 0000000000..270ca2d08f
--- /dev/null
+++ b/examples/gc_dc.cpp
@@ -0,0 +1,123 @@
+/*
+ * Copyright (c) 2017 ARM Limited.
+ *
+ * SPDX-License-Identifier: MIT
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+#ifndef ARM_COMPUTE_GC
+#error "This example needs to be built with -DARM_COMPUTE_GC"
+#endif /* ARM_COMPUTE_GC */
+
+#include "arm_compute/runtime/GLES_COMPUTE/GCFunctions.h"
+#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
+#include "half/half.hpp"
+#include "utils/Utils.h"
+
+using namespace arm_compute;
+using namespace utils;
+
+namespace
+{
+TensorShape get_output_shape(TensorShape in_shape, TensorShape kernel_shape, const PadStrideInfo &info)
+{
+ TensorShape out_shape(in_shape);
+ const std::pair<unsigned int, unsigned int> scaled_dims = scaled_dimensions(in_shape.x(),
+ in_shape.y(),
+ kernel_shape.x(),
+ kernel_shape.y(),
+ info);
+ out_shape.set(0, scaled_dims.first);
+ out_shape.set(1, scaled_dims.second);
+ out_shape.set(2, kernel_shape[3]);
+ return out_shape;
+}
+} // namespace
+
+void main_gc_dc(int argc, const char **argv)
+{
+ ARM_COMPUTE_UNUSED(argc);
+ ARM_COMPUTE_UNUSED(argv);
+
+ // init instance
+ GCScheduler::get().default_init();
+
+ const TensorShape src_shape = TensorShape{ 11U /* W */, 13U /* H */, 4U /* C */, 3U /* N */ };
+ const unsigned int kernel_size = 3;
+ const int stride_x = 1;
+ const int stride_y = 1;
+ const int pad_x = 0;
+ const int pad_y = 0;
+ const unsigned int num_kernels = 256;
+ const DataType data_type = DataType::F16;
+
+ // generate shape
+ const TensorShape weights_shape(kernel_size, kernel_size, src_shape.z(), num_kernels);
+ const TensorShape bias_shape(num_kernels);
+ const PadStrideInfo pad_info(stride_x, stride_y, pad_x, pad_y, DimensionRoundingType::FLOOR);
+
+ // output shape should be 9*11*256*3 (W*H*C*N)
+ const TensorShape dst_shape = get_output_shape(src_shape, weights_shape, pad_info);
+
+ // create tensors
+ GCTensor src, weights, bias, dst;
+ src.allocator()->init(TensorInfo(src_shape, 1, data_type));
+ weights.allocator()->init(TensorInfo(weights_shape, 1, data_type));
+ bias.allocator()->init(TensorInfo(bias_shape, 1, data_type));
+ dst.allocator()->init(TensorInfo(dst_shape, 1, data_type));
+
+ // configure layer
+ GCDirectConvolutionLayer conv;
+ conv.configure(&src, &weights, &bias, &dst, pad_info);
+
+ // allocate tensors
+ src.allocator()->allocate();
+ weights.allocator()->allocate();
+ bias.allocator()->allocate();
+ dst.allocator()->allocate();
+
+ // To demonstrate how to fill tensor with some values...
+ src.map();
+ Window window;
+ window.use_tensor_dimensions(src_shape);
+ Iterator it(&src, window);
+ execute_window_loop(window, [&](const Coordinates & id)
+ {
+ *reinterpret_cast<half_float::half *>(it.ptr()) = half_float::half(1.f);
+ });
+ src.unmap();
+
+ // run the layer
+ conv.run();
+
+ // check result
+ dst.map();
+ // do something
+ dst.unmap();
+}
+
+/** Main program for directconvolution test
+ *
+ * @param[in] argc Number of arguments
+ * @param[in] argv Arguments
+ */
+int main(int argc, const char **argv)
+{
+ return utils::run_example(argc, argv, main_gc_dc);
+}