wxyu b725f8872f MS-422 Support DeleteTask in Multi-GpuResource case
Former-commit-id: eea952afdf004ba46b9a55b58818ece35ecc9179
2019-08-26 20:06:44 +08:00

28 lines
680 B
C++

/*******************************************************************************
* copyright 上海赜睿信息科技有限公司(zilliz) - all rights reserved
* unauthorized copying of this file, via any medium is strictly prohibited.
* proprietary and confidential.
******************************************************************************/
#pragma once
#include "../resource/Resource.h"
namespace zilliz {
namespace milvus {
namespace engine {
class Action {
public:
static void
PushTaskToNeighbourRandomly(const TaskPtr &task, const ResourcePtr &self);
static void
PushTaskToAllNeighbour(const TaskPtr &task, const ResourcePtr &self);
};
}
}
}