You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

aiExecutor.go 316 B

10 months ago
11 months ago
123456789101112131415
  1. package executor
  2. import (
  3. "context"
  4. "gitlink.org.cn/JointCloud/pcm-coordinator/internal/scheduler/schedulers/option"
  5. )
  6. const (
  7. SUBMIT_MODE_JOINT_CLOUD = iota + 1
  8. SUBMIT_MODE_STORAGE_SCHEDULE
  9. )
  10. type AiExecutor interface {
  11. Execute(ctx context.Context, option *option.AiOption, mode int) (interface{}, error)
  12. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.