Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYCL] Added support of rounding modes for non-host devices #1463

Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
916dba8
support_rounding_models_for_non-host_devices #1.1
fadeeval Mar 13, 2020
0dba70d
support_rounding_models_for_non-host_devices #1.2
fadeeval Mar 16, 2020
0443893
support_rounding_models_for_non-host_devices #1.3
fadeeval Mar 16, 2020
cf7c3d4
Raw commit
fadeeval Mar 19, 2020
b4a9f93
Alpha version
fadeeval Mar 23, 2020
c671d9b
Alppha 2
fadeeval Mar 23, 2020
6c43eca
Origin
fadeeval Mar 24, 2020
bb88eff
Operative commit
fadeeval Mar 25, 2020
cf8e720
Fix the return type
fadeeval Mar 26, 2020
bbad4df
Converting SYCL types in OpenCL types
fadeeval Mar 26, 2020
b9a171e
Formatting and assert changes
fadeeval Mar 27, 2020
f927a3e
Fix of the spirv functions declaration
fadeeval Mar 30, 2020
2a96e9b
Metaprogramming
fadeeval Apr 1, 2020
a03b462
Adding macros
fadeeval Apr 1, 2020
070fbf5
Restore spirv_ops.hpp
fadeeval Apr 2, 2020
9c13847
Macros improving
fadeeval Apr 2, 2020
543fe09
Unsign to sign convert
fadeeval Apr 2, 2020
ec8806a
Reverting
fadeeval Apr 2, 2020
870059e
Patch
fadeeval Apr 3, 2020
ea768af
Formatting
fadeeval Apr 3, 2020
238ee1a
Formatting 2
fadeeval Apr 3, 2020
c03698b
Revert
fadeeval Apr 3, 2020
e0b0566
Formatting 3
fadeeval Apr 3, 2020
c5cf20e
Coments
fadeeval Apr 8, 2020
8267f30
Coments fix
fadeeval Apr 8, 2020
33220d7
Formatting 4
fadeeval Apr 8, 2020
5683577
Test fix
fadeeval Apr 10, 2020
5cd3e6e
Test fix2
fadeeval Apr 10, 2020
843bf4a
Cuda unsupp
fadeeval Apr 10, 2020
2a1fb94
delete unsupported: cuda
fadeeval Apr 13, 2020
8921bc3
vec_convert.cpp XFail: cuda
fadeeval Apr 13, 2020
f6d6777
Unsupported on cuda buffer_dev_to_dev.cpp
fadeeval Apr 14, 2020
e875fbf
TrueChar to Char
fadeeval Apr 14, 2020
f1f2897
schar to char
fadeeval Apr 14, 2020
c417b51
fix TrueChar
fadeeval Apr 15, 2020
014c0d4
Comments fix
fadeeval Apr 15, 2020
b0eb8e0
Fix
fadeeval Apr 15, 2020
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
Prev Previous commit
Next Next commit
schar to char
Signed-off-by: Aleksander Fadeev <aleksander.fadeev@intel.com>
  • Loading branch information
fadeeval committed Apr 14, 2020
commit f1f289720159d2b7947e7955fb15347dd2f01ec0
2 changes: 1 addition & 1 deletion clang/lib/Sema/SPIRVBuiltins.td
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class ConstOCLSPVBuiltin<string _Name, list<Type> _Signature> :
// OpenCL v1.0/1.2/2.0 s6.1.1: Built-in Scalar Data Types.
def Bool : IntType<"bool", QualType<"BoolTy">, 1>;
def TrueChar : IntType<"char", QualType<"CharTy", 0, 1>, 8>;
def Char : IntType<"schar", QualType<"SignedCharTy", 0, 1>, 8>;
def Char : IntType<"char", QualType<"SignedCharTy", 0, 1>, 8>;
def SChar : IntType<"schar", QualType<"SignedCharTy", 0, 1>, 8>;
def UChar : UIntType<"uchar", QualType<"UnsignedCharTy">, 8>;
def Short : IntType<"short", QualType<"ShortTy", 0, 1>, 16>;
Expand Down