|
- /*
-
- Copyright (c) [2023] [pcm]
- [pcm-coordinator] is licensed under Mulan PSL v2.
- You can use this software according to the terms and conditions of the Mulan PSL v2.
- You may obtain a copy of Mulan PSL v2 at:
- http://license.coscl.org.cn/MulanPSL2
- THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
- EITHER EXPaRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
- MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
- See the Mulan PSL v2 for more details.
-
- */
-
- package schedulers
-
- import (
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/scheduler/algorithm/providerPricing"
- "gitlink.org.cn/JointCloud/pcm-coordinator/internal/scheduler/strategy"
- "gitlink.org.cn/JointCloud/pcm-coordinator/pkg/constants"
- "gitlink.org.cn/JointCloud/pcm-coordinator/pkg/models"
- "gitlink.org.cn/JointCloud/pcm-coordinator/pkg/response"
- "gitlink.org.cn/JointCloud/pcm-coordinator/pkg/utils"
- )
-
- type HpcScheduler struct {
- yamlString string
- }
-
- func NewHpcScheduler(val string) *HpcScheduler {
- return &HpcScheduler{yamlString: val}
- }
-
- func (h *HpcScheduler) GetNewStructForDb(task *response.TaskInfo, resource string, participantId int64) (interface{}, error) {
- hpc := models.Hpc{}
- utils.Convert(task.Metadata, &hpc)
- hpc.Id = utils.GenSnowflakeID()
- hpc.TaskId = task.TaskId
- hpc.Status = constants.Saved
- hpc.ParticipantId = participantId
- hpc.YamlString = h.yamlString
- return hpc, nil
- }
-
- func (h *HpcScheduler) PickOptimalStrategy() (strategy.Strategy, error) {
- return nil, nil
- }
-
- func (h *HpcScheduler) genTaskAndProviders(task *response.TaskInfo) (*providerPricing.Task, []*providerPricing.Provider) {
- return nil, nil
- }
-
- func (h *HpcScheduler) AssignTask(clusters []*strategy.AssignedCluster, mode int) (interface{}, error) {
- return nil, nil
- }
|