Add const-eval for `cos` and `cosh`
This CL adds const-eval for `cos` and `cosh`. Bug: tint:1581 Change-Id: I8df8f979a7b351288cadccda88940fdb5a20d18f Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/109561 Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com>
This commit is contained in:
parent
3c5cabbbec
commit
02d4ea06b9
|
@ -429,10 +429,10 @@ fn arrayLength<T, A: access>(ptr<storage, array<T>, A>) -> u32
|
||||||
@const fn ceil<N: num, T: fa_f32_f16>(@test_value(1.5) vec<N, T>) -> vec<N, T>
|
@const fn ceil<N: num, T: fa_f32_f16>(@test_value(1.5) vec<N, T>) -> vec<N, T>
|
||||||
@const fn clamp<T: fia_fiu32_f16>(T, T, T) -> T
|
@const fn clamp<T: fia_fiu32_f16>(T, T, T) -> T
|
||||||
@const fn clamp<T: fia_fiu32_f16, N: num>(vec<N, T>, vec<N, T>, vec<N, T>) -> vec<N, T>
|
@const fn clamp<T: fia_fiu32_f16, N: num>(vec<N, T>, vec<N, T>, vec<N, T>) -> vec<N, T>
|
||||||
fn cos<T: f32_f16>(T) -> T
|
@const fn cos<T: fa_f32_f16>(@test_value(0) T) -> T
|
||||||
fn cos<N: num, T: f32_f16>(vec<N, T>) -> vec<N, T>
|
@const fn cos<N: num, T: fa_f32_f16>(@test_value(0) vec<N, T>) -> vec<N, T>
|
||||||
fn cosh<T: f32_f16>(T) -> T
|
@const fn cosh<T: fa_f32_f16>(@test_value(0) T) -> T
|
||||||
fn cosh<N: num, T: f32_f16>(vec<N, T>) -> vec<N, T>
|
@const fn cosh<N: num, T: fa_f32_f16>(@test_value(0) vec<N, T>) -> vec<N, T>
|
||||||
@const fn countLeadingZeros<T: iu32>(T) -> T
|
@const fn countLeadingZeros<T: iu32>(T) -> T
|
||||||
@const fn countLeadingZeros<N: num, T: iu32>(vec<N, T>) -> vec<N, T>
|
@const fn countLeadingZeros<N: num, T: iu32>(vec<N, T>) -> vec<N, T>
|
||||||
@const fn countOneBits<T: iu32>(T) -> T
|
@const fn countOneBits<T: iu32>(T) -> T
|
||||||
|
|
|
@ -1804,6 +1804,32 @@ ConstEval::Result ConstEval::clamp(const sem::Type* ty,
|
||||||
return TransformElements(builder, ty, transform, args[0], args[1], args[2]);
|
return TransformElements(builder, ty, transform, args[0], args[1], args[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ConstEval::Result ConstEval::cos(const sem::Type* ty,
|
||||||
|
utils::VectorRef<const sem::Constant*> args,
|
||||||
|
const Source&) {
|
||||||
|
auto transform = [&](const sem::Constant* c0) {
|
||||||
|
auto create = [&](auto i) -> ImplResult {
|
||||||
|
using NumberT = decltype(i);
|
||||||
|
return CreateElement(builder, c0->Type(), NumberT(std::cos(i.value)));
|
||||||
|
};
|
||||||
|
return Dispatch_fa_f32_f16(create, c0);
|
||||||
|
};
|
||||||
|
return TransformElements(builder, ty, transform, args[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
ConstEval::Result ConstEval::cosh(const sem::Type* ty,
|
||||||
|
utils::VectorRef<const sem::Constant*> args,
|
||||||
|
const Source&) {
|
||||||
|
auto transform = [&](const sem::Constant* c0) {
|
||||||
|
auto create = [&](auto i) -> ImplResult {
|
||||||
|
using NumberT = decltype(i);
|
||||||
|
return CreateElement(builder, c0->Type(), NumberT(std::cosh(i.value)));
|
||||||
|
};
|
||||||
|
return Dispatch_fa_f32_f16(create, c0);
|
||||||
|
};
|
||||||
|
return TransformElements(builder, ty, transform, args[0]);
|
||||||
|
}
|
||||||
|
|
||||||
ConstEval::Result ConstEval::countLeadingZeros(const sem::Type* ty,
|
ConstEval::Result ConstEval::countLeadingZeros(const sem::Type* ty,
|
||||||
utils::VectorRef<const sem::Constant*> args,
|
utils::VectorRef<const sem::Constant*> args,
|
||||||
const Source&) {
|
const Source&) {
|
||||||
|
|
|
@ -485,6 +485,24 @@ class ConstEval {
|
||||||
utils::VectorRef<const sem::Constant*> args,
|
utils::VectorRef<const sem::Constant*> args,
|
||||||
const Source& source);
|
const Source& source);
|
||||||
|
|
||||||
|
/// cos builtin
|
||||||
|
/// @param ty the expression type
|
||||||
|
/// @param args the input arguments
|
||||||
|
/// @param source the source location of the conversion
|
||||||
|
/// @return the result value, or null if the value cannot be calculated
|
||||||
|
Result cos(const sem::Type* ty,
|
||||||
|
utils::VectorRef<const sem::Constant*> args,
|
||||||
|
const Source& source);
|
||||||
|
|
||||||
|
/// cosh builtin
|
||||||
|
/// @param ty the expression type
|
||||||
|
/// @param args the input arguments
|
||||||
|
/// @param source the source location of the conversion
|
||||||
|
/// @return the result value, or null if the value cannot be calculated
|
||||||
|
Result cosh(const sem::Type* ty,
|
||||||
|
utils::VectorRef<const sem::Constant*> args,
|
||||||
|
const Source& source);
|
||||||
|
|
||||||
/// countLeadingZeros builtin
|
/// countLeadingZeros builtin
|
||||||
/// @param ty the expression type
|
/// @param ty the expression type
|
||||||
/// @param args the input arguments
|
/// @param args the input arguments
|
||||||
|
|
|
@ -685,6 +685,51 @@ INSTANTIATE_TEST_SUITE_P( //
|
||||||
ClampCases<f32>(),
|
ClampCases<f32>(),
|
||||||
ClampCases<f16>()))));
|
ClampCases<f16>()))));
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
std::vector<Case> CosCases() {
|
||||||
|
std::vector<Case> cases = {
|
||||||
|
C({-T(0)}, T(1)),
|
||||||
|
C({T(0)}, T(1)),
|
||||||
|
|
||||||
|
C({T(0.75)}, T(0.7316888689)).FloatComp(),
|
||||||
|
|
||||||
|
// Vector test
|
||||||
|
C({Vec(T(0), -T(0), T(0.75))}, Vec(T(1), T(1), T(0.7316888689))).FloatComp(),
|
||||||
|
};
|
||||||
|
|
||||||
|
return cases;
|
||||||
|
}
|
||||||
|
INSTANTIATE_TEST_SUITE_P( //
|
||||||
|
Cos,
|
||||||
|
ResolverConstEvalBuiltinTest,
|
||||||
|
testing::Combine(testing::Values(sem::BuiltinType::kCos),
|
||||||
|
testing::ValuesIn(Concat(CosCases<AFloat>(), //
|
||||||
|
CosCases<f32>(),
|
||||||
|
CosCases<f16>()))));
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
std::vector<Case> CoshCases() {
|
||||||
|
std::vector<Case> cases = {
|
||||||
|
C({T(0)}, T(1)),
|
||||||
|
C({-T(0)}, T(1)),
|
||||||
|
C({T(1)}, T(1.5430806348)).FloatComp(),
|
||||||
|
|
||||||
|
C({T(.75)}, T(1.2946832847)).FloatComp(),
|
||||||
|
|
||||||
|
// Vector tests
|
||||||
|
C({Vec(T(0), -T(0), T(1))}, Vec(T(1), T(1), T(1.5430806348))).FloatComp(),
|
||||||
|
};
|
||||||
|
|
||||||
|
return cases;
|
||||||
|
}
|
||||||
|
INSTANTIATE_TEST_SUITE_P( //
|
||||||
|
Cosh,
|
||||||
|
ResolverConstEvalBuiltinTest,
|
||||||
|
testing::Combine(testing::Values(sem::BuiltinType::kCosh),
|
||||||
|
testing::ValuesIn(Concat(CoshCases<AFloat>(), //
|
||||||
|
CoshCases<f32>(),
|
||||||
|
CoshCases<f16>()))));
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
std::vector<Case> CountLeadingZerosCases() {
|
std::vector<Case> CountLeadingZerosCases() {
|
||||||
using B = BitValues<T>;
|
using B = BitValues<T>;
|
||||||
|
|
|
@ -12777,48 +12777,48 @@ constexpr OverloadInfo kOverloads[] = {
|
||||||
/* num parameters */ 1,
|
/* num parameters */ 1,
|
||||||
/* num template types */ 1,
|
/* num template types */ 1,
|
||||||
/* num template numbers */ 0,
|
/* num template numbers */ 0,
|
||||||
/* template types */ &kTemplateTypes[25],
|
/* template types */ &kTemplateTypes[24],
|
||||||
/* template numbers */ &kTemplateNumbers[10],
|
/* template numbers */ &kTemplateNumbers[10],
|
||||||
/* parameters */ &kParameters[856],
|
/* parameters */ &kParameters[856],
|
||||||
/* return matcher indices */ &kMatcherIndices[1],
|
/* return matcher indices */ &kMatcherIndices[1],
|
||||||
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
||||||
/* const eval */ nullptr,
|
/* const eval */ &ConstEval::cos,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* [371] */
|
/* [371] */
|
||||||
/* num parameters */ 1,
|
/* num parameters */ 1,
|
||||||
/* num template types */ 1,
|
/* num template types */ 1,
|
||||||
/* num template numbers */ 1,
|
/* num template numbers */ 1,
|
||||||
/* template types */ &kTemplateTypes[25],
|
/* template types */ &kTemplateTypes[24],
|
||||||
/* template numbers */ &kTemplateNumbers[5],
|
/* template numbers */ &kTemplateNumbers[5],
|
||||||
/* parameters */ &kParameters[855],
|
/* parameters */ &kParameters[855],
|
||||||
/* return matcher indices */ &kMatcherIndices[30],
|
/* return matcher indices */ &kMatcherIndices[30],
|
||||||
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
||||||
/* const eval */ nullptr,
|
/* const eval */ &ConstEval::cos,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* [372] */
|
/* [372] */
|
||||||
/* num parameters */ 1,
|
/* num parameters */ 1,
|
||||||
/* num template types */ 1,
|
/* num template types */ 1,
|
||||||
/* num template numbers */ 0,
|
/* num template numbers */ 0,
|
||||||
/* template types */ &kTemplateTypes[25],
|
/* template types */ &kTemplateTypes[24],
|
||||||
/* template numbers */ &kTemplateNumbers[10],
|
/* template numbers */ &kTemplateNumbers[10],
|
||||||
/* parameters */ &kParameters[854],
|
/* parameters */ &kParameters[854],
|
||||||
/* return matcher indices */ &kMatcherIndices[1],
|
/* return matcher indices */ &kMatcherIndices[1],
|
||||||
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
||||||
/* const eval */ nullptr,
|
/* const eval */ &ConstEval::cosh,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* [373] */
|
/* [373] */
|
||||||
/* num parameters */ 1,
|
/* num parameters */ 1,
|
||||||
/* num template types */ 1,
|
/* num template types */ 1,
|
||||||
/* num template numbers */ 1,
|
/* num template numbers */ 1,
|
||||||
/* template types */ &kTemplateTypes[25],
|
/* template types */ &kTemplateTypes[24],
|
||||||
/* template numbers */ &kTemplateNumbers[5],
|
/* template numbers */ &kTemplateNumbers[5],
|
||||||
/* parameters */ &kParameters[853],
|
/* parameters */ &kParameters[853],
|
||||||
/* return matcher indices */ &kMatcherIndices[30],
|
/* return matcher indices */ &kMatcherIndices[30],
|
||||||
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
/* flags */ OverloadFlags(OverloadFlag::kIsBuiltin, OverloadFlag::kSupportsVertexPipeline, OverloadFlag::kSupportsFragmentPipeline, OverloadFlag::kSupportsComputePipeline),
|
||||||
/* const eval */ nullptr,
|
/* const eval */ &ConstEval::cosh,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* [374] */
|
/* [374] */
|
||||||
|
@ -14103,15 +14103,15 @@ constexpr IntrinsicInfo kBuiltins[] = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* [13] */
|
/* [13] */
|
||||||
/* fn cos<T : f32_f16>(T) -> T */
|
/* fn cos<T : fa_f32_f16>(@test_value(0) T) -> T */
|
||||||
/* fn cos<N : num, T : f32_f16>(vec<N, T>) -> vec<N, T> */
|
/* fn cos<N : num, T : fa_f32_f16>(@test_value(0) vec<N, T>) -> vec<N, T> */
|
||||||
/* num overloads */ 2,
|
/* num overloads */ 2,
|
||||||
/* overloads */ &kOverloads[370],
|
/* overloads */ &kOverloads[370],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
/* [14] */
|
/* [14] */
|
||||||
/* fn cosh<T : f32_f16>(T) -> T */
|
/* fn cosh<T : fa_f32_f16>(@test_value(0) T) -> T */
|
||||||
/* fn cosh<N : num, T : f32_f16>(vec<N, T>) -> vec<N, T> */
|
/* fn cosh<N : num, T : fa_f32_f16>(@test_value(0) vec<N, T>) -> vec<N, T> */
|
||||||
/* num overloads */ 2,
|
/* num overloads */ 2,
|
||||||
/* overloads */ &kOverloads[372],
|
/* overloads */ &kOverloads[372],
|
||||||
},
|
},
|
||||||
|
|
|
@ -25,7 +25,7 @@ enable f16;
|
||||||
|
|
||||||
// fn cos(vec<3, f16>) -> vec<3, f16>
|
// fn cos(vec<3, f16>) -> vec<3, f16>
|
||||||
fn cos_0835a8() {
|
fn cos_0835a8() {
|
||||||
var res: vec3<f16> = cos(vec3<f16>(1.h));
|
var res: vec3<f16> = cos(vec3<f16>(0.h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_0835a8() {
|
void cos_0835a8() {
|
||||||
vector<float16_t, 3> res = cos((float16_t(1.0h)).xxx);
|
vector<float16_t, 3> res = (float16_t(1.0h)).xxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_0835a8() {
|
void cos_0835a8() {
|
||||||
f16vec3 res = cos(f16vec3(1.0hf));
|
f16vec3 res = f16vec3(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -23,7 +23,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_0835a8() {
|
void cos_0835a8() {
|
||||||
f16vec3 res = cos(f16vec3(1.0hf));
|
f16vec3 res = f16vec3(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -38,7 +38,7 @@ void main() {
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_0835a8() {
|
void cos_0835a8() {
|
||||||
f16vec3 res = cos(f16vec3(1.0hf));
|
f16vec3 res = f16vec3(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_0835a8() {
|
void cos_0835a8() {
|
||||||
half3 res = cos(half3(1.0h));
|
half3 res = half3(1.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 36
|
; Bound: 34
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Float16
|
OpCapability Float16
|
||||||
OpCapability UniformAndStorageBuffer16BitAccess
|
OpCapability UniformAndStorageBuffer16BitAccess
|
||||||
OpCapability StorageBuffer16BitAccess
|
OpCapability StorageBuffer16BitAccess
|
||||||
OpCapability StorageInputOutput16
|
OpCapability StorageInputOutput16
|
||||||
%16 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -38,37 +37,36 @@
|
||||||
%half = OpTypeFloat 16
|
%half = OpTypeFloat 16
|
||||||
%v3half = OpTypeVector %half 3
|
%v3half = OpTypeVector %half 3
|
||||||
%half_0x1p_0 = OpConstant %half 0x1p+0
|
%half_0x1p_0 = OpConstant %half 0x1p+0
|
||||||
%18 = OpConstantComposite %v3half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0
|
%16 = OpConstantComposite %v3half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0
|
||||||
%_ptr_Function_v3half = OpTypePointer Function %v3half
|
%_ptr_Function_v3half = OpTypePointer Function %v3half
|
||||||
%21 = OpConstantNull %v3half
|
%19 = OpConstantNull %v3half
|
||||||
%22 = OpTypeFunction %v4float
|
%20 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%cos_0835a8 = OpFunction %void None %9
|
%cos_0835a8 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v3half Function %21
|
%res = OpVariable %_ptr_Function_v3half Function %19
|
||||||
%13 = OpExtInst %v3half %16 Cos %18
|
OpStore %res %16
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %22
|
%vertex_main_inner = OpFunction %v4float None %20
|
||||||
%24 = OpLabel
|
%22 = OpLabel
|
||||||
%25 = OpFunctionCall %void %cos_0835a8
|
%23 = OpFunctionCall %void %cos_0835a8
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%27 = OpLabel
|
%25 = OpLabel
|
||||||
%28 = OpFunctionCall %v4float %vertex_main_inner
|
%26 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %28
|
OpStore %value %26
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%31 = OpLabel
|
%29 = OpLabel
|
||||||
%32 = OpFunctionCall %void %cos_0835a8
|
%30 = OpFunctionCall %void %cos_0835a8
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%34 = OpLabel
|
%32 = OpLabel
|
||||||
%35 = OpFunctionCall %void %cos_0835a8
|
%33 = OpFunctionCall %void %cos_0835a8
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
enable f16;
|
enable f16;
|
||||||
|
|
||||||
fn cos_0835a8() {
|
fn cos_0835a8() {
|
||||||
var res : vec3<f16> = cos(vec3<f16>(1.0h));
|
var res : vec3<f16> = cos(vec3<f16>(0.0h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -25,7 +25,7 @@ enable f16;
|
||||||
|
|
||||||
// fn cos(vec<4, f16>) -> vec<4, f16>
|
// fn cos(vec<4, f16>) -> vec<4, f16>
|
||||||
fn cos_0a89f7() {
|
fn cos_0a89f7() {
|
||||||
var res: vec4<f16> = cos(vec4<f16>(1.h));
|
var res: vec4<f16> = cos(vec4<f16>(0.h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_0a89f7() {
|
void cos_0a89f7() {
|
||||||
vector<float16_t, 4> res = cos((float16_t(1.0h)).xxxx);
|
vector<float16_t, 4> res = (float16_t(1.0h)).xxxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_0a89f7() {
|
void cos_0a89f7() {
|
||||||
f16vec4 res = cos(f16vec4(1.0hf));
|
f16vec4 res = f16vec4(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -23,7 +23,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_0a89f7() {
|
void cos_0a89f7() {
|
||||||
f16vec4 res = cos(f16vec4(1.0hf));
|
f16vec4 res = f16vec4(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -38,7 +38,7 @@ void main() {
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_0a89f7() {
|
void cos_0a89f7() {
|
||||||
f16vec4 res = cos(f16vec4(1.0hf));
|
f16vec4 res = f16vec4(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_0a89f7() {
|
void cos_0a89f7() {
|
||||||
half4 res = cos(half4(1.0h));
|
half4 res = half4(1.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 36
|
; Bound: 34
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Float16
|
OpCapability Float16
|
||||||
OpCapability UniformAndStorageBuffer16BitAccess
|
OpCapability UniformAndStorageBuffer16BitAccess
|
||||||
OpCapability StorageBuffer16BitAccess
|
OpCapability StorageBuffer16BitAccess
|
||||||
OpCapability StorageInputOutput16
|
OpCapability StorageInputOutput16
|
||||||
%16 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -38,37 +37,36 @@
|
||||||
%half = OpTypeFloat 16
|
%half = OpTypeFloat 16
|
||||||
%v4half = OpTypeVector %half 4
|
%v4half = OpTypeVector %half 4
|
||||||
%half_0x1p_0 = OpConstant %half 0x1p+0
|
%half_0x1p_0 = OpConstant %half 0x1p+0
|
||||||
%18 = OpConstantComposite %v4half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 %half_0x1p_0
|
%16 = OpConstantComposite %v4half %half_0x1p_0 %half_0x1p_0 %half_0x1p_0 %half_0x1p_0
|
||||||
%_ptr_Function_v4half = OpTypePointer Function %v4half
|
%_ptr_Function_v4half = OpTypePointer Function %v4half
|
||||||
%21 = OpConstantNull %v4half
|
%19 = OpConstantNull %v4half
|
||||||
%22 = OpTypeFunction %v4float
|
%20 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%cos_0a89f7 = OpFunction %void None %9
|
%cos_0a89f7 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v4half Function %21
|
%res = OpVariable %_ptr_Function_v4half Function %19
|
||||||
%13 = OpExtInst %v4half %16 Cos %18
|
OpStore %res %16
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %22
|
%vertex_main_inner = OpFunction %v4float None %20
|
||||||
%24 = OpLabel
|
%22 = OpLabel
|
||||||
%25 = OpFunctionCall %void %cos_0a89f7
|
%23 = OpFunctionCall %void %cos_0a89f7
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%27 = OpLabel
|
%25 = OpLabel
|
||||||
%28 = OpFunctionCall %v4float %vertex_main_inner
|
%26 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %28
|
OpStore %value %26
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%31 = OpLabel
|
%29 = OpLabel
|
||||||
%32 = OpFunctionCall %void %cos_0a89f7
|
%30 = OpFunctionCall %void %cos_0a89f7
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%34 = OpLabel
|
%32 = OpLabel
|
||||||
%35 = OpFunctionCall %void %cos_0a89f7
|
%33 = OpFunctionCall %void %cos_0a89f7
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
enable f16;
|
enable f16;
|
||||||
|
|
||||||
fn cos_0a89f7() {
|
fn cos_0a89f7() {
|
||||||
var res : vec4<f16> = cos(vec4<f16>(1.0h));
|
var res : vec4<f16> = cos(vec4<f16>(0.0h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
// fn cos(vec<3, f32>) -> vec<3, f32>
|
// fn cos(vec<3, f32>) -> vec<3, f32>
|
||||||
fn cos_16dc15() {
|
fn cos_16dc15() {
|
||||||
var res: vec3<f32> = cos(vec3<f32>(1.f));
|
var res: vec3<f32> = cos(vec3<f32>(0.f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_16dc15() {
|
void cos_16dc15() {
|
||||||
float3 res = cos((1.0f).xxx);
|
float3 res = (1.0f).xxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_16dc15() {
|
void cos_16dc15() {
|
||||||
float3 res = cos((1.0f).xxx);
|
float3 res = (1.0f).xxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_16dc15() {
|
void cos_16dc15() {
|
||||||
vec3 res = cos(vec3(1.0f));
|
vec3 res = vec3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -21,7 +21,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_16dc15() {
|
void cos_16dc15() {
|
||||||
vec3 res = cos(vec3(1.0f));
|
vec3 res = vec3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -35,7 +35,7 @@ void main() {
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_16dc15() {
|
void cos_16dc15() {
|
||||||
vec3 res = cos(vec3(1.0f));
|
vec3 res = vec3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_16dc15() {
|
void cos_16dc15() {
|
||||||
float3 res = cos(float3(1.0f));
|
float3 res = float3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 34
|
; Bound: 32
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
%15 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -33,36 +32,35 @@
|
||||||
%9 = OpTypeFunction %void
|
%9 = OpTypeFunction %void
|
||||||
%v3float = OpTypeVector %float 3
|
%v3float = OpTypeVector %float 3
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%17 = OpConstantComposite %v3float %float_1 %float_1 %float_1
|
%15 = OpConstantComposite %v3float %float_1 %float_1 %float_1
|
||||||
%_ptr_Function_v3float = OpTypePointer Function %v3float
|
%_ptr_Function_v3float = OpTypePointer Function %v3float
|
||||||
%20 = OpConstantNull %v3float
|
%18 = OpConstantNull %v3float
|
||||||
%21 = OpTypeFunction %v4float
|
%19 = OpTypeFunction %v4float
|
||||||
%cos_16dc15 = OpFunction %void None %9
|
%cos_16dc15 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v3float Function %20
|
%res = OpVariable %_ptr_Function_v3float Function %18
|
||||||
%13 = OpExtInst %v3float %15 Cos %17
|
OpStore %res %15
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %21
|
%vertex_main_inner = OpFunction %v4float None %19
|
||||||
%23 = OpLabel
|
%21 = OpLabel
|
||||||
%24 = OpFunctionCall %void %cos_16dc15
|
%22 = OpFunctionCall %void %cos_16dc15
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%26 = OpLabel
|
%24 = OpLabel
|
||||||
%27 = OpFunctionCall %v4float %vertex_main_inner
|
%25 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %27
|
OpStore %value %25
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%29 = OpLabel
|
%27 = OpLabel
|
||||||
%30 = OpFunctionCall %void %cos_16dc15
|
%28 = OpFunctionCall %void %cos_16dc15
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%32 = OpLabel
|
%30 = OpLabel
|
||||||
%33 = OpFunctionCall %void %cos_16dc15
|
%31 = OpFunctionCall %void %cos_16dc15
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fn cos_16dc15() {
|
fn cos_16dc15() {
|
||||||
var res : vec3<f32> = cos(vec3<f32>(1.0f));
|
var res : vec3<f32> = cos(vec3<f32>(0.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
// fn cos(vec<4, f32>) -> vec<4, f32>
|
// fn cos(vec<4, f32>) -> vec<4, f32>
|
||||||
fn cos_29d66d() {
|
fn cos_29d66d() {
|
||||||
var res: vec4<f32> = cos(vec4<f32>(1.f));
|
var res: vec4<f32> = cos(vec4<f32>(0.f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_29d66d() {
|
void cos_29d66d() {
|
||||||
float4 res = cos((1.0f).xxxx);
|
float4 res = (1.0f).xxxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_29d66d() {
|
void cos_29d66d() {
|
||||||
float4 res = cos((1.0f).xxxx);
|
float4 res = (1.0f).xxxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_29d66d() {
|
void cos_29d66d() {
|
||||||
vec4 res = cos(vec4(1.0f));
|
vec4 res = vec4(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -21,7 +21,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_29d66d() {
|
void cos_29d66d() {
|
||||||
vec4 res = cos(vec4(1.0f));
|
vec4 res = vec4(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -35,7 +35,7 @@ void main() {
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_29d66d() {
|
void cos_29d66d() {
|
||||||
vec4 res = cos(vec4(1.0f));
|
vec4 res = vec4(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_29d66d() {
|
void cos_29d66d() {
|
||||||
float4 res = cos(float4(1.0f));
|
float4 res = float4(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 30
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
%14 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -32,35 +31,34 @@
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%9 = OpTypeFunction %void
|
%9 = OpTypeFunction %void
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%16 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1
|
%14 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1
|
||||||
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||||
%19 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%cos_29d66d = OpFunction %void None %9
|
%cos_29d66d = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v4float Function %5
|
%res = OpVariable %_ptr_Function_v4float Function %5
|
||||||
%13 = OpExtInst %v4float %14 Cos %16
|
OpStore %res %14
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %19
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%21 = OpLabel
|
%19 = OpLabel
|
||||||
%22 = OpFunctionCall %void %cos_29d66d
|
%20 = OpFunctionCall %void %cos_29d66d
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%24 = OpLabel
|
%22 = OpLabel
|
||||||
%25 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %25
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%27 = OpLabel
|
%25 = OpLabel
|
||||||
%28 = OpFunctionCall %void %cos_29d66d
|
%26 = OpFunctionCall %void %cos_29d66d
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%30 = OpLabel
|
%28 = OpLabel
|
||||||
%31 = OpFunctionCall %void %cos_29d66d
|
%29 = OpFunctionCall %void %cos_29d66d
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fn cos_29d66d() {
|
fn cos_29d66d() {
|
||||||
var res : vec4<f32> = cos(vec4<f32>(1.0f));
|
var res : vec4<f32> = cos(vec4<f32>(0.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
// Copyright 2022 The Tint Authors.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// File generated by tools/src/cmd/gen
|
||||||
|
// using the template:
|
||||||
|
// test/tint/builtins/gen/gen.wgsl.tmpl
|
||||||
|
//
|
||||||
|
// Do not modify this file directly
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
// fn cos(vec<4, fa>) -> vec<4, fa>
|
||||||
|
fn cos_47d768() {
|
||||||
|
var res = cos(vec4(0.));
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_47d768();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_47d768();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_47d768();
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_47d768() {
|
||||||
|
float4 res = (1.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_47d768();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_47d768() {
|
||||||
|
float4 res = (1.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_47d768();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_47d768() {
|
||||||
|
vec4 res = vec4(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vec4 vertex_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return vec4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
gl_PointSize = 1.0;
|
||||||
|
vec4 inner_result = vertex_main();
|
||||||
|
gl_Position = inner_result;
|
||||||
|
gl_Position.y = -(gl_Position.y);
|
||||||
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
precision mediump float;
|
||||||
|
|
||||||
|
void cos_47d768() {
|
||||||
|
vec4 res = vec4(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_47d768();
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
fragment_main();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_47d768() {
|
||||||
|
vec4 res = vec4(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void compute_main() {
|
||||||
|
cos_47d768();
|
||||||
|
}
|
||||||
|
|
||||||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||||||
|
void main() {
|
||||||
|
compute_main();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
#include <metal_stdlib>
|
||||||
|
|
||||||
|
using namespace metal;
|
||||||
|
void cos_47d768() {
|
||||||
|
float4 res = float4(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value [[position]];
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_47d768();
|
||||||
|
return float4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vertex tint_symbol vertex_main() {
|
||||||
|
float4 const inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = {};
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment void fragment_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
kernel void compute_main() {
|
||||||
|
cos_47d768();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,64 @@
|
||||||
|
; SPIR-V
|
||||||
|
; Version: 1.3
|
||||||
|
; Generator: Google Tint Compiler; 0
|
||||||
|
; Bound: 30
|
||||||
|
; Schema: 0
|
||||||
|
OpCapability Shader
|
||||||
|
OpMemoryModel Logical GLSL450
|
||||||
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
OpEntryPoint GLCompute %compute_main "compute_main"
|
||||||
|
OpExecutionMode %fragment_main OriginUpperLeft
|
||||||
|
OpExecutionMode %compute_main LocalSize 1 1 1
|
||||||
|
OpName %value "value"
|
||||||
|
OpName %vertex_point_size "vertex_point_size"
|
||||||
|
OpName %cos_47d768 "cos_47d768"
|
||||||
|
OpName %res "res"
|
||||||
|
OpName %vertex_main_inner "vertex_main_inner"
|
||||||
|
OpName %vertex_main "vertex_main"
|
||||||
|
OpName %fragment_main "fragment_main"
|
||||||
|
OpName %compute_main "compute_main"
|
||||||
|
OpDecorate %value BuiltIn Position
|
||||||
|
OpDecorate %vertex_point_size BuiltIn PointSize
|
||||||
|
%float = OpTypeFloat 32
|
||||||
|
%v4float = OpTypeVector %float 4
|
||||||
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||||
|
%5 = OpConstantNull %v4float
|
||||||
|
%value = OpVariable %_ptr_Output_v4float Output %5
|
||||||
|
%_ptr_Output_float = OpTypePointer Output %float
|
||||||
|
%8 = OpConstantNull %float
|
||||||
|
%vertex_point_size = OpVariable %_ptr_Output_float Output %8
|
||||||
|
%void = OpTypeVoid
|
||||||
|
%9 = OpTypeFunction %void
|
||||||
|
%float_1 = OpConstant %float 1
|
||||||
|
%14 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1
|
||||||
|
%_ptr_Function_v4float = OpTypePointer Function %v4float
|
||||||
|
%17 = OpTypeFunction %v4float
|
||||||
|
%cos_47d768 = OpFunction %void None %9
|
||||||
|
%12 = OpLabel
|
||||||
|
%res = OpVariable %_ptr_Function_v4float Function %5
|
||||||
|
OpStore %res %14
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
|
%19 = OpLabel
|
||||||
|
%20 = OpFunctionCall %void %cos_47d768
|
||||||
|
OpReturnValue %5
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main = OpFunction %void None %9
|
||||||
|
%22 = OpLabel
|
||||||
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
|
OpStore %value %23
|
||||||
|
OpStore %vertex_point_size %float_1
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%fragment_main = OpFunction %void None %9
|
||||||
|
%25 = OpLabel
|
||||||
|
%26 = OpFunctionCall %void %cos_47d768
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%compute_main = OpFunction %void None %9
|
||||||
|
%28 = OpLabel
|
||||||
|
%29 = OpFunctionCall %void %cos_47d768
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
|
@ -0,0 +1,19 @@
|
||||||
|
fn cos_47d768() {
|
||||||
|
var res = cos(vec4(0.0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_47d768();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_47d768();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_47d768();
|
||||||
|
}
|
|
@ -25,7 +25,7 @@ enable f16;
|
||||||
|
|
||||||
// fn cos(vec<2, f16>) -> vec<2, f16>
|
// fn cos(vec<2, f16>) -> vec<2, f16>
|
||||||
fn cos_5bc2c6() {
|
fn cos_5bc2c6() {
|
||||||
var res: vec2<f16> = cos(vec2<f16>(1.h));
|
var res: vec2<f16> = cos(vec2<f16>(0.h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_5bc2c6() {
|
void cos_5bc2c6() {
|
||||||
vector<float16_t, 2> res = cos((float16_t(1.0h)).xx);
|
vector<float16_t, 2> res = (float16_t(1.0h)).xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_5bc2c6() {
|
void cos_5bc2c6() {
|
||||||
f16vec2 res = cos(f16vec2(1.0hf));
|
f16vec2 res = f16vec2(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -23,7 +23,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_5bc2c6() {
|
void cos_5bc2c6() {
|
||||||
f16vec2 res = cos(f16vec2(1.0hf));
|
f16vec2 res = f16vec2(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -38,7 +38,7 @@ void main() {
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_5bc2c6() {
|
void cos_5bc2c6() {
|
||||||
f16vec2 res = cos(f16vec2(1.0hf));
|
f16vec2 res = f16vec2(1.0hf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_5bc2c6() {
|
void cos_5bc2c6() {
|
||||||
half2 res = cos(half2(1.0h));
|
half2 res = half2(1.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 36
|
; Bound: 34
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Float16
|
OpCapability Float16
|
||||||
OpCapability UniformAndStorageBuffer16BitAccess
|
OpCapability UniformAndStorageBuffer16BitAccess
|
||||||
OpCapability StorageBuffer16BitAccess
|
OpCapability StorageBuffer16BitAccess
|
||||||
OpCapability StorageInputOutput16
|
OpCapability StorageInputOutput16
|
||||||
%16 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -38,37 +37,36 @@
|
||||||
%half = OpTypeFloat 16
|
%half = OpTypeFloat 16
|
||||||
%v2half = OpTypeVector %half 2
|
%v2half = OpTypeVector %half 2
|
||||||
%half_0x1p_0 = OpConstant %half 0x1p+0
|
%half_0x1p_0 = OpConstant %half 0x1p+0
|
||||||
%18 = OpConstantComposite %v2half %half_0x1p_0 %half_0x1p_0
|
%16 = OpConstantComposite %v2half %half_0x1p_0 %half_0x1p_0
|
||||||
%_ptr_Function_v2half = OpTypePointer Function %v2half
|
%_ptr_Function_v2half = OpTypePointer Function %v2half
|
||||||
%21 = OpConstantNull %v2half
|
%19 = OpConstantNull %v2half
|
||||||
%22 = OpTypeFunction %v4float
|
%20 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%cos_5bc2c6 = OpFunction %void None %9
|
%cos_5bc2c6 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v2half Function %21
|
%res = OpVariable %_ptr_Function_v2half Function %19
|
||||||
%13 = OpExtInst %v2half %16 Cos %18
|
OpStore %res %16
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %22
|
%vertex_main_inner = OpFunction %v4float None %20
|
||||||
%24 = OpLabel
|
%22 = OpLabel
|
||||||
%25 = OpFunctionCall %void %cos_5bc2c6
|
%23 = OpFunctionCall %void %cos_5bc2c6
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%27 = OpLabel
|
%25 = OpLabel
|
||||||
%28 = OpFunctionCall %v4float %vertex_main_inner
|
%26 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %28
|
OpStore %value %26
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%31 = OpLabel
|
%29 = OpLabel
|
||||||
%32 = OpFunctionCall %void %cos_5bc2c6
|
%30 = OpFunctionCall %void %cos_5bc2c6
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%34 = OpLabel
|
%32 = OpLabel
|
||||||
%35 = OpFunctionCall %void %cos_5bc2c6
|
%33 = OpFunctionCall %void %cos_5bc2c6
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
enable f16;
|
enable f16;
|
||||||
|
|
||||||
fn cos_5bc2c6() {
|
fn cos_5bc2c6() {
|
||||||
var res : vec2<f16> = cos(vec2<f16>(1.0h));
|
var res : vec2<f16> = cos(vec2<f16>(0.0h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
// Copyright 2022 The Tint Authors.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// File generated by tools/src/cmd/gen
|
||||||
|
// using the template:
|
||||||
|
// test/tint/builtins/gen/gen.wgsl.tmpl
|
||||||
|
//
|
||||||
|
// Do not modify this file directly
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
// fn cos(vec<3, fa>) -> vec<3, fa>
|
||||||
|
fn cos_6b1fdf() {
|
||||||
|
var res = cos(vec3(0.));
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_6b1fdf() {
|
||||||
|
float3 res = (1.0f).xxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_6b1fdf() {
|
||||||
|
float3 res = (1.0f).xxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_6b1fdf() {
|
||||||
|
vec3 res = vec3(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vec4 vertex_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return vec4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
gl_PointSize = 1.0;
|
||||||
|
vec4 inner_result = vertex_main();
|
||||||
|
gl_Position = inner_result;
|
||||||
|
gl_Position.y = -(gl_Position.y);
|
||||||
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
precision mediump float;
|
||||||
|
|
||||||
|
void cos_6b1fdf() {
|
||||||
|
vec3 res = vec3(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
fragment_main();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_6b1fdf() {
|
||||||
|
vec3 res = vec3(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void compute_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
}
|
||||||
|
|
||||||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||||||
|
void main() {
|
||||||
|
compute_main();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
#include <metal_stdlib>
|
||||||
|
|
||||||
|
using namespace metal;
|
||||||
|
void cos_6b1fdf() {
|
||||||
|
float3 res = float3(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value [[position]];
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return float4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vertex tint_symbol vertex_main() {
|
||||||
|
float4 const inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = {};
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment void fragment_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
kernel void compute_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
; SPIR-V
|
||||||
|
; Version: 1.3
|
||||||
|
; Generator: Google Tint Compiler; 0
|
||||||
|
; Bound: 32
|
||||||
|
; Schema: 0
|
||||||
|
OpCapability Shader
|
||||||
|
OpMemoryModel Logical GLSL450
|
||||||
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
OpEntryPoint GLCompute %compute_main "compute_main"
|
||||||
|
OpExecutionMode %fragment_main OriginUpperLeft
|
||||||
|
OpExecutionMode %compute_main LocalSize 1 1 1
|
||||||
|
OpName %value "value"
|
||||||
|
OpName %vertex_point_size "vertex_point_size"
|
||||||
|
OpName %cos_6b1fdf "cos_6b1fdf"
|
||||||
|
OpName %res "res"
|
||||||
|
OpName %vertex_main_inner "vertex_main_inner"
|
||||||
|
OpName %vertex_main "vertex_main"
|
||||||
|
OpName %fragment_main "fragment_main"
|
||||||
|
OpName %compute_main "compute_main"
|
||||||
|
OpDecorate %value BuiltIn Position
|
||||||
|
OpDecorate %vertex_point_size BuiltIn PointSize
|
||||||
|
%float = OpTypeFloat 32
|
||||||
|
%v4float = OpTypeVector %float 4
|
||||||
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||||
|
%5 = OpConstantNull %v4float
|
||||||
|
%value = OpVariable %_ptr_Output_v4float Output %5
|
||||||
|
%_ptr_Output_float = OpTypePointer Output %float
|
||||||
|
%8 = OpConstantNull %float
|
||||||
|
%vertex_point_size = OpVariable %_ptr_Output_float Output %8
|
||||||
|
%void = OpTypeVoid
|
||||||
|
%9 = OpTypeFunction %void
|
||||||
|
%v3float = OpTypeVector %float 3
|
||||||
|
%float_1 = OpConstant %float 1
|
||||||
|
%15 = OpConstantComposite %v3float %float_1 %float_1 %float_1
|
||||||
|
%_ptr_Function_v3float = OpTypePointer Function %v3float
|
||||||
|
%18 = OpConstantNull %v3float
|
||||||
|
%19 = OpTypeFunction %v4float
|
||||||
|
%cos_6b1fdf = OpFunction %void None %9
|
||||||
|
%12 = OpLabel
|
||||||
|
%res = OpVariable %_ptr_Function_v3float Function %18
|
||||||
|
OpStore %res %15
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main_inner = OpFunction %v4float None %19
|
||||||
|
%21 = OpLabel
|
||||||
|
%22 = OpFunctionCall %void %cos_6b1fdf
|
||||||
|
OpReturnValue %5
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main = OpFunction %void None %9
|
||||||
|
%24 = OpLabel
|
||||||
|
%25 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
|
OpStore %value %25
|
||||||
|
OpStore %vertex_point_size %float_1
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%fragment_main = OpFunction %void None %9
|
||||||
|
%27 = OpLabel
|
||||||
|
%28 = OpFunctionCall %void %cos_6b1fdf
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%compute_main = OpFunction %void None %9
|
||||||
|
%30 = OpLabel
|
||||||
|
%31 = OpFunctionCall %void %cos_6b1fdf
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
|
@ -0,0 +1,19 @@
|
||||||
|
fn cos_6b1fdf() {
|
||||||
|
var res = cos(vec3(0.0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_6b1fdf();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_6b1fdf();
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
// Copyright 2022 The Tint Authors.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// File generated by tools/src/cmd/gen
|
||||||
|
// using the template:
|
||||||
|
// test/tint/builtins/gen/gen.wgsl.tmpl
|
||||||
|
//
|
||||||
|
// Do not modify this file directly
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
// fn cos(fa) -> fa
|
||||||
|
fn cos_a297d4() {
|
||||||
|
var res = cos(0.);
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_a297d4();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_a297d4() {
|
||||||
|
float res = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_a297d4();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_a297d4() {
|
||||||
|
float res = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_a297d4();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_a297d4() {
|
||||||
|
float res = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
vec4 vertex_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return vec4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
gl_PointSize = 1.0;
|
||||||
|
vec4 inner_result = vertex_main();
|
||||||
|
gl_Position = inner_result;
|
||||||
|
gl_Position.y = -(gl_Position.y);
|
||||||
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
precision mediump float;
|
||||||
|
|
||||||
|
void cos_a297d4() {
|
||||||
|
float res = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
fragment_main();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_a297d4() {
|
||||||
|
float res = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
void compute_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
}
|
||||||
|
|
||||||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||||||
|
void main() {
|
||||||
|
compute_main();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
#include <metal_stdlib>
|
||||||
|
|
||||||
|
using namespace metal;
|
||||||
|
void cos_a297d4() {
|
||||||
|
float res = 1.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value [[position]];
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_a297d4();
|
||||||
|
return float4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vertex tint_symbol vertex_main() {
|
||||||
|
float4 const inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = {};
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment void fragment_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
kernel void compute_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,63 @@
|
||||||
|
; SPIR-V
|
||||||
|
; Version: 1.3
|
||||||
|
; Generator: Google Tint Compiler; 0
|
||||||
|
; Bound: 29
|
||||||
|
; Schema: 0
|
||||||
|
OpCapability Shader
|
||||||
|
OpMemoryModel Logical GLSL450
|
||||||
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
OpEntryPoint GLCompute %compute_main "compute_main"
|
||||||
|
OpExecutionMode %fragment_main OriginUpperLeft
|
||||||
|
OpExecutionMode %compute_main LocalSize 1 1 1
|
||||||
|
OpName %value "value"
|
||||||
|
OpName %vertex_point_size "vertex_point_size"
|
||||||
|
OpName %cos_a297d4 "cos_a297d4"
|
||||||
|
OpName %res "res"
|
||||||
|
OpName %vertex_main_inner "vertex_main_inner"
|
||||||
|
OpName %vertex_main "vertex_main"
|
||||||
|
OpName %fragment_main "fragment_main"
|
||||||
|
OpName %compute_main "compute_main"
|
||||||
|
OpDecorate %value BuiltIn Position
|
||||||
|
OpDecorate %vertex_point_size BuiltIn PointSize
|
||||||
|
%float = OpTypeFloat 32
|
||||||
|
%v4float = OpTypeVector %float 4
|
||||||
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||||
|
%5 = OpConstantNull %v4float
|
||||||
|
%value = OpVariable %_ptr_Output_v4float Output %5
|
||||||
|
%_ptr_Output_float = OpTypePointer Output %float
|
||||||
|
%8 = OpConstantNull %float
|
||||||
|
%vertex_point_size = OpVariable %_ptr_Output_float Output %8
|
||||||
|
%void = OpTypeVoid
|
||||||
|
%9 = OpTypeFunction %void
|
||||||
|
%float_1 = OpConstant %float 1
|
||||||
|
%_ptr_Function_float = OpTypePointer Function %float
|
||||||
|
%16 = OpTypeFunction %v4float
|
||||||
|
%cos_a297d4 = OpFunction %void None %9
|
||||||
|
%12 = OpLabel
|
||||||
|
%res = OpVariable %_ptr_Function_float Function %8
|
||||||
|
OpStore %res %float_1
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main_inner = OpFunction %v4float None %16
|
||||||
|
%18 = OpLabel
|
||||||
|
%19 = OpFunctionCall %void %cos_a297d4
|
||||||
|
OpReturnValue %5
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main = OpFunction %void None %9
|
||||||
|
%21 = OpLabel
|
||||||
|
%22 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
|
OpStore %value %22
|
||||||
|
OpStore %vertex_point_size %float_1
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%fragment_main = OpFunction %void None %9
|
||||||
|
%24 = OpLabel
|
||||||
|
%25 = OpFunctionCall %void %cos_a297d4
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%compute_main = OpFunction %void None %9
|
||||||
|
%27 = OpLabel
|
||||||
|
%28 = OpFunctionCall %void %cos_a297d4
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
|
@ -0,0 +1,19 @@
|
||||||
|
fn cos_a297d4() {
|
||||||
|
var res = cos(0.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_a297d4();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_a297d4();
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
// Copyright 2022 The Tint Authors.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// File generated by tools/src/cmd/gen
|
||||||
|
// using the template:
|
||||||
|
// test/tint/builtins/gen/gen.wgsl.tmpl
|
||||||
|
//
|
||||||
|
// Do not modify this file directly
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|
||||||
|
// fn cos(vec<2, fa>) -> vec<2, fa>
|
||||||
|
fn cos_af7447() {
|
||||||
|
var res = cos(vec2(0.));
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_af7447();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_af7447();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_af7447();
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_af7447() {
|
||||||
|
float2 res = (1.0f).xx;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_af7447();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
void cos_af7447() {
|
||||||
|
float2 res = (1.0f).xx;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value : SV_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_af7447();
|
||||||
|
return (0.0f).xxxx;
|
||||||
|
}
|
||||||
|
|
||||||
|
tint_symbol vertex_main() {
|
||||||
|
const float4 inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = (tint_symbol)0;
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
[numthreads(1, 1, 1)]
|
||||||
|
void compute_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_af7447() {
|
||||||
|
vec2 res = vec2(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vec4 vertex_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return vec4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
gl_PointSize = 1.0;
|
||||||
|
vec4 inner_result = vertex_main();
|
||||||
|
gl_Position = inner_result;
|
||||||
|
gl_Position.y = -(gl_Position.y);
|
||||||
|
gl_Position.z = ((2.0f * gl_Position.z) - gl_Position.w);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
precision mediump float;
|
||||||
|
|
||||||
|
void cos_af7447() {
|
||||||
|
vec2 res = vec2(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void fragment_main() {
|
||||||
|
cos_af7447();
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
fragment_main();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#version 310 es
|
||||||
|
|
||||||
|
void cos_af7447() {
|
||||||
|
vec2 res = vec2(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
void compute_main() {
|
||||||
|
cos_af7447();
|
||||||
|
}
|
||||||
|
|
||||||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||||||
|
void main() {
|
||||||
|
compute_main();
|
||||||
|
return;
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
#include <metal_stdlib>
|
||||||
|
|
||||||
|
using namespace metal;
|
||||||
|
void cos_af7447() {
|
||||||
|
float2 res = float2(1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
struct tint_symbol {
|
||||||
|
float4 value [[position]];
|
||||||
|
};
|
||||||
|
|
||||||
|
float4 vertex_main_inner() {
|
||||||
|
cos_af7447();
|
||||||
|
return float4(0.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
vertex tint_symbol vertex_main() {
|
||||||
|
float4 const inner_result = vertex_main_inner();
|
||||||
|
tint_symbol wrapper_result = {};
|
||||||
|
wrapper_result.value = inner_result;
|
||||||
|
return wrapper_result;
|
||||||
|
}
|
||||||
|
|
||||||
|
fragment void fragment_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
kernel void compute_main() {
|
||||||
|
cos_af7447();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
; SPIR-V
|
||||||
|
; Version: 1.3
|
||||||
|
; Generator: Google Tint Compiler; 0
|
||||||
|
; Bound: 32
|
||||||
|
; Schema: 0
|
||||||
|
OpCapability Shader
|
||||||
|
OpMemoryModel Logical GLSL450
|
||||||
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
OpEntryPoint GLCompute %compute_main "compute_main"
|
||||||
|
OpExecutionMode %fragment_main OriginUpperLeft
|
||||||
|
OpExecutionMode %compute_main LocalSize 1 1 1
|
||||||
|
OpName %value "value"
|
||||||
|
OpName %vertex_point_size "vertex_point_size"
|
||||||
|
OpName %cos_af7447 "cos_af7447"
|
||||||
|
OpName %res "res"
|
||||||
|
OpName %vertex_main_inner "vertex_main_inner"
|
||||||
|
OpName %vertex_main "vertex_main"
|
||||||
|
OpName %fragment_main "fragment_main"
|
||||||
|
OpName %compute_main "compute_main"
|
||||||
|
OpDecorate %value BuiltIn Position
|
||||||
|
OpDecorate %vertex_point_size BuiltIn PointSize
|
||||||
|
%float = OpTypeFloat 32
|
||||||
|
%v4float = OpTypeVector %float 4
|
||||||
|
%_ptr_Output_v4float = OpTypePointer Output %v4float
|
||||||
|
%5 = OpConstantNull %v4float
|
||||||
|
%value = OpVariable %_ptr_Output_v4float Output %5
|
||||||
|
%_ptr_Output_float = OpTypePointer Output %float
|
||||||
|
%8 = OpConstantNull %float
|
||||||
|
%vertex_point_size = OpVariable %_ptr_Output_float Output %8
|
||||||
|
%void = OpTypeVoid
|
||||||
|
%9 = OpTypeFunction %void
|
||||||
|
%v2float = OpTypeVector %float 2
|
||||||
|
%float_1 = OpConstant %float 1
|
||||||
|
%15 = OpConstantComposite %v2float %float_1 %float_1
|
||||||
|
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
||||||
|
%18 = OpConstantNull %v2float
|
||||||
|
%19 = OpTypeFunction %v4float
|
||||||
|
%cos_af7447 = OpFunction %void None %9
|
||||||
|
%12 = OpLabel
|
||||||
|
%res = OpVariable %_ptr_Function_v2float Function %18
|
||||||
|
OpStore %res %15
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main_inner = OpFunction %v4float None %19
|
||||||
|
%21 = OpLabel
|
||||||
|
%22 = OpFunctionCall %void %cos_af7447
|
||||||
|
OpReturnValue %5
|
||||||
|
OpFunctionEnd
|
||||||
|
%vertex_main = OpFunction %void None %9
|
||||||
|
%24 = OpLabel
|
||||||
|
%25 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
|
OpStore %value %25
|
||||||
|
OpStore %vertex_point_size %float_1
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%fragment_main = OpFunction %void None %9
|
||||||
|
%27 = OpLabel
|
||||||
|
%28 = OpFunctionCall %void %cos_af7447
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
||||||
|
%compute_main = OpFunction %void None %9
|
||||||
|
%30 = OpLabel
|
||||||
|
%31 = OpFunctionCall %void %cos_af7447
|
||||||
|
OpReturn
|
||||||
|
OpFunctionEnd
|
|
@ -0,0 +1,19 @@
|
||||||
|
fn cos_af7447() {
|
||||||
|
var res = cos(vec2(0.0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||||||
|
cos_af7447();
|
||||||
|
return vec4<f32>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fragment_main() {
|
||||||
|
cos_af7447();
|
||||||
|
}
|
||||||
|
|
||||||
|
@compute @workgroup_size(1)
|
||||||
|
fn compute_main() {
|
||||||
|
cos_af7447();
|
||||||
|
}
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
// fn cos(vec<2, f32>) -> vec<2, f32>
|
// fn cos(vec<2, f32>) -> vec<2, f32>
|
||||||
fn cos_c3b486() {
|
fn cos_c3b486() {
|
||||||
var res: vec2<f32> = cos(vec2<f32>(1.f));
|
var res: vec2<f32> = cos(vec2<f32>(0.f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_c3b486() {
|
void cos_c3b486() {
|
||||||
float2 res = cos((1.0f).xx);
|
float2 res = (1.0f).xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_c3b486() {
|
void cos_c3b486() {
|
||||||
float2 res = cos((1.0f).xx);
|
float2 res = (1.0f).xx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_c3b486() {
|
void cos_c3b486() {
|
||||||
vec2 res = cos(vec2(1.0f));
|
vec2 res = vec2(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -21,7 +21,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_c3b486() {
|
void cos_c3b486() {
|
||||||
vec2 res = cos(vec2(1.0f));
|
vec2 res = vec2(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -35,7 +35,7 @@ void main() {
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_c3b486() {
|
void cos_c3b486() {
|
||||||
vec2 res = cos(vec2(1.0f));
|
vec2 res = vec2(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_c3b486() {
|
void cos_c3b486() {
|
||||||
float2 res = cos(float2(1.0f));
|
float2 res = float2(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 34
|
; Bound: 32
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
%15 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -33,36 +32,35 @@
|
||||||
%9 = OpTypeFunction %void
|
%9 = OpTypeFunction %void
|
||||||
%v2float = OpTypeVector %float 2
|
%v2float = OpTypeVector %float 2
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%17 = OpConstantComposite %v2float %float_1 %float_1
|
%15 = OpConstantComposite %v2float %float_1 %float_1
|
||||||
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
%_ptr_Function_v2float = OpTypePointer Function %v2float
|
||||||
%20 = OpConstantNull %v2float
|
%18 = OpConstantNull %v2float
|
||||||
%21 = OpTypeFunction %v4float
|
%19 = OpTypeFunction %v4float
|
||||||
%cos_c3b486 = OpFunction %void None %9
|
%cos_c3b486 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v2float Function %20
|
%res = OpVariable %_ptr_Function_v2float Function %18
|
||||||
%13 = OpExtInst %v2float %15 Cos %17
|
OpStore %res %15
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %21
|
%vertex_main_inner = OpFunction %v4float None %19
|
||||||
%23 = OpLabel
|
%21 = OpLabel
|
||||||
%24 = OpFunctionCall %void %cos_c3b486
|
%22 = OpFunctionCall %void %cos_c3b486
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%26 = OpLabel
|
%24 = OpLabel
|
||||||
%27 = OpFunctionCall %v4float %vertex_main_inner
|
%25 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %27
|
OpStore %value %25
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%29 = OpLabel
|
%27 = OpLabel
|
||||||
%30 = OpFunctionCall %void %cos_c3b486
|
%28 = OpFunctionCall %void %cos_c3b486
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%32 = OpLabel
|
%30 = OpLabel
|
||||||
%33 = OpFunctionCall %void %cos_c3b486
|
%31 = OpFunctionCall %void %cos_c3b486
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fn cos_c3b486() {
|
fn cos_c3b486() {
|
||||||
var res : vec2<f32> = cos(vec2<f32>(1.0f));
|
var res : vec2<f32> = cos(vec2<f32>(0.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
// fn cos(f32) -> f32
|
// fn cos(f32) -> f32
|
||||||
fn cos_c5c28e() {
|
fn cos_c5c28e() {
|
||||||
var res: f32 = cos(1.f);
|
var res: f32 = cos(0.f);
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_c5c28e() {
|
void cos_c5c28e() {
|
||||||
float res = cos(1.0f);
|
float res = 1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_c5c28e() {
|
void cos_c5c28e() {
|
||||||
float res = cos(1.0f);
|
float res = 1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_c5c28e() {
|
void cos_c5c28e() {
|
||||||
float res = cos(1.0f);
|
float res = 1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -21,7 +21,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_c5c28e() {
|
void cos_c5c28e() {
|
||||||
float res = cos(1.0f);
|
float res = 1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -35,7 +35,7 @@ void main() {
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cos_c5c28e() {
|
void cos_c5c28e() {
|
||||||
float res = cos(1.0f);
|
float res = 1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_c5c28e() {
|
void cos_c5c28e() {
|
||||||
float res = cos(1.0f);
|
float res = 1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 31
|
; Bound: 29
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
%14 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -33,33 +32,32 @@
|
||||||
%9 = OpTypeFunction %void
|
%9 = OpTypeFunction %void
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%_ptr_Function_float = OpTypePointer Function %float
|
%_ptr_Function_float = OpTypePointer Function %float
|
||||||
%18 = OpTypeFunction %v4float
|
%16 = OpTypeFunction %v4float
|
||||||
%cos_c5c28e = OpFunction %void None %9
|
%cos_c5c28e = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_float Function %8
|
%res = OpVariable %_ptr_Function_float Function %8
|
||||||
%13 = OpExtInst %float %14 Cos %float_1
|
OpStore %res %float_1
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %16
|
||||||
%20 = OpLabel
|
%18 = OpLabel
|
||||||
%21 = OpFunctionCall %void %cos_c5c28e
|
%19 = OpFunctionCall %void %cos_c5c28e
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%23 = OpLabel
|
%21 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%22 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %22
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%26 = OpLabel
|
%24 = OpLabel
|
||||||
%27 = OpFunctionCall %void %cos_c5c28e
|
%25 = OpFunctionCall %void %cos_c5c28e
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%29 = OpLabel
|
%27 = OpLabel
|
||||||
%30 = OpFunctionCall %void %cos_c5c28e
|
%28 = OpFunctionCall %void %cos_c5c28e
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fn cos_c5c28e() {
|
fn cos_c5c28e() {
|
||||||
var res : f32 = cos(1.0f);
|
var res : f32 = cos(0.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -25,7 +25,7 @@ enable f16;
|
||||||
|
|
||||||
// fn cos(f16) -> f16
|
// fn cos(f16) -> f16
|
||||||
fn cos_fc047d() {
|
fn cos_fc047d() {
|
||||||
var res: f16 = cos(1.h);
|
var res: f16 = cos(0.h);
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cos_fc047d() {
|
void cos_fc047d() {
|
||||||
float16_t res = cos(float16_t(1.0h));
|
float16_t res = float16_t(1.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_fc047d() {
|
void cos_fc047d() {
|
||||||
float16_t res = cos(1.0hf);
|
float16_t res = 1.0hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -23,7 +23,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cos_fc047d() {
|
void cos_fc047d() {
|
||||||
float16_t res = cos(1.0hf);
|
float16_t res = 1.0hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -38,7 +38,7 @@ void main() {
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cos_fc047d() {
|
void cos_fc047d() {
|
||||||
float16_t res = cos(1.0hf);
|
float16_t res = 1.0hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cos_fc047d() {
|
void cos_fc047d() {
|
||||||
half res = cos(1.0h);
|
half res = 1.0h;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 34
|
; Bound: 32
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Float16
|
OpCapability Float16
|
||||||
OpCapability UniformAndStorageBuffer16BitAccess
|
OpCapability UniformAndStorageBuffer16BitAccess
|
||||||
OpCapability StorageBuffer16BitAccess
|
OpCapability StorageBuffer16BitAccess
|
||||||
OpCapability StorageInputOutput16
|
OpCapability StorageInputOutput16
|
||||||
%15 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -38,35 +37,34 @@
|
||||||
%half = OpTypeFloat 16
|
%half = OpTypeFloat 16
|
||||||
%half_0x1p_0 = OpConstant %half 0x1p+0
|
%half_0x1p_0 = OpConstant %half 0x1p+0
|
||||||
%_ptr_Function_half = OpTypePointer Function %half
|
%_ptr_Function_half = OpTypePointer Function %half
|
||||||
%19 = OpConstantNull %half
|
%17 = OpConstantNull %half
|
||||||
%20 = OpTypeFunction %v4float
|
%18 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%cos_fc047d = OpFunction %void None %9
|
%cos_fc047d = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_half Function %19
|
%res = OpVariable %_ptr_Function_half Function %17
|
||||||
%13 = OpExtInst %half %15 Cos %half_0x1p_0
|
OpStore %res %half_0x1p_0
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %20
|
%vertex_main_inner = OpFunction %v4float None %18
|
||||||
%22 = OpLabel
|
%20 = OpLabel
|
||||||
%23 = OpFunctionCall %void %cos_fc047d
|
%21 = OpFunctionCall %void %cos_fc047d
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%25 = OpLabel
|
%23 = OpLabel
|
||||||
%26 = OpFunctionCall %v4float %vertex_main_inner
|
%24 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %26
|
OpStore %value %24
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%29 = OpLabel
|
%27 = OpLabel
|
||||||
%30 = OpFunctionCall %void %cos_fc047d
|
%28 = OpFunctionCall %void %cos_fc047d
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%32 = OpLabel
|
%30 = OpLabel
|
||||||
%33 = OpFunctionCall %void %cos_fc047d
|
%31 = OpFunctionCall %void %cos_fc047d
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
enable f16;
|
enable f16;
|
||||||
|
|
||||||
fn cos_fc047d() {
|
fn cos_fc047d() {
|
||||||
var res : f16 = cos(1.0h);
|
var res : f16 = cos(0.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -25,7 +25,7 @@ enable f16;
|
||||||
|
|
||||||
// fn cosh(f16) -> f16
|
// fn cosh(f16) -> f16
|
||||||
fn cosh_2ed778() {
|
fn cosh_2ed778() {
|
||||||
var res: f16 = cosh(1.h);
|
var res: f16 = cosh(0.h);
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cosh_2ed778() {
|
void cosh_2ed778() {
|
||||||
float16_t res = cosh(float16_t(1.0h));
|
float16_t res = float16_t(1.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cosh_2ed778() {
|
void cosh_2ed778() {
|
||||||
float16_t res = cosh(1.0hf);
|
float16_t res = 1.0hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -23,7 +23,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cosh_2ed778() {
|
void cosh_2ed778() {
|
||||||
float16_t res = cosh(1.0hf);
|
float16_t res = 1.0hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -38,7 +38,7 @@ void main() {
|
||||||
#extension GL_AMD_gpu_shader_half_float : require
|
#extension GL_AMD_gpu_shader_half_float : require
|
||||||
|
|
||||||
void cosh_2ed778() {
|
void cosh_2ed778() {
|
||||||
float16_t res = cosh(1.0hf);
|
float16_t res = 1.0hf;
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cosh_2ed778() {
|
void cosh_2ed778() {
|
||||||
half res = cosh(1.0h);
|
half res = 1.0h;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,14 +1,13 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 34
|
; Bound: 32
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Float16
|
OpCapability Float16
|
||||||
OpCapability UniformAndStorageBuffer16BitAccess
|
OpCapability UniformAndStorageBuffer16BitAccess
|
||||||
OpCapability StorageBuffer16BitAccess
|
OpCapability StorageBuffer16BitAccess
|
||||||
OpCapability StorageInputOutput16
|
OpCapability StorageInputOutput16
|
||||||
%15 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -38,35 +37,34 @@
|
||||||
%half = OpTypeFloat 16
|
%half = OpTypeFloat 16
|
||||||
%half_0x1p_0 = OpConstant %half 0x1p+0
|
%half_0x1p_0 = OpConstant %half 0x1p+0
|
||||||
%_ptr_Function_half = OpTypePointer Function %half
|
%_ptr_Function_half = OpTypePointer Function %half
|
||||||
%19 = OpConstantNull %half
|
%17 = OpConstantNull %half
|
||||||
%20 = OpTypeFunction %v4float
|
%18 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%cosh_2ed778 = OpFunction %void None %9
|
%cosh_2ed778 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_half Function %19
|
%res = OpVariable %_ptr_Function_half Function %17
|
||||||
%13 = OpExtInst %half %15 Cosh %half_0x1p_0
|
OpStore %res %half_0x1p_0
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %20
|
%vertex_main_inner = OpFunction %v4float None %18
|
||||||
%22 = OpLabel
|
%20 = OpLabel
|
||||||
%23 = OpFunctionCall %void %cosh_2ed778
|
%21 = OpFunctionCall %void %cosh_2ed778
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%25 = OpLabel
|
%23 = OpLabel
|
||||||
%26 = OpFunctionCall %v4float %vertex_main_inner
|
%24 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %26
|
OpStore %value %24
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%29 = OpLabel
|
%27 = OpLabel
|
||||||
%30 = OpFunctionCall %void %cosh_2ed778
|
%28 = OpFunctionCall %void %cosh_2ed778
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%32 = OpLabel
|
%30 = OpLabel
|
||||||
%33 = OpFunctionCall %void %cosh_2ed778
|
%31 = OpFunctionCall %void %cosh_2ed778
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
enable f16;
|
enable f16;
|
||||||
|
|
||||||
fn cosh_2ed778() {
|
fn cosh_2ed778() {
|
||||||
var res : f16 = cosh(1.0h);
|
var res : f16 = cosh(0.0h);
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
// fn cosh(vec<3, f32>) -> vec<3, f32>
|
// fn cosh(vec<3, f32>) -> vec<3, f32>
|
||||||
fn cosh_377652() {
|
fn cosh_377652() {
|
||||||
var res: vec3<f32> = cosh(vec3<f32>(1.f));
|
var res: vec3<f32> = cosh(vec3<f32>(0.f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cosh_377652() {
|
void cosh_377652() {
|
||||||
float3 res = cosh((1.0f).xxx);
|
float3 res = (1.0f).xxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cosh_377652() {
|
void cosh_377652() {
|
||||||
float3 res = cosh((1.0f).xxx);
|
float3 res = (1.0f).xxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cosh_377652() {
|
void cosh_377652() {
|
||||||
vec3 res = cosh(vec3(1.0f));
|
vec3 res = vec3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
vec4 vertex_main() {
|
vec4 vertex_main() {
|
||||||
|
@ -21,7 +21,7 @@ void main() {
|
||||||
precision mediump float;
|
precision mediump float;
|
||||||
|
|
||||||
void cosh_377652() {
|
void cosh_377652() {
|
||||||
vec3 res = cosh(vec3(1.0f));
|
vec3 res = vec3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment_main() {
|
void fragment_main() {
|
||||||
|
@ -35,7 +35,7 @@ void main() {
|
||||||
#version 310 es
|
#version 310 es
|
||||||
|
|
||||||
void cosh_377652() {
|
void cosh_377652() {
|
||||||
vec3 res = cosh(vec3(1.0f));
|
vec3 res = vec3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
void compute_main() {
|
void compute_main() {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
using namespace metal;
|
using namespace metal;
|
||||||
void cosh_377652() {
|
void cosh_377652() {
|
||||||
float3 res = cosh(float3(1.0f));
|
float3 res = float3(1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 34
|
; Bound: 32
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
%15 = OpExtInstImport "GLSL.std.450"
|
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
OpEntryPoint Vertex %vertex_main "vertex_main" %value %vertex_point_size
|
||||||
OpEntryPoint Fragment %fragment_main "fragment_main"
|
OpEntryPoint Fragment %fragment_main "fragment_main"
|
||||||
|
@ -33,36 +32,35 @@
|
||||||
%9 = OpTypeFunction %void
|
%9 = OpTypeFunction %void
|
||||||
%v3float = OpTypeVector %float 3
|
%v3float = OpTypeVector %float 3
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%17 = OpConstantComposite %v3float %float_1 %float_1 %float_1
|
%15 = OpConstantComposite %v3float %float_1 %float_1 %float_1
|
||||||
%_ptr_Function_v3float = OpTypePointer Function %v3float
|
%_ptr_Function_v3float = OpTypePointer Function %v3float
|
||||||
%20 = OpConstantNull %v3float
|
%18 = OpConstantNull %v3float
|
||||||
%21 = OpTypeFunction %v4float
|
%19 = OpTypeFunction %v4float
|
||||||
%cosh_377652 = OpFunction %void None %9
|
%cosh_377652 = OpFunction %void None %9
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
%res = OpVariable %_ptr_Function_v3float Function %20
|
%res = OpVariable %_ptr_Function_v3float Function %18
|
||||||
%13 = OpExtInst %v3float %15 Cosh %17
|
OpStore %res %15
|
||||||
OpStore %res %13
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %21
|
%vertex_main_inner = OpFunction %v4float None %19
|
||||||
%23 = OpLabel
|
%21 = OpLabel
|
||||||
%24 = OpFunctionCall %void %cosh_377652
|
%22 = OpFunctionCall %void %cosh_377652
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %9
|
%vertex_main = OpFunction %void None %9
|
||||||
%26 = OpLabel
|
%24 = OpLabel
|
||||||
%27 = OpFunctionCall %v4float %vertex_main_inner
|
%25 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %27
|
OpStore %value %25
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %9
|
%fragment_main = OpFunction %void None %9
|
||||||
%29 = OpLabel
|
%27 = OpLabel
|
||||||
%30 = OpFunctionCall %void %cosh_377652
|
%28 = OpFunctionCall %void %cosh_377652
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %9
|
%compute_main = OpFunction %void None %9
|
||||||
%32 = OpLabel
|
%30 = OpLabel
|
||||||
%33 = OpFunctionCall %void %cosh_377652
|
%31 = OpFunctionCall %void %cosh_377652
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
fn cosh_377652() {
|
fn cosh_377652() {
|
||||||
var res : vec3<f32> = cosh(vec3<f32>(1.0f));
|
var res : vec3<f32> = cosh(vec3<f32>(0.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -25,7 +25,7 @@ enable f16;
|
||||||
|
|
||||||
// fn cosh(vec<4, f16>) -> vec<4, f16>
|
// fn cosh(vec<4, f16>) -> vec<4, f16>
|
||||||
fn cosh_3b7bbf() {
|
fn cosh_3b7bbf() {
|
||||||
var res: vec4<f16> = cosh(vec4<f16>(1.h));
|
var res: vec4<f16> = cosh(vec4<f16>(0.h));
|
||||||
}
|
}
|
||||||
|
|
||||||
@vertex
|
@vertex
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
void cosh_3b7bbf() {
|
void cosh_3b7bbf() {
|
||||||
vector<float16_t, 4> res = cosh((float16_t(1.0h)).xxxx);
|
vector<float16_t, 4> res = (float16_t(1.0h)).xxxx;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct tint_symbol {
|
struct tint_symbol {
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue