blob: b621b5841cd21c2baf3fdfd540ce25fbe7c103ce [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void tanh_c48aa6() {
float2 res = float2(0.76159417629241943359f);
}
fragment void fragment_main() {
tanh_c48aa6();
}
kernel void compute_main() {
tanh_c48aa6();
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
tanh_c48aa6();
return out;
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.VertexOutput_pos=vertex_main_inner().pos};
}