Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.12.0-rc2 #956

Merged
merged 4 commits into from
Jan 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use latest DF
  • Loading branch information
andygrove committed Jan 16, 2024
commit b6e344bdcb03e4063f95c750a49535b27cc4a1f7
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ members = [
resolver = "2"

[workspace.dependencies]
arrow = { version = "49.0.0", features=["ipc_compression"] }
arrow-flight = { version = "49.0.0", features = ["flight-sql-experimental"] }
arrow-schema = { version = "49.0.0", default-features = false }
arrow = { version = "50.0.0", features=["ipc_compression"] }
arrow-flight = { version = "50.0.0", features = ["flight-sql-experimental"] }
arrow-schema = { version = "50.0.0", default-features = false }
configure_me = { version = "0.4.0" }
configure_me_codegen = { version = "0.4.4" }
datafusion = { git = "https://github.com/apache/arrow-datafusion", rev = "7fc663c2e40be2928778102386bbf76962dd2cdc" }
datafusion-cli = { git = "https://github.com/apache/arrow-datafusion", rev = "7fc663c2e40be2928778102386bbf76962dd2cdc" }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion", rev = "7fc663c2e40be2928778102386bbf76962dd2cdc" }
object_store = "0.8.0"
sqlparser = "0.40.0"
datafusion = { git = "https://github.com/apache/arrow-datafusion", rev = "4cde998f1e6dc3f572f2b3ed09994190f5d770ce" }
datafusion-cli = { git = "https://github.com/apache/arrow-datafusion", rev = "4cde998f1e6dc3f572f2b3ed09994190f5d770ce" }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion", rev = "4cde998f1e6dc3f572f2b3ed09994190f5d770ce" }
object_store = "0.9.0"
sqlparser = "0.41.0"
tonic = { version = "0.10" }
tonic-build = { version = "0.10", default-features = false, features = [
"transport",
Expand Down
1 change: 0 additions & 1 deletion ballista/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ force_hash_collisions = ["datafusion/force_hash_collisions"]
hdfs = ["datafusion-objectstore-hdfs/hdfs"]
hdfs3 = ["datafusion-objectstore-hdfs/hdfs3"]
s3 = ["object_store/aws"]
simd = ["datafusion/simd"]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DataFusion no longer has a simd feature

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happened?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

simd feature was removed from arrow-rs in:

commit d41e90e31d07bc2ad2f05ffc091f171e6c846ddf
Author: Raphael Taylor-Davies <1781103+tustvold@users.noreply.github.com>
Date:   Fri Dec 8 08:49:46 2023 +0000

    Remove SIMD Feature (#5184)

    * Remove SIMD feature

    * Clippy

    * Tweak WASM features

    * Fix test

    * Exclude pyarrow from general build

There are commits prior to this with statements such as:

    * Refactor numeric aggregation kernels to make better use of
    auto-vectorization.

    Remove the explicit simd implementations since the autovectorized
    versions are faster on average.


[dependencies]
ahash = { version = "0.8", default-features = false }
Expand Down
1 change: 0 additions & 1 deletion benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ rust-version = "1.63"
[features]
ci = []
default = ["mimalloc"]
simd = ["datafusion/simd"]
snmalloc = ["snmalloc-rs"]

[dependencies]
Expand Down
Loading