Sign in
dawn
/
dawn
/
main
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
scalar-vec3
/
f16.wgsl.expected.msl
blob: 1b6e56f77f6dfb1ce73c09008ea96fd81a664d4e [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
[[
max_total_threads_per_threadgroup
(
1
)]]
kernel
void
f
()
{
half
const
a
=
4.0h
;
half3
const
b
=
half3
(
1.0h
,
2.0h
,
3.0h
);
half3
const
r
=
(
a
/
b
);
}