llama-cpp-sys-4 0.7.0

Low Level Bindings to llama.cpp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#version 450

#include "glu_head.glsl"

float op(float a, float b) {
    float gate = min(a, p.limit);
    float up = clamp(b, -p.limit, p.limit);

    return gate / (1.0f + exp(-gate)) * up;
}

#include "glu_main.glsl"