EngineFactory.h 690 字节
Newer Older
X
Xu Peng 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 * Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited.
 * Proprietary and confidential.
 ******************************************************************************/
#pragma once

G
groot 已提交
8 9
#include "Status.h"
#include "ExecutionEngine.h"
X
Xu Peng 已提交
10 11 12 13 14

namespace zilliz {
namespace vecwise {
namespace engine {

G
groot 已提交
15 16 17 18 19
class EngineFactory {
public:
    static ExecutionEnginePtr Build(uint16_t dimension,
                                    const std::string& location,
                                    EngineType type);
X
Xu Peng 已提交
20 21
};

G
groot 已提交
22 23 24
}
}
}