aweinstock314 / prefetch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Only works on nightly

jonhoo opened this issue · comments

Is there any chance of having this crate work on non-nightly builds?

I removed the dependency on llvmint (which required simd for unrelated reasons) and removed the associated_consts feature flag (which is now stable), but this still depends on link_llvm_intrinsics, which is nightly only (and looks to remain that way indefinitely: rust-lang/rust#29602).

prefetch 0.2 is now on crates.io, with a smaller dependency footprint (but still requiring nightly).

@aweinstock314 thanks! I've since switched to std::intrinsics::prefetch_read_data which serves my particular purpose (although it too is nightly-only for the time being).