2021-07-23 16:43:01 +00:00
|
|
|
intrinsics/gen/frexp/0da285.wgsl:29:18 warning: use of deprecated intrinsic
|
|
|
|
var res: f32 = frexp(1.0, &arg_1);
|
|
|
|
^^^^^
|
2021-06-18 18:56:13 +00:00
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
#include <metal_stdlib>
|
2021-06-18 18:56:13 +00:00
|
|
|
|
2021-07-08 21:21:27 +00:00
|
|
|
using namespace metal;
|
2021-07-23 16:43:01 +00:00
|
|
|
|
|
|
|
float tint_frexp(float param_0, threadgroup int* param_1) {
|
|
|
|
int exp;
|
|
|
|
float sig = frexp(param_0, exp);
|
|
|
|
*param_1 = exp;
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void frexp_0da285(threadgroup int* const tint_symbol) {
|
|
|
|
float res = tint_frexp(1.0f, tint_symbol);
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
void compute_main_inner(uint local_invocation_index, threadgroup int* const tint_symbol_1) {
|
2021-07-30 14:08:06 +00:00
|
|
|
{
|
2021-08-04 22:15:28 +00:00
|
|
|
*(tint_symbol_1) = int();
|
2021-07-08 21:21:27 +00:00
|
|
|
}
|
|
|
|
threadgroup_barrier(mem_flags::mem_threadgroup);
|
2021-08-04 22:15:28 +00:00
|
|
|
frexp_0da285(tint_symbol_1);
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void compute_main(uint local_invocation_index [[thread_index_in_threadgroup]]) {
|
|
|
|
threadgroup int tint_symbol_2;
|
|
|
|
compute_main_inner(local_invocation_index, &(tint_symbol_2));
|
2021-07-08 21:21:27 +00:00
|
|
|
return;
|
2021-06-18 18:56:13 +00:00
|
|
|
}
|
|
|
|
|