From 5059d13b96dbbc9a3c69c719b4c3b91207423666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= <francois.laurent@posteo.net> Date: Fri, 31 May 2024 16:22:22 +0200 Subject: [PATCH] fixes #216 --- src/taggingbackends/explorer.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/taggingbackends/explorer.py b/src/taggingbackends/explorer.py index ff726b8..6ce6cb4 100644 --- a/src/taggingbackends/explorer.py +++ b/src/taggingbackends/explorer.py @@ -213,6 +213,10 @@ Cannot find any Python package in project root directory: # typically follows: # UserWarning: CUDA initialization: CUDA unknown error print(line) + elif line == ' return F.conv2d(input, weight, bias, self.stride,': + # typically follows: + # UserWarning: Plan failed with a cudnnException: CUDNN_BACKEND_EXECUTION_PLAN_DESCRIPTOR: cudnnFinalize Descriptor Failed cudnn_status: CUDNN_STATUS_NOT_SUPPORTED ... + print(line) # tensorflow logs elif 26 < len(line): # assume line[:26] to be e.g.: 2022-05-17 18:48:15.120981 -- GitLab