Skip to content

Commit

Permalink
Datum based comparison kernels (apache#4596)
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold committed Aug 15, 2023
1 parent 77fe72d commit 095a625
Show file tree
Hide file tree
Showing 10 changed files with 1,018 additions and 2,046 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/arrow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ jobs:
run: cargo test -p arrow-json --all-features
- name: Test arrow-string with all features
run: cargo test -p arrow-string --all-features
- name: Test arrow-ord with all features except SIMD
run: cargo test -p arrow-ord --features dyn_cmp_dict
- name: Test arrow-ord with all features
run: cargo test -p arrow-ord --all-features
- name: Test arrow-arith with all features except SIMD
run: cargo test -p arrow-arith
- name: Test arrow-row with all features
Expand Down Expand Up @@ -145,8 +145,6 @@ jobs:
rust-version: nightly
- name: Test arrow-array with SIMD
run: cargo test -p arrow-array --features simd
- name: Test arrow-ord with SIMD
run: cargo test -p arrow-ord --features simd
- name: Test arrow-arith with SIMD
run: cargo test -p arrow-arith --features simd
- name: Test arrow with SIMD
Expand Down Expand Up @@ -206,8 +204,8 @@ jobs:
run: cargo clippy -p arrow-json --all-targets --all-features -- -D warnings
- name: Clippy arrow-string with all features
run: cargo clippy -p arrow-string --all-targets --all-features -- -D warnings
- name: Clippy arrow-ord with all features except SIMD
run: cargo clippy -p arrow-ord --all-targets --features dyn_cmp_dict -- -D warnings
- name: Clippy arrow-ord with all features
run: cargo clippy -p arrow-ord --all-targets --all-features -- -D warnings
- name: Clippy arrow-arith with all features except SIMD
run: cargo clippy -p arrow-arith --all-targets -- -D warnings
- name: Clippy arrow-row with all features
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/miri.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ cargo miri test -p arrow-data --features ffi
cargo miri test -p arrow-schema --features ffi
cargo miri test -p arrow-array
cargo miri test -p arrow-arith --features simd
cargo miri test -p arrow-ord --features simd
cargo miri test -p arrow-ord
7 changes: 0 additions & 7 deletions arrow-ord/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,3 @@ half = { version = "2.1", default-features = false, features = ["num-traits"] }

[dev-dependencies]
rand = { version = "0.8", default-features = false, features = ["std", "std_rng"] }

[package.metadata.docs.rs]
features = ["dyn_cmp_dict"]

[features]
dyn_cmp_dict = []
simd = ["arrow-array/simd"]
Loading

0 comments on commit 095a625

Please sign in to comment.