You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2020/12/06 08:06:32 UTC

[arrow] branch master updated: ARROW-10822 [Rust][Datafusion] add simd feature flag to datafusion

This is an automated email from the ASF dual-hosted git repository.

jorgecarleitao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new ee83d47  ARROW-10822 [Rust][Datafusion] add simd feature flag to datafusion
ee83d47 is described below

commit ee83d4789038f3d46b32f3c6df9a5b13d2707d25
Author: Qingping Hou <da...@gmail.com>
AuthorDate: Sun Dec 6 09:05:47 2020 +0100

    ARROW-10822 [Rust][Datafusion] add simd feature flag to datafusion
    
    allow building datafusion with simd enabled
    
    Closes #8847 from houqp/qp_simd
    
    Authored-by: Qingping Hou <da...@gmail.com>
    Signed-off-by: Jorge C. Leitao <jo...@gmail.com>
---
 rust/datafusion/Cargo.toml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/rust/datafusion/Cargo.toml b/rust/datafusion/Cargo.toml
index bd2ae97..c969512 100644
--- a/rust/datafusion/Cargo.toml
+++ b/rust/datafusion/Cargo.toml
@@ -42,6 +42,7 @@ path = "src/bin/main.rs"
 [features]
 default = ["cli"]
 cli = ["rustyline"]
+simd = ["arrow/simd"]
 
 [dependencies]
 ahash = "0.6"