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

add nvptx vendor intrinsics and initial no_std support #191

Merged
merged 3 commits into from
Nov 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ cupid = "0.3"

[features]
strict = []
std = []
Copy link

Choose a reason for hiding this comment

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

Should there be default = ["std"]?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I thought about this, and I think we should settle it before the next release. I've opened #193.

3 changes: 3 additions & 0 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ echo "RUSTFLAGS=${RUSTFLAGS}"

cargo test --target $TARGET --features "strict"
cargo test --release --target $TARGET --features "strict"

cargo test --target $TARGET --features "strict,std"
cargo test --release --target $TARGET --features "strict,std"
8 changes: 8 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@
cast_possible_truncation, cast_precision_loss,
shadow_reuse, cyclomatic_complexity, similar_names,
doc_markdown, many_single_char_names))]
#![cfg_attr(not(feature = "std"), no_std)]
Copy link
Member

Choose a reason for hiding this comment

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

Typically this is an unconditional #![no_std] if a crate is no_std compatible, but I'll send a PR for this.


#[cfg(not(feature = "std"))]
extern crate core as std;

#[cfg(test)]
extern crate stdsimd_test;
Expand All @@ -153,6 +157,8 @@ pub mod vendor {

#[cfg(target_arch = "aarch64")]
pub use aarch64::*;

pub use nvptx::*;
}

#[macro_use]
Expand Down Expand Up @@ -194,3 +200,5 @@ mod x86;
mod arm;
#[cfg(target_arch = "aarch64")]
mod aarch64;

mod nvptx;
8 changes: 4 additions & 4 deletions src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ macro_rules! test_arithmetic_ {

#[cfg(test)]
#[macro_export]
macro_rules! test_neg_ {
macro_rules! test_neg_ {
($tn:ident, $zero:expr, $one:expr, $two:expr, $four:expr) => {
{
let z = $tn::splat($zero);
Expand Down Expand Up @@ -573,7 +573,7 @@ macro_rules! test_bit_arithmetic_ {

#[cfg(test)]
#[macro_export]
macro_rules! test_ops_si {
macro_rules! test_ops_si {
($($tn:ident),+) => {
$(
test_arithmetic_!($tn, 0, 1, 2, 4);
Expand All @@ -585,7 +585,7 @@ macro_rules! test_bit_arithmetic_ {

#[cfg(test)]
#[macro_export]
macro_rules! test_ops_ui {
macro_rules! test_ops_ui {
($($tn:ident),+) => {
$(
test_arithmetic_!($tn, 0, 1, 2, 4);
Expand All @@ -596,7 +596,7 @@ macro_rules! test_bit_arithmetic_ {

#[cfg(test)]
#[macro_export]
macro_rules! test_ops_f {
macro_rules! test_ops_f {
($($tn:ident),+) => {
$(
test_arithmetic_!($tn, 0., 1., 2., 4.);
Expand Down
109 changes: 109 additions & 0 deletions src/nvptx/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
//! nvptx intrinsics

#[allow(improper_ctypes)]
extern "C" {
#[link_name = "llvm.cuda.syncthreads"]
fn syncthreads() -> ();
#[link_name = "llvm.nvvm.read.ptx.sreg.ntid.x"]
fn block_dim_x() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.ntid.y"]
fn block_dim_y() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.ntid.z"]
fn block_dim_z() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.ctaid.x"]
fn block_idx_x() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.ctaid.y"]
fn block_idx_y() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.ctaid.z"]
fn block_idx_z() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.nctaid.x"]
fn grid_dim_x() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.nctaid.y"]
fn grid_dim_y() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.nctaid.z"]
fn grid_dim_z() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.tid.x"]
fn thread_idx_x() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.tid.y"]
fn thread_idx_y() -> i32;
#[link_name = "llvm.nvvm.read.ptx.sreg.tid.z"]
fn thread_idx_z() -> i32;
}

/// Synchronizes all threads in the block.
#[inline(always)]
pub unsafe fn _syncthreads() -> () {
syncthreads()
}

/// x-th thread-block dimension.
#[inline(always)]
pub unsafe fn _block_dim_x() -> i32 {
block_dim_x()
}

/// y-th thread-block dimension.
#[inline(always)]
pub unsafe fn _block_dim_y() -> i32 {
block_dim_y()
}

/// z-th thread-block dimension.
#[inline(always)]
pub unsafe fn _block_dim_z() -> i32 {
block_dim_z()
}

/// x-th thread-block index.
#[inline(always)]
pub unsafe fn _block_idx_x() -> i32 {
block_idx_x()
}

/// y-th thread-block index.
#[inline(always)]
pub unsafe fn _block_idx_y() -> i32 {
block_idx_y()
}

/// z-th thread-block index.
#[inline(always)]
pub unsafe fn _block_idx_z() -> i32 {
block_idx_z()
}

/// x-th block-grid dimension.
#[inline(always)]
pub unsafe fn _grid_dim_x() -> i32 {
grid_dim_x()
}

/// y-th block-grid dimension.
#[inline(always)]
pub unsafe fn _grid_dim_y() -> i32 {
grid_dim_y()
}

/// z-th block-grid dimension.
#[inline(always)]
pub unsafe fn _grid_dim_z() -> i32 {
grid_dim_z()
}

/// x-th thread index.
#[inline(always)]
pub unsafe fn _thread_idx_x() -> i32 {
thread_idx_x()
}

/// y-th thread index.
#[inline(always)]
pub unsafe fn _thread_idx_y() -> i32 {
thread_idx_y()
}

/// z-th thread index.
#[inline(always)]
pub unsafe fn _thread_idx_z() -> i32 {
thread_idx_z()
}
11 changes: 11 additions & 0 deletions src/x86/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,14 @@ mod abm;
mod bmi;
mod bmi2;
mod tbm;

#[allow(non_camel_case_types)]
#[cfg(not(feature = "std"))]
#[repr(u8)]
pub enum c_void {
#[doc(hidden)] __variant1,
#[doc(hidden)] __variant2,
}

#[cfg(feature = "std")]
use std::os::raw::c_void;
1 change: 1 addition & 0 deletions src/x86/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ pub fn __unstable_detect_feature(x: __Feature) -> bool {

#[cfg(test)]
mod tests {
#[cfg(feature = "std")]
#[test]
fn runtime_detection_x86_nocapture() {
println!("sse: {:?}", cfg_feature_enabled!("sse"));
Expand Down
2 changes: 1 addition & 1 deletion src/x86/sse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use simd_llvm::simd_shuffle4;
use v128::*;
use v64::f32x2;
use std::os::raw::c_void;
use super::c_void;
use std::mem;
use std::ptr;

Expand Down
4 changes: 2 additions & 2 deletions src/x86/sse2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
use stdsimd_test::assert_instr;

use std::mem;
use std::os::raw::c_void;
use super::c_void;
use std::ptr;

use simd_llvm::{simd_cast, simd_shuffle16, simd_shuffle2, simd_shuffle4,
Expand Down Expand Up @@ -2242,7 +2242,7 @@ extern "C" {

#[cfg(test)]
mod tests {
use std::os::raw::c_void;
use super::c_void;
use stdsimd_test::simd_test;
use test::black_box; // Used to inhibit constant-folding.

Expand Down