From fd7e4ee357743566517bda0ee0b11c750acddade Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Fri, 7 Jul 2023 10:55:15 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/cloud_opd_srcnn_abi_v2.py | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/modules/deeplearning/cloud_opd_srcnn_abi_v2.py b/modules/deeplearning/cloud_opd_srcnn_abi_v2.py
index d91d30c6..8e568e40 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)
-- 
GitLab