diff --git a/modules/deeplearning/cloud_opd_srcnn_abi_v2.py b/modules/deeplearning/cloud_opd_srcnn_abi_v2.py
index d91d30c69932a0a10d0e5354959fad599e0ccc8e..8e568e406c58e99093bd5ff70f599bbab59f646d 100644
--- a/modules/deeplearning/cloud_opd_srcnn_abi_v2.py
+++ b/modules/deeplearning/cloud_opd_srcnn_abi_v2.py
@@ -757,7 +757,14 @@ class SRCNN:
         LEN_Y -= 8
         LEN_X -= 8
 
-        cld_opd_sres = self.run_inference_(bt, refl, refl_sub_lo, refl_sub_hi, refl_sub_std, cld_opd, 2*LEN_Y, 2*LEN_X)
+        LEN_Y = 2 * (LEN_Y - 8)
+        LEN_X = 2 * (LEN_X - 8)
+
+        t0 = time.time()
+        cld_opd_sres = self.run_inference_(bt, refl, refl_sub_lo, refl_sub_hi, refl_sub_std, cld_opd, LEN_Y, LEN_X)
+        t1 = time.time()
+        print('inference time: ', (t1 - t0))
+        print(cld_opd_sres.shape)
 
         cld_opd_sres_out = np.zeros((LEN_Y, LEN_X), dtype=np.int8)
         border = int((KERNEL_SIZE - 1) / 2)