mirror of
https://github.com/Veridise/Picus.git
synced 2026-05-11 03:00:06 -04:00
9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
pragma circom 2.0.3;
|
|
|
|
// Poly activation layer: https://arxiv.org/abs/2011.05530
|
|
template Poly (n) {
|
|
signal input in;
|
|
signal output out;
|
|
|
|
out <== in * in + n*in;
|
|
} |