From 48d66fabec674a86f61c90eb9eaff8a2d9c85d11 Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg <ryan@guzba.com> Date: Tue, 14 Jun 2022 18:04:08 -0500 Subject: [PATCH] should have this --- src/pixie/internal.nim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pixie/internal.nim b/src/pixie/internal.nim index 3f309a6..9fda619 100644 --- a/src/pixie/internal.nim +++ b/src/pixie/internal.nim @@ -10,6 +10,9 @@ template currentExceptionAsPixieError*(): untyped = let e = getCurrentException() newException(PixieError, e.getStackTrace & e.msg, e) +when defined(release): + {.push checks: off.} + proc gaussianKernel*(radius: int): seq[uint16] {.raises: [].} = ## Compute lookup table for 1d Gaussian kernel. ## Values are [0, 255] * 256. @@ -194,3 +197,6 @@ when defined(amd64) and allowSimd: a = mm_unpacklo_epi8(v, mm_setzero_si128()) b = mm_unpacklo_epi8(a, mm_setzero_si128()) result = mm_slli_epi32(b, 24) # Shift the values to uint32 `a` + +when defined(release): + {.pop.}