scale.es6 188 字节
Newer Older
Y
Yanzhan Yang 已提交
1 2 3 4 5 6 7 8 9 10 11
/* eslint-disable */
/**
 * @file 激活函数 
 * @author yangmingming
 */
export default `
float scale(float x, float p, float b) {
    float result = p * x + b;
    return result;
}
`;