Is there a way to check if torch is using deterministic algorithms after I have set torch.use_deterministic_algorithms(True)?
Naively, I would have assumed that at least torch.backends.cudnn.deterministic is set to True after this call to reflect that convolutions are using deterministic algorithms.
It depends on your knowledge about the used algorithms, but you could e.g. profile the code via Nsight Systems and check which kernels are used as some kernels are known to be (non-)deterministic. I’m not aware of any other way to “check” it besides setting the variable and assuming the framework respects this setting.
I assume you made a feature request and it was implemented, because now there is a way to check. For others who stumble across this thread, the answer is: