Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
b2c7d448
Commit
b2c7d448
authored
Apr 17, 2013
by
Joseph Noir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adapted debug and error messages
parent
21dd89ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
49 deletions
+25
-49
libcaf_opencl/cppa/opencl/actor_facade.hpp
libcaf_opencl/cppa/opencl/actor_facade.hpp
+1
-3
libcaf_opencl/src/opencl/command_dispatcher.cpp
libcaf_opencl/src/opencl/command_dispatcher.cpp
+18
-36
libcaf_opencl/src/opencl/program.cpp
libcaf_opencl/src/opencl/program.cpp
+6
-10
No files found.
libcaf_opencl/cppa/opencl/actor_facade.hpp
View file @
b2c7d448
...
...
@@ -103,9 +103,7 @@ class actor_facade<Ret(Args...)> : public actor {
&
err
));
if
(
err
!=
CL_SUCCESS
)
{
std
::
ostringstream
oss
;
oss
<<
"clCreateKernel: '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clCreateKernel: "
<<
get_opencl_error
(
err
);
CPPA_LOGM_ERROR
(
detail
::
demangle
<
actor_facade
>
(),
oss
.
str
());
throw
std
::
runtime_error
(
oss
.
str
());
}
...
...
libcaf_opencl/src/opencl/command_dispatcher.cpp
View file @
b2c7d448
...
...
@@ -79,16 +79,14 @@ struct command_dispatcher::worker {
cl_int
err
{
clFlush
(
cmd_q
)};
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"clFlush: '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clFlush: "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
}
catch
(
exception
&
e
)
{
ostringstream
oss
;
oss
<<
"worker loop, e.what():
'"
<<
e
.
what
()
<<
"'."
;
oss
<<
"worker loop, e.what():
"
<<
e
.
what
()
;
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -129,9 +127,7 @@ void command_dispatcher::initialize() {
err
=
clGetPlatformIDs
(
ids
.
size
(),
ids
.
data
(),
&
number_of_platforms
);
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"clGetPlatformIDs: '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clGetPlatformIDs: "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
logic_error
(
oss
.
str
());
}
...
...
@@ -155,9 +151,7 @@ void command_dispatcher::initialize() {
}
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"clGetDeviceIDs: '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clGetDeviceIDs: "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -165,9 +159,7 @@ void command_dispatcher::initialize() {
err
=
clGetDeviceIDs
(
ids
[
pid
],
dev_type
,
num_devices
,
devices
.
data
(),
nullptr
);
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"clGetDeviceIDs: '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clGetDeviceIDs: "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -176,9 +168,7 @@ void command_dispatcher::initialize() {
m_context
.
adopt
(
clCreateContext
(
0
,
1
,
devices
.
data
(),
nullptr
,
nullptr
,
&
err
));
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"clCreateContext: '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clCreateContext: "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -193,11 +183,7 @@ void command_dispatcher::initialize() {
char
buf
[
buf_size
];
err
=
clGetDeviceInfo
(
device
.
get
(),
CL_DEVICE_NAME
,
buf_size
,
buf
,
&
return_size
);
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"clGetDeviceInfo (CL_DEVICE_NAME): '"
<<
get_opencl_error
(
err
)
<<
"'."
;
CPPA_LOG_ERROR
(
oss
.
str
());
CPPA_LOG_ERROR
(
"clGetDeviceInfo (CL_DEVICE_NAME): "
<<
get_opencl_error
(
err
));
fill
(
buf
,
buf
+
buf_size
,
0
);
}
command_queue_ptr
cmd_queue
;
...
...
@@ -207,8 +193,7 @@ void command_dispatcher::initialize() {
&
err
));
if
(
err
!=
CL_SUCCESS
)
{
CPPA_LOG_DEBUG
(
"Could not create command queue for device "
<<
buf
<<
": '"
<<
get_opencl_error
(
err
)
<<
"'."
);
<<
buf
<<
": "
<<
get_opencl_error
(
err
));
}
else
{
size_t
max_work_group_size
{
0
};
...
...
@@ -219,10 +204,9 @@ void command_dispatcher::initialize() {
&
return_size
);
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"[!!!] clGetDeviceInfo ("
<<
id
<<
":CL_DEVICE_MAX_WORK_GROUP_SIZE): '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clGetDeviceInfo ("
<<
id
<<
":CL_DEVICE_MAX_WORK_GROUP_SIZE): "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -234,10 +218,9 @@ void command_dispatcher::initialize() {
&
return_size
);
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"[!!!] clGetDeviceInfo ("
<<
id
<<
":CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS): '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clGetDeviceInfo ("
<<
id
<<
":CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS): "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -249,10 +232,9 @@ void command_dispatcher::initialize() {
&
return_size
);
if
(
err
!=
CL_SUCCESS
)
{
ostringstream
oss
;
oss
<<
"[!!!] clGetDeviceInfo ("
<<
id
<<
":CL_DEVICE_MAX_WORK_ITEM_SIZES): '"
<<
get_opencl_error
(
err
)
<<
"'."
;
oss
<<
"clGetDeviceInfo ("
<<
id
<<
":CL_DEVICE_MAX_WORK_ITEM_SIZES): "
<<
get_opencl_error
(
err
);
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
}
...
...
@@ -267,7 +249,7 @@ void command_dispatcher::initialize() {
}
if
(
m_devices
.
empty
())
{
ostringstream
oss
;
oss
<<
"
[!!!]
Could not create a command queue for "
oss
<<
"Could not create a command queue for "
<<
"any of the present devices."
;
CPPA_LOG_ERROR
(
oss
.
str
());
throw
runtime_error
(
oss
.
str
());
...
...
libcaf_opencl/src/opencl/program.cpp
View file @
b2c7d448
...
...
@@ -36,8 +36,6 @@
namespace
cppa
{
namespace
opencl
{
//program::program() : m_context(nullptr), pptr(nullptr) { }
program
::
program
(
context_ptr
context
,
program_ptr
program
)
:
m_context
(
std
::
move
(
context
)),
m_program
(
std
::
move
(
program
))
{
}
...
...
@@ -56,9 +54,8 @@ program program::create(const char* kernel_source) {
&
err
));
if
(
err
!=
CL_SUCCESS
)
{
throw
std
::
runtime_error
(
"clCreateProgramWithSource: '"
+
get_opencl_error
(
err
)
+
"'."
);
throw
std
::
runtime_error
(
"clCreateProgramWithSource: "
+
get_opencl_error
(
err
));
}
// build programm from program object
...
...
@@ -90,10 +87,8 @@ program program::create(const char* kernel_source) {
nullptr
);
build_log
[
ret_val_size
]
=
'\0'
;
std
::
ostringstream
oss
;
oss
<<
"clBuildProgram: '"
<<
get_opencl_error
(
err
)
<<
"'. Build log: "
<<
build_log
.
data
();
oss
<<
"clBuildProgram: "
<<
get_opencl_error
(
err
)
<<
", build log: "
<<
build_log
.
data
();
CPPA_LOGM_ERROR
(
detail
::
demangle
<
program
>
(),
oss
.
str
());
throw
std
::
runtime_error
(
oss
.
str
());
}
...
...
@@ -124,7 +119,8 @@ program program::create(const char* kernel_source) {
build_log
.
data
(),
nullptr
);
build_log
[
ret_val_size
]
=
'\0'
;
CPPA_LOG_DEBUG
(
"clBuildProgram log: '"
<<
build_log
.
data
());
CPPA_LOG_DEBUG
(
"clBuildProgram build log: "
<<
build_log
.
data
());
# endif
}
return
{
cptr
,
pptr
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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