mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-31 07:55:38 +08:00
17 lines
223 B
C++
17 lines
223 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include "arrow/tensor.h"
|
|
|
|
|
|
namespace zilliz {
|
|
namespace knowhere {
|
|
|
|
|
|
using Tensor = arrow::Tensor;
|
|
using TensorPtr = std::shared_ptr<Tensor>;
|
|
|
|
|
|
} // namespace knowhere
|
|
} // namespace zilliz
|