Formatting

This commit is contained in:
Sylvester Hesp 2022-08-30 11:45:50 +02:00 committed by Eduard-Mihai Burtescu
parent faf5c1321b
commit 7e83721978

View File

@ -3,14 +3,14 @@
//! This module is intended as a low level abstraction over SPIR-V instructions.
//! These functions will typically map to a single instruction, and will perform
//! no additional safety checks beyond type-checking.
#[cfg(target_arch = "spirv")]
use crate::integer::Integer;
use crate::{
integer::{SignedInteger, UnsignedInteger},
scalar::Scalar,
vector::Vector,
};
#[cfg(target_arch = "spirv")]
use crate::integer::Integer;
#[cfg(target_arch = "spirv")]
use core::arch::asm;
mod atomics;