From 240cfa65322da0c9b2ec0e78960ff4bd87c7573e Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 26 Feb 2018 19:58:04 +0000 Subject: COMPMID-973: Implement InceptionV4 Change-Id: Ie2fe8eac176a80a1a53b6f349dad6287218b82d5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/122304 Tested-by: Jenkins Reviewed-by: Pablo Tello --- examples/graph_inception_v3.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'examples/graph_inception_v3.cpp') diff --git a/examples/graph_inception_v3.cpp b/examples/graph_inception_v3.cpp index 1dfc966ec8..a10037be89 100644 --- a/examples/graph_inception_v3.cpp +++ b/examples/graph_inception_v3.cpp @@ -38,9 +38,9 @@ using namespace arm_compute::graph_utils; /** Example demonstrating how to implement InceptionV3's network using the Compute Library's graph API * * @param[in] argc Number of arguments - * @param[in] argv Arguments ( [optional] Path to the weights folder, [optional] image, [optional] labels ) + * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] image, [optional] labels ) */ -class InceptionV3Example : public Example +class InceptionV3Example final : public Example { public: void do_setup(int argc, char **argv) override @@ -206,7 +206,6 @@ private: bool is_name_different = false) { std::string total_path = "/cnn_data/inceptionv3_model/" + param_path + "_"; - std::cout << total_path << std::endl; // This is due to a naming issue in the tf model std::string conv_id0 = "_0a_"; @@ -719,7 +718,7 @@ private: /** Main program for Inception V3 * * @param[in] argc Number of arguments - * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL), [optional] Path to the weights folder, [optional] image, [optional] labels ) + * @param[in] argv Arguments ( [optional] Target (0 = NEON, 1 = OpenCL, 2 = OpenCL with Tuner), [optional] Path to the weights folder, [optional] image, [optional] labels ) */ int main(int argc, char **argv) { -- cgit v1.2.1