From 5f27509d98cd401b31edc87fab686531b6ee34e3 Mon Sep 17 00:00:00 2001 From: Igor Izvekov Date: Tue, 4 Apr 2023 00:36:05 +0300 Subject: [PATCH] Minor: Float16Tensor (#4013) --- arrow/src/tensor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/arrow/src/tensor.rs b/arrow/src/tensor.rs index a46a1d08df85..b2abffc517c8 100644 --- a/arrow/src/tensor.rs +++ b/arrow/src/tensor.rs @@ -93,6 +93,7 @@ pub type UInt8Tensor<'a> = Tensor<'a, UInt8Type>; pub type UInt16Tensor<'a> = Tensor<'a, UInt16Type>; pub type UInt32Tensor<'a> = Tensor<'a, UInt32Type>; pub type UInt64Tensor<'a> = Tensor<'a, UInt64Type>; +pub type Float16Tensor<'a> = Tensor<'a, Float16Type>; pub type Float32Tensor<'a> = Tensor<'a, Float32Type>; pub type Float64Tensor<'a> = Tensor<'a, Float64Type>;