@@ -1395,16 +1395,16 @@ func (m *DeployView) renderDeploymentSummary() string {
13951395
13961396 // HARDWARE PARAMETERS
13971397 var hardwareItems []string
1398- if m .conf .Config .Hardware .Compute != nil {
1399- hardwareItems = append (hardwareItems , fmt .Sprintf ("Compute: %s" , * m .conf .Config .Hardware .Compute ))
1398+ if m .conf .Config .Hardware .ComputePrimary != nil {
1399+ hardwareItems = append (hardwareItems , fmt .Sprintf ("Compute: %s" , * m .conf .Config .Hardware .ComputePrimary ))
14001400 }
14011401 if m .conf .Config .Hardware .CPU != nil {
14021402 hardwareItems = append (hardwareItems , fmt .Sprintf ("CPU: %.1f" , * m .conf .Config .Hardware .CPU ))
14031403 }
14041404 if m .conf .Config .Hardware .Memory != nil {
14051405 hardwareItems = append (hardwareItems , fmt .Sprintf ("Memory: %.0f GB" , * m .conf .Config .Hardware .Memory ))
14061406 }
1407- if m .conf .Config .Hardware .GPUCount != nil && m .conf .Config .Hardware .Compute != nil && * m .conf .Config .Hardware .Compute != "CPU" {
1407+ if m .conf .Config .Hardware .GPUCount != nil && m .conf .Config .Hardware .ComputePrimary != nil && * m .conf .Config .Hardware .ComputePrimary != "CPU" {
14081408 hardwareItems = append (hardwareItems , fmt .Sprintf ("GPU Count: %d" , * m .conf .Config .Hardware .GPUCount ))
14091409 }
14101410 if m .conf .Config .Hardware .Region != nil {
@@ -1466,7 +1466,7 @@ func (m *DeployView) renderDeploymentSummary() string {
14661466 concurrency := fmt .Sprintf ("Replica Concurrency: %d" , * m .conf .Config .Scaling .ReplicaConcurrency )
14671467
14681468 // Add GPU warning if applicable
1469- if m .conf .Config .Hardware .Compute != nil && * m .conf .Config .Hardware .Compute != "CPU" && * m .conf .Config .Scaling .ReplicaConcurrency > 1 {
1469+ if m .conf .Config .Hardware .ComputePrimary != nil && * m .conf .Config .Hardware .ComputePrimary != "CPU" && * m .conf .Config .Scaling .ReplicaConcurrency > 1 {
14701470 concurrency += " ⚠️ (Multiple concurrent requests on GPU)"
14711471 }
14721472 scalingItems = append (scalingItems , concurrency )
@@ -1546,16 +1546,16 @@ func (m *DeployView) renderDeploymentSummary() string {
15461546
15471547 // HARDWARE PARAMETERS
15481548 var hardwareRows []ui.TableRow
1549- if m .conf .Config .Hardware .Compute != nil {
1550- hardwareRows = append (hardwareRows , ui.TableRow {Label : "Compute:" , Value : * m .conf .Config .Hardware .Compute })
1549+ if m .conf .Config .Hardware .ComputePrimary != nil {
1550+ hardwareRows = append (hardwareRows , ui.TableRow {Label : "Compute:" , Value : * m .conf .Config .Hardware .ComputePrimary })
15511551 }
15521552 if m .conf .Config .Hardware .CPU != nil {
15531553 hardwareRows = append (hardwareRows , ui.TableRow {Label : "CPU:" , Value : fmt .Sprintf ("%.1f" , * m .conf .Config .Hardware .CPU )})
15541554 }
15551555 if m .conf .Config .Hardware .Memory != nil {
15561556 hardwareRows = append (hardwareRows , ui.TableRow {Label : "Memory:" , Value : fmt .Sprintf ("%.0f GB" , * m .conf .Config .Hardware .Memory )})
15571557 }
1558- if m .conf .Config .Hardware .GPUCount != nil && m .conf .Config .Hardware .Compute != nil && * m .conf .Config .Hardware .Compute != "CPU" {
1558+ if m .conf .Config .Hardware .GPUCount != nil && m .conf .Config .Hardware .ComputePrimary != nil && * m .conf .Config .Hardware .ComputePrimary != "CPU" {
15591559 hardwareRows = append (hardwareRows , ui.TableRow {Label : "GPU Count:" , Value : fmt .Sprintf ("%d" , * m .conf .Config .Hardware .GPUCount )})
15601560 }
15611561 if m .conf .Config .Hardware .Region != nil {
@@ -1636,7 +1636,7 @@ func (m *DeployView) renderDeploymentSummary() string {
16361636 concurrency := fmt .Sprintf ("%d" , * m .conf .Config .Scaling .ReplicaConcurrency )
16371637
16381638 // Add GPU warning if applicable
1639- if m .conf .Config .Hardware .Compute != nil && * m .conf .Config .Hardware .Compute != "CPU" && * m .conf .Config .Scaling .ReplicaConcurrency > 1 {
1639+ if m .conf .Config .Hardware .ComputePrimary != nil && * m .conf .Config .Hardware .ComputePrimary != "CPU" && * m .conf .Config .Scaling .ReplicaConcurrency > 1 {
16401640 concurrency += " ⚠️ (Multiple concurrent requests on GPU)"
16411641 }
16421642 scalingRows = append (scalingRows , ui.TableRow {Label : "Replica Concurrency:" , Value : concurrency })
0 commit comments