* [moco-tf] Add naming rule as a comment
This will add some comment for naming rule for TF dialect OPCODE and input/output accessor
Signed-off-by: SaeHie Park <saehie.park@samsung.com>
* remove output
//
// PLEASE SORT NODE DECLS IN ALPHABETICAL ORDER
//
+// Naming rule: Follow names in TensorFlow C++ source
+// ex) for AvgPool, tensorflow/core/ops/nn_ops.cc
+// REGISTER_OP("AvgPool") <-- OPCODE: AvgPool. Prefix `TF` for CLASS name
+// .Input("value: T") <-- Input name is 'value'
+//
// TENSORFLOW_NODE(OPCODE, CLASS)
TENSORFLOW_NODE(Add, TFAdd)