diff --git a/schemsearch-common/src/lib.rs b/schemsearch-common/src/lib.rs index a567cb3..38da477 100644 --- a/schemsearch-common/src/lib.rs +++ b/schemsearch-common/src/lib.rs @@ -37,11 +37,20 @@ pub struct Match { #[macro_export] macro_rules! time { - ($name:ident, $body:block) => {{ - let start = std::time::Instant::now(); - let result = $body; - let duration = start.elapsed(); - println!("{} took {:?}", stringify!($name), duration); - result - }}; + ($name:ident, $body:block) => { + { + #[cfg(debug_assertions)] + { + let start = std::time::Instant::now(); + let result = $body; + let duration = start.elapsed(); + println!("{} took {:?}", stringify!($name), duration); + result + } + #[cfg(not(debug_assertions))] + { + $body + } + } + }; } diff --git a/schemsearch-ocl-matcher/src/lib.rs b/schemsearch-ocl-matcher/src/lib.rs index be6e57d..b995923 100644 --- a/schemsearch-ocl-matcher/src/lib.rs +++ b/schemsearch-ocl-matcher/src/lib.rs @@ -1,6 +1,6 @@ use math::round::ceil; use ocl::SpatialDims::Three; -use ocl::{core, Buffer, Image, MemFlags, ProQue}; +use ocl::{core, Buffer, CommandQueueProperties, Context, Image, MemFlags, ProQue}; use schemsearch_common::{time, Match, SearchBehavior}; use std::sync::OnceLock; use std::time;