存算联动修改

Former-commit-id: e6e7389ce22dd1928bfe759cdba7613b662524cd
This commit is contained in:
tzwang 2023-10-30 10:48:46 +08:00
parent 1b07efc431
commit ecd23ba389
2 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,7 @@ type ModelArtsLink struct {
//) //)
func NewModelArtsLink(ctx context.Context, svcCtx *svc.ServiceContext, participant *models.ScParticipantPhyInfo) *ModelArtsLink { func NewModelArtsLink(ctx context.Context, svcCtx *svc.ServiceContext, participant *models.ScParticipantPhyInfo) *ModelArtsLink {
return &ModelArtsLink{ctx: ctx, svcCtx: svcCtx, platform: participant.Name, pageIndex: 1, pageSize: 100} return &ModelArtsLink{ctx: ctx, svcCtx: svcCtx, participant: participant, platform: participant.Name, pageIndex: 1, pageSize: 100}
} }
func (o *ModelArtsLink) UploadImage(path string) (interface{}, error) { func (o *ModelArtsLink) UploadImage(path string) (interface{}, error) {

View File

@ -31,6 +31,7 @@ const (
TYPE_SHUGUANGAI = "3" TYPE_SHUGUANGAI = "3"
OCTOPUS = "Octopus" OCTOPUS = "Octopus"
MODELARTS = "Modelarts" MODELARTS = "Modelarts"
SHUGUANGAI = "ShuguangAi"
DCU = "dcu" DCU = "dcu"
PYTORCH = "Pytorch" PYTORCH = "Pytorch"
TASK_PYTORCH_PREFIX = "PytorchTask" TASK_PYTORCH_PREFIX = "PytorchTask"
@ -50,6 +51,7 @@ var (
AITYPE = map[string]string{ AITYPE = map[string]string{
"1": OCTOPUS, "1": OCTOPUS,
"2": MODELARTS, "2": MODELARTS,
"3": SHUGUANGAI,
} }
) )