The convolution path already calls apply_tf32_if_allowed() to set
oneDNN fpmath_mode::tf32 when the user enables it, but deconvolution
was missing this, causing ConvTranspose ops to always run in strict
fp32 mode regardless of the user setting.
Add apply_tf32_if_allowed() calls to deconvolution forward and
backward paths, consistent with what...