forked from JointCloud/pcm-coordinator
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package inference
|
|
|
|
import (
|
|
"context"
|
|
"strconv"
|
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type GetDeployInstanceLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewGetDeployInstanceLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetDeployInstanceLogic {
|
|
return &GetDeployInstanceLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *GetDeployInstanceLogic) GetDeployInstance(req *types.GetDeployInstanceReq) (resp *types.GetDeployInstanceResp, err error) {
|
|
resp = &types.GetDeployInstanceResp{}
|
|
|
|
id, err := strconv.ParseInt(req.Id, 10, 64)
|
|
ins, err := l.svcCtx.Scheduler.AiStorages.GetInferDeployInstanceById(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
in, err := l.svcCtx.Scheduler.AiService.InferenceAdapterMap[strconv.FormatInt(ins.AdapterId, 10)][strconv.FormatInt(ins.ClusterId, 10)].GetInferDeployInstance(l.ctx, ins.InstanceId)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resp.Instance = in
|
|
|
|
return
|
|
}
|