#### No body check result #### * ../report/0001-Graph-rename-variable-and-remove-non-working-codes.patch ============== commit body: start ===================== [DEBUG] [DEBUG] - The variables with the same meaning are written as "in_place" or "is_inplace" by the script, so I unified it to use the term "is_inplace". [DEBUG] [DEBUG] - Some layer's finalize function includes code that determines whether or not to support in-place depending on the tensor type. However, this code does not work. The reason it seems like this code is working is because there is a similar purpose of code at the top of the `canExecuteInPlace` function within the `network_graph.cpp` and that code works. [DEBUG] [DEBUG] It is meaningless to determine whether or not to support in-place within the `finalize` function because the `canExecuteInPlace` function, which decides how InPlace will behave, is called before the `finalize` function. [DEBUG] [DEBUG] The canExecuteInPlace function is called during `compile` while the finalize function is called during `initialize` after `compile`. Therefore, setting supportInplace inside the finalize function does not work. [DEBUG] [DEBUG] **Self evaluation:** [DEBUG] 1. Build test: [X]Passed [ ]Failed [ ]Skipped [DEBUG] 2. Run test: [X]Passed [ ]Failed [ ]Skipped [DEBUG] [DEBUG] Signed-off-by: Seungbaek Hong ============== commit body: end =====================