[Filter/Custom] remove unnecessary flag
authorJaeyun <jy1210.jung@samsung.com>
Tue, 23 Oct 2018 04:09:12 +0000 (13:09 +0900)
committerSangjung Woo <again4you@gmail.com>
Tue, 23 Oct 2018 06:46:30 +0000 (15:46 +0900)
Custom filter determines output-memory allocation using the function allocate_invoke.
(set true if allocate_invoke defined)

Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
include/tensor_filter_custom.h

index 1354b8b..d23f4f6 100644 (file)
@@ -114,7 +114,6 @@ typedef int (*NNS_custom_allocate_invoke) (void *private_data,
  */
 struct _NNStreamer_custom_class
 {
-  int allocate_outbuf_in_invoke; /**< Set non-zero if invoke function is to allocate output buffer. Note that the allocated outbuf size MUST be consistent with output tensor dimension & type */
   NNS_custom_init_func initfunc; /**< called before any other callbacks from tensor_filter_custom.c */
   NNS_custom_exit_func exitfunc; /**< will not call other callbacks after this call */
   NNS_custom_get_input_dimension getInputDim; /**< a custom filter is required to provide input tensor dimension unless setInputdim is defined. */