Apply clang-format on hpp file
authorKwanghoon Son <k.son@samsung.com>
Tue, 11 Apr 2023 04:46:29 +0000 (13:46 +0900)
committerKwanghoon Son <k.son@samsung.com>
Wed, 14 Jun 2023 02:14:28 +0000 (11:14 +0900)
Change-Id: Ifd5e02241fcd3aa044a6cb343e10128c490a14d3
Signed-off-by: Kwanghoon Son <k.son@samsung.com>
script/execute_format.sh
test/testsuites/machine_learning/inference/test_inference_helper.hpp

index 4d0c189..bd0fd4b 100755 (executable)
@@ -1 +1 @@
-find . -iname *.h -o -iname *.cpp -o -iname *.c | xargs clang-format-9 -i
\ No newline at end of file
+find . -iname *.h -o -iname *.hpp -o -iname *.cpp -o -iname *.c | xargs clang-format-9 -i
\ No newline at end of file
index de13237..82af2f9 100644 (file)
@@ -42,20 +42,13 @@ public:
        mv_source_h mv_source;
 };
 
-void engine_config_hosted_model_config(mv_engine_config_h handle,
-                                                                          const char *tf_weight,
-                                                                          const bool use_json_parser);
+void engine_config_hosted_model_config(mv_engine_config_h handle, const char *tf_weight, const bool use_json_parser);
 
-void engine_config_hosted_tflite_model(mv_engine_config_h handle,
-                                                                          const char *tf_weight,
-                                                                          const char *user_file,
+void engine_config_hosted_tflite_model(mv_engine_config_h handle, const char *tf_weight, const char *user_file,
                                                                           const bool use_json_parser,
                                                                           const mv_inference_target_device_e target_device_type);
 
-void engine_config_hosted_snpe_model(mv_engine_config_h handle,
-                                                                        const char *tf_weight,
-                                                                        const char *user_file,
-                                                                        const bool use_json_parser,
-                                                                        const mv_inference_target_device_e target_device_type);
+void engine_config_hosted_snpe_model(mv_engine_config_h handle, const char *tf_weight, const char *user_file,
+                                                                        const bool use_json_parser, const mv_inference_target_device_e target_device_type);
 
 #endif //__TEST_INFERENCE_HELPER_HPP__