From 8f8380749b04c0af6582d902a4dd0bc7ceb9223b Mon Sep 17 00:00:00 2001 From: dzaima Date: Fri, 16 Jun 2023 11:12:15 +0300 Subject: [PATCH] generic Singeli builds --- src/singeli/src/base.singeli | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/singeli/src/base.singeli b/src/singeli/src/base.singeli index c517d026..1dd0eb06 100644 --- a/src/singeli/src/base.singeli +++ b/src/singeli/src/base.singeli @@ -193,6 +193,9 @@ def unord{...x} = assert{'unord not supported', show{...x}} def floor{...x} = assert{'floor not supported', show{...x}} def loadBatchBit{...x} = assert{'loadBatchBit not supported', show{...x}} def b_getBatch{...x} = assert{'b_getBatch not supported', show{...x}} +def extract{...x} = assert{'extract not supported', show{...x}} +def abs{...x} = assert{'abs not supported', show{...x}} +def homBlend{...x} = assert{'homBlend not supported', show{...x}} def andnot{a, b & anyNum{a} & anyNum{b}} = a & ~b oper &~ andnot infix none 35