Adds math nodes for numbers and types which do not need it. I got inspired by was_extras node.
WARNING This node is not compatible to ComfyUI-Impact-Pack and ComfyUI-Ovi which forces older antlr version
- Install ComfyUI.
- Clone this repository into
ComfyUI/custom_nodes. - open command prompt/terminal/bash in your comfy folder
- activate environment
./venv/Scripts/activate - install antlr
pip install -U antlr4-python3-runtime==4.13.2 - Restart ComfyUI.
You can also get the node from comfy manager under the name of More math.
-
functions and variables in math expressions
-
Conversion between INT and FLOAT; AUDIO and IMAGE (red - real - strenght of cosine of frequency; blue - imaginary - strenght of sine of frequency; green - log1p of amplitude - just so it looks good to humans)
-
Nodes for FLOAT, CONDITIONING, LATENT, IMAGE, MASK, NOISE, AUDIO, VIDEO, MODEL, CLIP and VAE
-
Vector Math: Support for List literals
[v1, v2, ...]and operations between lists/scalars/tensors
- Math:
+,-,*,/,%,^,|x|(norm/abs) - Boolean:
<,<=,>,>=,==,!=(false = 0.0,true = 1.0) - Lists:
[v1, v2, ...](Vector math supported, mostly usefull inconvandpermute)- You can also use lists to do math with input tensor (image, noise, conditioing, latent, audio) which results in batched output as long as batch size is different to list size.
- print_shape(a) = torch.Shape[1,1024,1024,3]; b = a*[0,0.2,-0.3]; print_shape(b) = torch.Shape[3,1024,1024,3]
- You can <operator> batched tensor with another tensor which is not batched (dim[0] = 1) - the non batched tensor will be duplicated along batch dimension
- In imageMath node you can use 3 element list to specify a color of image. You cannot use any imput tensor, doing so will result in behaviour in subpoint 1 in list
abs(x)or|x|: Absolute value. For floatabs(x)and|x|are the same. For tensorabs(x)calculates element-wise absolute value and for|x|it calculates L2 norm (euclidean norm).sqrt(x): Square root.ln(x): Natural logarithm (base e).log(x): Logarithm base 10.exp(x): Exponential function (e^x).pow(x, y): Power function (x^y).floor(x): Rounds down to nearest integer.ceil(x): Rounds up to nearest integer.round(x): Rounds to nearest integer.fract(x): Returns the fractional part of x (x - floor(x)).sign(x): Returns -1 for negative, 1 for positive, 0 for zero.gamma(x): Gamma function.
sin(x),cos(x),tan(x): Trigonometric functions.asin(x),acos(x),atan(x): Inverse trigonometric functions.atan2(y, x): Arctangent of y/x, handling quadrants.
sinh(x),cosh(x),tanh(x): Hyperbolic functions.asinh(x),acosh(x),atanh(x): Inverse hyperbolic functions.
relu(x): Rectified Linear Unit (max(0, x)).gelu(x): Gaussian Error Linear Unit.softplus(x): Softplus function (log(1 + e^x)).sigm(x): Sigmoid function (1 / (1 + e^-x)).
clamp(x, min, max): Constrains x to be between min and max.lerp(a, b, w): Linear interpolation:a + (b - a) * w.step(x, edge): Returns 1.0 if x >= edge, else 0.0.smoothstep(x, edge0, edge1): Hermite interpolation between edge0 and edge1.
tmin(x, y): Element-wise minimum of x and y.tmax(x, y): Element-wise maximum of x and y.smin(x, ...): Scalar minimum. Returns the single smallest value across all input tensors/values.smax(x, ...): Scalar maximum. Returns the single largest value across all input tensors/values.sum(x): Sum of all elements.mean(x): Mean value of all elements.std(x): Standard deviation of all elements.var(x): Variance of all elements.quartile(x, k): Returns the k-th quartile (k=0 for min, 1 for 25th, 2 for 50th, 3 for 75th, 4 for max).percentile(x, p): Returns the p-th percentile (p is 0-100).quantile(x, q): Returns the q-th quantile (q is 0-1).dot(a, b): Dot product of two tensors (flattens inputs to 1D) or lists.moment(x, a, k): Returns the k-th moment of x centered around a.topk(x, k): Returns a tensor with the top K largest values preserved at their original positions (others zeroed). For lists, returns the top K largest items sorted descending. (uses magnitude for complex numbers).botk(x, k): Returns a tensor with the bottom K smallest values preserved at their original positions (others zeroed). For lists, returns the bottom K smallest items sorted ascending. (uses magnitude for complex numbers)tnorm(x): Tensor normalisation. Normalises x (L2 norm along last dimension).snorm(x): The same as |x| for tensors.swap(tensor, dim, index1, index2): Swaps two slices of a tensor along a specified dimension.
-
map(tensor, c1, ...): Remapstensorusing source coordinates.- Up to 3 coordinate mapping functions can be provided which map to the last (up to 3) dimensions of the tensor. Rest uses identity mapping.
-
ezconvolution(tensor, kw, [kh], [kd], k_expr)orezconv: Applies a convolution totensor. Automatically permutes tensor to try to make it work with various inputs without the need to permute manually.k_exprcan be a math expression (usingkX,kY,kZ) or a list literal.
-
convolution(tensor, kw, [kh], [kd], k_expr)orconv: Applies a convolution totensor. Does not perform automatic permutations. Expects standard PyTorch layout(Batch, Channel, Spatial...).k_exprcan be a math expression (usingkX,kY,kZ) or a list literal.
-
permute(tensor, dims)orperm: Rearranges the dimensions of the tensor. (e.g.,perm(a, [2, 3, 0, 1])) -
reshape(tensor, shape)orrshp: Reshapes the tensor to a new shape. (e.g.,rshp(a, [S0*S1, S2, S3]))
fft(x): Fast Fourier Transform (Time to Frequency).ifft(x): Inverse Fast Fourier Transform (Frequency to Time).angle(x): Returns the element-wise angle (phase) of the complex tensor.
print(x): Prints the value of x to the console and returns x.print_shape(x)orpshp: Prints the shape of x to the console and returns x.pinv(x): Computes the permutation inverse of list. Ifpermute(i,x) = j, thenpermute(j,pinv(x)) = i.range(start, end, step): Generates a list of values from start (inclusive) to end (exclusive) with given step.
-
Common variables (except FLOAT, MODEL, VAE and CLIP):
D{N}- position in n-th dimension of tensor (for example D0, D1, D2, ...)S{N}- size of n-th dimension of tensor (for example S0, S1, S2, ...)
-
common inputs (matches node input type):
a,b,c,d
-
Extra floats:
w,x,y,z
-
INSIDE IFFT
Forfrequency_count– frequency count (freq domain, iFFT only)Korfrequency– isotropic frequency (Euclidean norm of indices, iFFT only)Kx,Ky,K_dimN- frequency index for specific dimensionFx,Fy,F_dimN- frequency count for specific dimension
-
IMAGE and LATENT:
Corchannel- channel of imageX- position X in image. 0 is in top leftY- position Y in image. 0 is in top leftWorwidth- width of image. y/width = 1Horheight- height of image. x/height = 1Bor 'batch' - position in batchTorbatch_count- number of batchesNorchannel_count- count of channels
-
IMAGE KERNEL:
kX,kY- position in kernel. Centered at 0.0.kW,kernel_width- width of kernel.kH,kernel_height- height of kernel.kD,kernel_depth- depth of kernel.
-
AUDIO:
Bor 'batch' - position in batchNorchannel_count- count of channelsCorchannel- channel of audioSorsample– current audio sample- 'T' or 'sample_count` - audio lenght in samples
Rorsample_rate– sample rate
-
VIDEO
- refer to
IMAGE and LATENTfor visual part (butbatchisframeandbatch_countisframe_count) - refer to
AUDIOfor sound part
- refer to
-
NOISE
- refer to
IMAGE and LATENTfor most variables Iorinput_latent– latent used as input to generate noise before noise is generated into it
- refer to
-
CONDITIONING and FLOAT
- no additional variables
-
MODEL, CLIP and VAE
Lorlayer- a position of layer from beginning of objectLCorlayer_count- a count of layers
-
Constants:
e,pi