Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d2c37e8
WIP
damyanp Sep 5, 2025
ad8fd59
Fix generated expected values for binary, scalar, ops.
damyanp Sep 5, 2025
baff2a5
Frexp
damyanp Sep 5, 2025
a5dad61
BinaryMathOp
damyanp Sep 5, 2025
6401c13
TernaryMathOp
damyanp Sep 5, 2025
7789a0b
Remove dead code
damyanp Sep 6, 2025
7b86b4f
Clean up includes
damyanp Sep 6, 2025
088be3d
VerboseLogging & fix Frexp test
damyanp Sep 6, 2025
a2c5cb6
Rearrange for better diff
damyanp Sep 6, 2025
367e9b5
More rearranging
damyanp Sep 6, 2025
4df5de0
Fix smoothstep
damyanp Sep 6, 2025
0d9f531
Delete now unused VariantVector
damyanp Sep 6, 2025
fedae41
Cleanup includes
damyanp Sep 6, 2025
2d4f7ec
Remove unneeded forward decls / cleanup headers
damyanp Sep 6, 2025
66989bf
clang-format
damyanp Sep 6, 2025
1da7254
Fix double-break
damyanp Sep 6, 2025
8d017af
clang-format
damyanp Sep 6, 2025
dd69267
Fix getting the LongVectorInputSize _runtime parameter_
damyanp Sep 8, 2025
500dc51
Refactor "WasSkipped" to an optional return
damyanp Sep 8, 2025
a8d4f34
Remove out-of-date comment. Always add ExtraDefines (this'll be empt…
damyanp Sep 8, 2025
9dd8805
Remove unnecessary includes
damyanp Sep 8, 2025
86eeaf3
Update tools/clang/unittests/HLSLExec/LongVectors.cpp
damyanp Sep 9, 2025
b404a18
Update tools/clang/unittests/HLSLExec/LongVectors.cpp
damyanp Sep 9, 2025
8e3093b
Update tools/clang/unittests/HLSLExec/LongVectors.cpp
damyanp Sep 9, 2025
c2ac285
Address feedback
damyanp Sep 9, 2025
3126911
Add comment
damyanp Sep 9, 2025
e1816c9
dispatchTest -> dispatchTestByOpTypeAndVectorSize
damyanp Sep 9, 2025
f1fa8a9
Fix auto Config ... vs if(auto Config) everywhere
damyanp Sep 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tools/clang/unittests/HLSLExec/LongVectorTestData.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
#define LONGVECTORTESTDATA_H

#include <Verify.h>

#include <limits>
#include <map>
#include <ostream>
Comment thread
alsepkow marked this conversation as resolved.
#include <string>
#include <vector>

Expand Down
Loading