aboutsummaryrefslogtreecommitdiff
path: root/examples/graph_inception_v3.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-02-26 19:58:04 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:48:33 +0000
commit240cfa65322da0c9b2ec0e78960ff4bd87c7573e (patch)
treedf72ee34dffdf0e200426bdd0f79640698b08024 /examples/graph_inception_v3.cpp
parent33a6990ee6ba7bf85b88822d9723060262d00785 (diff)
downloadComputeLibrary-240cfa65322da0c9b2ec0e78960ff4bd87c7573e.tar.gz
COMPMID-973: Implement InceptionV4
Change-Id: Ie2fe8eac176a80a1a53b6f349dad6287218b82d5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/122304 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'examples/graph_inception_v3.cpp')
-rw-r--r--examples/graph_inception_v3.cpp7
1 files changed, 3 insertions, 4 deletions
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)
{