Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
KDevelop
KDevelop
Commits
2dd5d845
Commit
2dd5d845
authored
Jul 20, 2022
by
Pedro Olsen Ferreira
Browse files
Add tests for CL types
parent
9b4175e2
Pipeline
#235912
passed with stage
in 17 minutes and 31 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kdevplatform/tests/json/jsondeclarationtests.h
View file @
2dd5d845
...
...
@@ -38,6 +38,7 @@
* unaliasedType : TypeTestObject
* targetType : TypeTestObject
* returnType : TypeTestObject
* isAtomic : bool
* isAbstract : bool
* isMutable : bool
* isVirtual : bool
...
...
@@ -187,6 +188,16 @@ DeclarationTest(identifiedTypeDeclaration)
return
testObject
(
idDecl
,
value
,
QStringLiteral
(
"IdentifiedType's declaration"
));
}
///JSON type: bool
///@returns whether the declaration's isAtomic matches the given value
DeclarationTest
(
isAtomic
)
{
AbstractType
::
Ptr
type
=
TypeUtils
::
targetType
(
decl
->
abstractType
(),
decl
->
topContext
());
return
compareValues
((
type
->
modifiers
()
&
AbstractType
::
AtomicModifier
)
!=
0
,
value
,
QStringLiteral
(
"Declaration's atomic modifier"
));
}
///JSON type: bool
///@returns whether the (function) declaration's isVirtual matches the given value
DeclarationTest
(
isVirtual
)
...
...
plugins/clang/tests/files/test.cl
View file @
2dd5d845
#
pragma
OPENCL
EXTENSION
cl_khr_fp16
:
enable
#
pragma
OPENCL
EXTENSION
cl_khr_fp64
:
enable
#
pragma
OPENCL
EXTENSION
cl_khr_int64_base_atomics
:
enable
#
pragma
OPENCL
EXTENSION
cl_khr_int64_extended_atomics
:
enable
typedef
half
half4
__attribute__
((
ext_vector_type
(
4
)))
;
typedef
float
float4
__attribute__
((
ext_vector_type
(
4
)))
;
typedef
double
double4
__attribute__
((
ext_vector_type
(
4
)))
;
void
kernel
testFloatTypes
()
{
///
"isAtomic"
:
false
half
scalarHalf
;
///
"isAtomic"
:
false
half4
vectorHalf
;
///
"isAtomic"
:
false
float
scalarFloat
;
///
"isAtomic"
:
false
float4
vectorFloat
;
///
"isAtomic"
:
false
double
scalarDouble
;
///
"isAtomic"
:
false
double4
vectorDouble
;
}
///
"isVirtual"
:
false
void
kernel
testFlatImageTys
(
image1d_t
img1d,
image2d_t
img2d,
image3d_t
img3d
)
{
}
///
"isVirtual"
:
false
void
kernel
testImageArrays
(
image1d_array_t
img1d,
image2d_array_t
img2d,
image2d_array_depth_t
img2da,
image2d_array_msaa_t
img2dmsaa,
image2d_array_msaa_depth_t
img2damd
)
{
}
///
"isVirtual"
:
false
void
kernel
testOtherImageTys
(
image1d_buffer_t
img1d,
image2d_depth_t
img2ddepth,
image2d_msaa_t
msaa,
image2d_msaa_depth_t
img2ddepthmsaa
)
{
}
///
"isVirtual"
:
false
void
kernel
testOpaqueTys
(
sampler_t
samplerTy
)
{
event_t
eventTy
;
#
if
__OPENCL_C_VERSION__
>=
200
queue_t
queueTy
;
ndrange_t
ndrangeTy
;
clk_event_t
clkeventTy
;
reserve_id_t
reservedIDTy
;
#
endif
}
#
if
__OPENCL_C_VERSION__
>=
200
void
kernel
testAtomicTys
()
{
///
"isAtomic"
:
true
atomic_int
ai
;
///
"isAtomic"
:
true
atomic_uint
aui
;
///
"isAtomic"
:
true
atomic_long
al
;
///
"isAtomic"
:
true
atomic_ulong
aul
;
///
"isAtomic"
:
true
atomic_float
af
;
///
"isAtomic"
:
true
atomic_double
ad
;
///
"isAtomic"
:
true
atomic_intptr_t
ap
;
///
"isAtomic"
:
true
atomic_uintptr_t
au
;
///
"isAtomic"
:
true
atomic_size_t
as
;
///
"isAtomic"
:
true
atomic_ptrdiff_t
apdt
;
}
#
endif
Morten Volden
@volden
mentioned in issue
#14 (closed)
·
Oct 10, 2022
mentioned in issue
#14 (closed)
mentioned in issue #14
Toggle commit list
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment