We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4179f1f commit be41ab8Copy full SHA for be41ab8
src/compiler/execution.jl
@@ -304,12 +304,10 @@ end
304
if buf.status == MTL.MTLCommandBufferStatusError
305
err = buf.error
306
if err !== nothing
307
- # Get error details
308
code = err.code # MTLCommandBufferError enum value
309
description = err.localizedDescription
310
-
311
- # Log the error
312
- @error "GPU kernel execution failed" exception=(err, catch_backtrace()) kernel=nameof(kernel.f) error_code=code description=description
+
+ @error "GPU kernel execution failed" exception = (err, catch_backtrace()) kernel = nameof(kernel.f) error_code = code description = description
313
end
314
315
0 commit comments