Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glslang
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
public-release-test-restored
platform
external
deqp-deps
glslang
Commits
56364b08
Commit
56364b08
authored
7 years ago
by
John Kessenich
Browse files
Options
Downloads
Plain Diff
Merge branch 'sheredom-fixup_sm_60_wording'
parents
ac370792
e62d1baf
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Test/hlsl.wavebroadcast.comp
+24
-24
24 additions, 24 deletions
Test/hlsl.wavebroadcast.comp
glslang/Include/revision.h
+1
-1
1 addition, 1 deletion
glslang/Include/revision.h
hlsl/hlslParseables.cpp
+2
-2
2 additions, 2 deletions
hlsl/hlslParseables.cpp
with
27 additions
and
27 deletions
Test/hlsl.wavebroadcast.comp
+
24
−
24
View file @
56364b08
...
...
@@ -26,28 +26,28 @@ void CSMain(uint3 dti : SV_DispatchThreadID)
data[dti.x].f.xy = WaveReadLaneAt(data[dti.x].f.xy, 13);
data[dti.x].f.xyz = WaveReadLaneAt(data[dti.x].f.xyz, 13);
data[dti.x].d = WaveReadFirst
Lane
(data[dti.x].d);
data[dti.x].d.x = WaveReadFirst
Lane
(data[dti.x].d.x);
data[dti.x].d.xy = WaveReadFirst
Lane
(data[dti.x].d.xy);
data[dti.x].d.xyz = WaveReadFirst
Lane
(data[dti.x].d.xyz);
data[dti.x].u = WaveReadFirst
Lane
(data[dti.x].u);
data[dti.x].u.x = WaveReadFirst
Lane
(data[dti.x].u.x);
data[dti.x].u.xy = WaveReadFirst
Lane
(data[dti.x].u.xy);
data[dti.x].u.xyz = WaveReadFirst
Lane
(data[dti.x].u.xyz);
data[dti.x].i = WaveReadFirst
Lane
(data[dti.x].i);
data[dti.x].i.x = WaveReadFirst
Lane
(data[dti.x].i.x);
data[dti.x].i.xy = WaveReadFirst
Lane
(data[dti.x].i.xy);
data[dti.x].i.xyz = WaveReadFirst
Lane
(data[dti.x].i.xyz);
data[dti.x].f = WaveReadFirst
Lane
(data[dti.x].f);
data[dti.x].f.x = WaveReadFirst
Lane
(data[dti.x].f.x);
data[dti.x].f.xy = WaveReadFirst
Lane
(data[dti.x].f.xy);
data[dti.x].f.xyz = WaveReadFirst
Lane
(data[dti.x].f.xyz);
data[dti.x].d = WaveReadFirst
Lane
(data[dti.x].d);
data[dti.x].d.x = WaveReadFirst
Lane
(data[dti.x].d.x);
data[dti.x].d.xy = WaveReadFirst
Lane
(data[dti.x].d.xy);
data[dti.x].d.xyz = WaveReadFirst
Lane
(data[dti.x].d.xyz);
data[dti.x].d = WaveRead
Lane
First(data[dti.x].d);
data[dti.x].d.x = WaveRead
Lane
First(data[dti.x].d.x);
data[dti.x].d.xy = WaveRead
Lane
First(data[dti.x].d.xy);
data[dti.x].d.xyz = WaveRead
Lane
First(data[dti.x].d.xyz);
data[dti.x].u = WaveRead
Lane
First(data[dti.x].u);
data[dti.x].u.x = WaveRead
Lane
First(data[dti.x].u.x);
data[dti.x].u.xy = WaveRead
Lane
First(data[dti.x].u.xy);
data[dti.x].u.xyz = WaveRead
Lane
First(data[dti.x].u.xyz);
data[dti.x].i = WaveRead
Lane
First(data[dti.x].i);
data[dti.x].i.x = WaveRead
Lane
First(data[dti.x].i.x);
data[dti.x].i.xy = WaveRead
Lane
First(data[dti.x].i.xy);
data[dti.x].i.xyz = WaveRead
Lane
First(data[dti.x].i.xyz);
data[dti.x].f = WaveRead
Lane
First(data[dti.x].f);
data[dti.x].f.x = WaveRead
Lane
First(data[dti.x].f.x);
data[dti.x].f.xy = WaveRead
Lane
First(data[dti.x].f.xy);
data[dti.x].f.xyz = WaveRead
Lane
First(data[dti.x].f.xyz);
data[dti.x].d = WaveRead
Lane
First(data[dti.x].d);
data[dti.x].d.x = WaveRead
Lane
First(data[dti.x].d.x);
data[dti.x].d.xy = WaveRead
Lane
First(data[dti.x].d.xy);
data[dti.x].d.xyz = WaveRead
Lane
First(data[dti.x].d.xyz);
}
This diff is collapsed.
Click to expand it.
glslang/Include/revision.h
+
1
−
1
View file @
56364b08
// This header is generated by the make-revision script.
#define GLSLANG_PATCH_LEVEL 259
6
#define GLSLANG_PATCH_LEVEL 259
9
This diff is collapsed.
Click to expand it.
hlsl/hlslParseables.cpp
+
2
−
2
View file @
56364b08
...
...
@@ -913,7 +913,7 @@ void TBuiltInParseablesHlsl::initialize(int /*version*/, EProfile /*profile*/, c
{
"WaveActiveAllTrue"
,
"S"
,
"B"
,
"S"
,
"B"
,
EShLangPSCS
,
false
},
{
"WaveActiveBallot"
,
"V4"
,
"U"
,
"S"
,
"B"
,
EShLangPSCS
,
false
},
{
"WaveReadLaneAt"
,
nullptr
,
nullptr
,
"SV,S"
,
"DFUI,U"
,
EShLangPSCS
,
false
},
{
"WaveReadFirst
Lane
"
,
nullptr
,
nullptr
,
"SV"
,
"DFUI"
,
EShLangPSCS
,
false
},
{
"WaveRead
Lane
First"
,
nullptr
,
nullptr
,
"SV"
,
"DFUI"
,
EShLangPSCS
,
false
},
{
"WaveActiveAllEqual"
,
"S"
,
"B"
,
"SV"
,
"DFUI"
,
EShLangPSCS
,
false
},
{
"WaveActiveAllEqualBool"
,
"S"
,
"B"
,
"S"
,
"B"
,
EShLangPSCS
,
false
},
{
"WaveActiveCountBits"
,
"S"
,
"U"
,
"S"
,
"B"
,
EShLangPSCS
,
false
},
...
...
@@ -1282,7 +1282,7 @@ void TBuiltInParseablesHlsl::identifyBuiltIns(int /*version*/, EProfile /*profil
symbolTable
.
relateToOperator
(
"WaveActiveAnyTrue"
,
EOpSubgroupAny
);
symbolTable
.
relateToOperator
(
"WaveActiveAllTrue"
,
EOpSubgroupAll
);
symbolTable
.
relateToOperator
(
"WaveActiveBallot"
,
EOpSubgroupBallot
);
symbolTable
.
relateToOperator
(
"WaveReadFirst
Lane
"
,
EOpSubgroupBroadcastFirst
);
symbolTable
.
relateToOperator
(
"WaveRead
Lane
First"
,
EOpSubgroupBroadcastFirst
);
symbolTable
.
relateToOperator
(
"WaveReadLaneAt"
,
EOpSubgroupShuffle
);
symbolTable
.
relateToOperator
(
"WaveActiveAllEqual"
,
EOpSubgroupAllEqual
);
symbolTable
.
relateToOperator
(
"WaveActiveAllEqualBool"
,
EOpSubgroupAllEqual
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment