From 6cde94bdc8284697ee991e4ed514609990a8e7e6 Mon Sep 17 00:00:00 2001 From: Ryan Kierulf Date: Tue, 18 Jun 2024 14:20:47 -0500 Subject: [PATCH] Change warning message slightly --- KomaMRICore/ext/KomaMetalExt.jl | 2 +- KomaMRICore/ext/KomaoneAPIExt.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/KomaMRICore/ext/KomaMetalExt.jl b/KomaMRICore/ext/KomaMetalExt.jl index 7519b3a49..3d522e0b8 100644 --- a/KomaMRICore/ext/KomaMetalExt.jl +++ b/KomaMRICore/ext/KomaMetalExt.jl @@ -29,7 +29,7 @@ Base.findall(x::MtlVector{Bool}) = convert(MtlVector, findall(KomaMRICore.cpu(x) function __init__() push!(KomaMRICore.LOADED_BACKENDS[], MetalBackend()) - @warn "Metal does not support all array operations used by KomaMRI (https://github.com/JuliaGPU/Metal.jl/issues/348). GPU performance may be negatively impacted" + @warn "Metal does not support all array operations used by KomaMRI (https://github.com/JuliaGPU/Metal.jl/issues/348). GPU performance may be slower than expected" end end \ No newline at end of file diff --git a/KomaMRICore/ext/KomaoneAPIExt.jl b/KomaMRICore/ext/KomaoneAPIExt.jl index 37665f24d..03cc270de 100644 --- a/KomaMRICore/ext/KomaoneAPIExt.jl +++ b/KomaMRICore/ext/KomaoneAPIExt.jl @@ -31,7 +31,7 @@ Base.findall(x::oneVector{Bool}) = convert(oneVector, findall(KomaMRICore.cpu(x) function __init__() push!(KomaMRICore.LOADED_BACKENDS[], oneAPIBackend()) - @warn "oneAPI does not support all array operations used by KomaMRI. GPU performance may be negatively impacted" + @warn "oneAPI does not support all array operations used by KomaMRI. GPU performance may be slower than expected" end end \ No newline at end of file