e2e_workflow.d2 650 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
direction: right

install: {
  label: "Install"
  shape: rectangle
  install_detail: |md
    pip3 install
    aiconfigurator
  |
}

configure: {
  label: "Configure"
  shape: rectangle
  configure_detail: |md
    Model, GPUs,
    SLA targets
  |
}

compare: {
  label: "Compare"
  shape: rectangle
  compare_detail: |md
    Agg vs disagg
    rankings
  |
}

deploy: {
  label: "Deploy"
  shape: rectangle
  deploy_detail: |md
    Apply DGD
    manifest
  |
}

validate: {
  label: "Validate"
  shape: rectangle
  validate_detail: |md
    Benchmark
    with AIPerf
  |
}

install -> configure
configure -> compare
compare -> deploy
deploy -> validate