chore: watch api

This commit is contained in:
jialin
2024-06-28 17:14:34 +08:00
parent 871bca1916
commit cf0113e8d8
35 changed files with 1171 additions and 627 deletions
@@ -16,7 +16,7 @@ const modelColumns = [
dataIndex: 'gpu_utilization',
key: 'gpu_utilization',
render: (text: any, record: any) => (
<ProgressBar percent={_.round(text, 2)}></ProgressBar>
<ProgressBar percent={_.round(text, 0)}></ProgressBar>
)
},
{
@@ -24,7 +24,7 @@ const modelColumns = [
dataIndex: 'gpu_memory_utilization',
key: 'gpu_memory_utilization',
render: (text: any, record: any) => (
<ProgressBar percent={_.round(text, 2)}></ProgressBar>
<ProgressBar percent={_.round(text, 0)}></ProgressBar>
)
},
{