ONE icon indicating copy to clipboard operation
ONE copied to clipboard

[onert/train] Continue to keep the train directory separate under onert?

Open YongseopKim opened this issue 1 year ago • 2 comments

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

YongseopKim avatar Jan 17 '24 00:01 YongseopKim