We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c856a4c commit 769a380Copy full SHA for 769a380
vortex-compute/src/take/slice/mod.rs
@@ -16,6 +16,9 @@ impl<T: Copy, I: UnsignedPType> Take<[I]> for &[T] {
16
type Output = Buffer<T>;
17
18
fn take(self, indices: &[I]) -> Buffer<T> {
19
+ // TODO(connor): Make the SIMD implementations bound by `Copy` instead of `NativePType`.
20
+ /*
21
+
22
#[cfg(vortex_nightly)]
23
{
24
return portable::take_portable(self, indices);
@@ -29,6 +32,8 @@ impl<T: Copy, I: UnsignedPType> Take<[I]> for &[T] {
29
32
}
30
33
31
34
35
+ */
36
37
#[allow(unreachable_code, reason = "`vortex_nightly` path returns early")]
38
take_scalar(self, indices)
39
0 commit comments