Skip to content

Commit 8a5f992

Browse files
committed
After moving warp into subdir
1 parent 7e7d8b7 commit 8a5f992

20 files changed

+71
-440
lines changed

crates/cuda_std/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
#![allow(internal_features)]
2525
#![cfg_attr(
2626
target_os = "cuda",
27-
feature(alloc_error_handler, asm_experimental_arch, link_llvm_intrinsics)
27+
feature(alloc_error_handler, asm_experimental_arch)
2828
)]
29+
#![feature(link_llvm_intrinsics)]
2930

3031
extern crate alloc;
3132

crates/cuda_std/src/warp/matrix.rs renamed to crates/cuda_std/src/warp/matrix/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ pub mod ops;
1515

1616
// WMMA intrinsic declarations
1717
// These LLVM intrinsics return arrays by value which is their intended behavior
18-
#[cfg(target_arch = "nvptx64")]
1918
#[allow(improper_ctypes)]
2019
extern "C" {
2120
// ============= 16x16x16 intrinsics =============

crates/cuda_std/src/warp/matrix/ops.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use super::layout::{Col, Layout, Row};
66
use super::*;
77

88
// Import all the intrinsic functions from the parent module
9-
#[cfg(target_arch = "nvptx64")]
109
use super::{
1110
wmma_load_a_bf16_col_m16n16k16,
1211
wmma_load_a_bf16_col_m16n8k16,

crates/cuda_std/src/warp/matrix_ops.rs

Lines changed: 0 additions & 368 deletions
This file was deleted.

0 commit comments

Comments
 (0)