Sign in
dawn
/
dawn
/
3a431d71be0c46641170635f75fba8ea923d7711
/
.
/
test
/
tint
/
expressions
/
binary
/
div
/
scalar-scalar
/
f16.wgsl.expected.msl
blob: e1c7109ffacdd8e0ebaff23f9e3f9f8e5e465680 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
half
const
a
=
1.0h
;
half
const
b
=
2.0h
;
half
const
r
=
(
a
/
b
);
return
;
}