1#version 450
2
3#include "glu_head.glsl"
4
5float op(float a, float b) {
6    return a / (1.0f + exp(-a)) * b;
7}
8
9#include "glu_main.glsl"