ONE
ONE copied to clipboard
[onert/train] Continue to keep the train directory separate under onert?
Will we continue to keep the train directory separate under onert?
./runtime/onert
├── api
│ ├── include
│ └── src
├── backend
│ ├── acl_cl
│ │ └── operand
│ ├── acl_common
│ ├── acl_neon
│ │ └── operand
│ ├── cl_common
│ │ ├── include
│ │ │ └── cl_common
│ │ └── src
│ ├── cpu
│ │ └── ops
│ ├── gpu_cl
│ │ └── operand
│ ├── ruy
│ │ └── ops
│ ├── **train** # here
│ │ ├── ops
│ │ └── optimizer
│ ├── trix
│ │ └── ops
│ └── xnnpack
│ └── ops
├── core
│ ├── include
│ │ ├── backend
│ │ │ ├── basic
│ │ │ │ └── **train** # here
│ │ │ └── **train** # here
│ │ ├── compiler
│ │ │ └── **train** # here
│ │ ├── exec
│ │ │ └── **train** # here
│ │ │ └── optimizer
│ │ ├── ir
│ │ │ ├── operation
│ │ │ └── **train** # here
│ │ │ └── operation
│ │ ├── odc
│ │ └── util
│ └── src
│ ├── backend
│ │ ├── basic
│ │ │ └── **train** # here
│ │ └── builtin
│ │ ├── kernel
│ │ └── **train** # here
│ │ └── kernel
│ ├── compiler
│ │ ├── pass
│ │ └── **train** # here
│ │ └── pass
│ ├── dumper
│ │ ├── dot
│ │ ├── h5
│ │ └── text
│ ├── exec
│ │ ├── feature
│ │ │ ├── nchw
│ │ │ └── nhwc
│ │ └── train # here
│ ├── ir
│ │ ├── operation
│ │ ├── **train** # here
│ │ │ └── operation
│ │ └── verifier
│ ├── odc
│ └── util
...
/cc @Samsung/one_onert