Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
db96b18a
authored
Dec 19, 2014
by
Marcus Winter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mtapi_opencl_c: fixed cpplint warnings
parent
445fd347
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
41 deletions
+78
-41
mtapi_opencl_c/src/embb_mtapi_opencl.c
+78
-41
No files found.
mtapi_opencl_c/src/embb_mtapi_opencl.c
View file @
db96b18a
...
@@ -79,13 +79,13 @@ static int round_up(int group_size, int global_size) {
...
@@ -79,13 +79,13 @@ static int round_up(int group_size, int global_size) {
int
r
=
global_size
%
group_size
;
int
r
=
global_size
%
group_size
;
if
(
r
==
0
)
{
if
(
r
==
0
)
{
return
global_size
;
return
global_size
;
}
}
else
{
else
{
return
global_size
+
group_size
-
r
;
return
global_size
+
group_size
-
r
;
}
}
}
}
static
void
CL_API_CALL
opencl_task_complete
(
cl_event
ev
,
cl_int
status
,
void
*
data
)
{
static
void
CL_API_CALL
opencl_task_complete
(
cl_event
ev
,
cl_int
status
,
void
*
data
)
{
EMBB_UNUSED
(
ev
);
EMBB_UNUSED
(
ev
);
EMBB_UNUSED
(
status
);
EMBB_UNUSED
(
status
);
...
@@ -95,9 +95,11 @@ static void CL_API_CALL opencl_task_complete(cl_event ev, cl_int status, void *
...
@@ -95,9 +95,11 @@ static void CL_API_CALL opencl_task_complete(cl_event ev, cl_int status, void *
if
(
embb_mtapi_node_is_initialized
())
{
if
(
embb_mtapi_node_is_initialized
())
{
embb_mtapi_node_t
*
node
=
embb_mtapi_node_get_instance
();
embb_mtapi_node_t
*
node
=
embb_mtapi_node_get_instance
();
if
(
embb_mtapi_task_pool_is_handle_valid
(
node
->
task_pool
,
opencl_task
->
task
))
{
if
(
embb_mtapi_task_pool_is_handle_valid
(
node
->
task_pool
,
opencl_task
->
task
))
{
embb_mtapi_task_t
*
local_task
=
embb_mtapi_task_t
*
local_task
=
embb_mtapi_task_pool_get_storage_for_handle
(
node
->
task_pool
,
opencl_task
->
task
);
embb_mtapi_task_pool_get_storage_for_handle
(
node
->
task_pool
,
opencl_task
->
task
);
err
=
clWaitForEvents
(
1
,
&
opencl_task
->
kernel_finish_event
);
err
=
clWaitForEvents
(
1
,
&
opencl_task
->
kernel_finish_event
);
...
@@ -126,47 +128,67 @@ static void opencl_task_start(
...
@@ -126,47 +128,67 @@ static void opencl_task_start(
embb_mtapi_task_t
*
local_task
=
embb_mtapi_task_t
*
local_task
=
embb_mtapi_task_pool_get_storage_for_handle
(
node
->
task_pool
,
task
);
embb_mtapi_task_pool_get_storage_for_handle
(
node
->
task_pool
,
task
);
if
(
embb_mtapi_action_pool_is_handle_valid
(
node
->
action_pool
,
local_task
->
action
))
if
(
embb_mtapi_action_pool_is_handle_valid
(
{
node
->
action_pool
,
local_task
->
action
))
{
embb_mtapi_action_t
*
local_action
=
embb_mtapi_action_t
*
local_action
=
embb_mtapi_action_pool_get_storage_for_handle
(
node
->
action_pool
,
local_task
->
action
);
embb_mtapi_action_pool_get_storage_for_handle
(
node
->
action_pool
,
local_task
->
action
);
embb_mtapi_opencl_plugin_t
*
plugin
=
&
embb_mtapi_opencl_plugin
;
embb_mtapi_opencl_plugin_t
*
plugin
=
&
embb_mtapi_opencl_plugin
;
embb_mtapi_opencl_action_t
*
opencl_action
=
(
embb_mtapi_opencl_action_t
*
)
local_action
->
plugin_data
;
embb_mtapi_opencl_action_t
*
opencl_action
=
embb_mtapi_opencl_task_t
*
opencl_task
=
(
embb_mtapi_opencl_task_t
*
)
embb_alloc
(
sizeof
(
embb_mtapi_opencl_task_t
));
(
embb_mtapi_opencl_action_t
*
)
local_action
->
plugin_data
;
embb_mtapi_opencl_task_t
*
opencl_task
=
size_t
elements
=
local_task
->
result_size
/
opencl_action
->
element_size
;
(
embb_mtapi_opencl_task_t
*
)
embb_alloc
(
sizeof
(
embb_mtapi_opencl_task_t
));
size_t
elements
=
local_task
->
result_size
/
opencl_action
->
element_size
;
size_t
global_work_size
;
size_t
global_work_size
;
if
(
0
==
elements
)
if
(
0
==
elements
)
elements
=
1
;
elements
=
1
;
global_work_size
=
round_up
((
int
)
opencl_action
->
local_work_size
,
elements
);
global_work_size
=
round_up
((
int
)
opencl_action
->
local_work_size
,
elements
);
opencl_task
->
task
=
task
;
opencl_task
->
task
=
task
;
opencl_task
->
arguments_size
=
local_task
->
arguments_size
;
opencl_task
->
arguments_size
=
local_task
->
arguments_size
;
if
(
0
<
local_task
->
arguments_size
)
{
if
(
0
<
local_task
->
arguments_size
)
{
opencl_task
->
arguments
=
clCreateBuffer
(
plugin
->
context
,
CL_MEM_READ_ONLY
,
local_task
->
arguments_size
,
NULL
,
&
err
);
opencl_task
->
arguments
=
clCreateBuffer
(
plugin
->
context
,
CL_MEM_READ_ONLY
,
local_task
->
arguments_size
,
NULL
,
&
err
);
}
else
{
}
else
{
opencl_task
->
arguments
=
NULL
;
opencl_task
->
arguments
=
NULL
;
}
}
opencl_task
->
result_buffer_size
=
local_task
->
result_size
;
opencl_task
->
result_buffer_size
=
local_task
->
result_size
;
if
(
0
<
local_task
->
result_size
)
{
if
(
0
<
local_task
->
result_size
)
{
opencl_task
->
result_buffer
=
clCreateBuffer
(
plugin
->
context
,
CL_MEM_WRITE_ONLY
,
local_task
->
result_size
,
NULL
,
&
err
);
opencl_task
->
result_buffer
=
clCreateBuffer
(
plugin
->
context
,
CL_MEM_WRITE_ONLY
,
local_task
->
result_size
,
NULL
,
&
err
);
}
else
{
}
else
{
opencl_task
->
result_buffer
=
NULL
;
opencl_task
->
result_buffer
=
NULL
;
}
}
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
0
,
sizeof
(
cl_mem
),
(
const
void
*
)
&
opencl_task
->
arguments
);
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
0
,
sizeof
(
cl_mem
),
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
1
,
sizeof
(
cl_int
),
(
const
void
*
)
&
opencl_task
->
arguments_size
);
(
const
void
*
)
&
opencl_task
->
arguments
);
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
1
,
sizeof
(
cl_int
),
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
2
,
sizeof
(
cl_mem
),
(
const
void
*
)
&
opencl_task
->
result_buffer
);
(
const
void
*
)
&
opencl_task
->
arguments_size
);
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
3
,
sizeof
(
cl_int
),
(
const
void
*
)
&
opencl_task
->
result_buffer_size
);
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
2
,
sizeof
(
cl_mem
),
err
=
clEnqueueWriteBuffer
(
plugin
->
command_queue
,
opencl_task
->
arguments
,
CL_FALSE
,
0
,
opencl_task
->
arguments_size
,
local_task
->
arguments
,
0
,
NULL
,
NULL
);
(
const
void
*
)
&
opencl_task
->
result_buffer
);
err
=
clEnqueueNDRangeKernel
(
plugin
->
command_queue
,
opencl_action
->
kernel
,
1
,
NULL
,
&
global_work_size
,
&
opencl_action
->
local_work_size
,
0
,
NULL
,
NULL
);
err
=
clSetKernelArg
(
opencl_action
->
kernel
,
3
,
sizeof
(
cl_int
),
err
=
clEnqueueReadBuffer
(
plugin
->
command_queue
,
opencl_task
->
result_buffer
,
CL_FALSE
,
0
,
opencl_task
->
result_buffer_size
,
local_task
->
result_buffer
,
0
,
NULL
,
&
opencl_task
->
kernel_finish_event
);
(
const
void
*
)
&
opencl_task
->
result_buffer_size
);
err
=
clSetEventCallback
(
opencl_task
->
kernel_finish_event
,
CL_COMPLETE
,
opencl_task_complete
,
opencl_task
);
err
=
clEnqueueWriteBuffer
(
plugin
->
command_queue
,
opencl_task
->
arguments
,
CL_FALSE
,
0
,
opencl_task
->
arguments_size
,
local_task
->
arguments
,
0
,
NULL
,
NULL
);
err
=
clEnqueueNDRangeKernel
(
plugin
->
command_queue
,
opencl_action
->
kernel
,
1
,
NULL
,
&
global_work_size
,
&
opencl_action
->
local_work_size
,
0
,
NULL
,
NULL
);
err
=
clEnqueueReadBuffer
(
plugin
->
command_queue
,
opencl_task
->
result_buffer
,
CL_FALSE
,
0
,
opencl_task
->
result_buffer_size
,
local_task
->
result_buffer
,
0
,
NULL
,
&
opencl_task
->
kernel_finish_event
);
err
=
clSetEventCallback
(
opencl_task
->
kernel_finish_event
,
CL_COMPLETE
,
opencl_task_complete
,
opencl_task
);
err
=
clFlush
(
plugin
->
command_queue
);
err
=
clFlush
(
plugin
->
command_queue
);
embb_mtapi_task_set_state
(
local_task
,
MTAPI_TASK_RUNNING
);
embb_mtapi_task_set_state
(
local_task
,
MTAPI_TASK_RUNNING
);
...
@@ -198,10 +220,10 @@ static void opencl_action_finalize(
...
@@ -198,10 +220,10 @@ static void opencl_action_finalize(
if
(
embb_mtapi_node_is_initialized
())
{
if
(
embb_mtapi_node_is_initialized
())
{
embb_mtapi_node_t
*
node
=
embb_mtapi_node_get_instance
();
embb_mtapi_node_t
*
node
=
embb_mtapi_node_get_instance
();
if
(
embb_mtapi_action_pool_is_handle_valid
(
node
->
action_pool
,
action
))
if
(
embb_mtapi_action_pool_is_handle_valid
(
node
->
action_pool
,
action
))
{
{
embb_mtapi_action_t
*
local_action
=
embb_mtapi_action_t
*
local_action
=
embb_mtapi_action_pool_get_storage_for_handle
(
node
->
action_pool
,
action
);
embb_mtapi_action_pool_get_storage_for_handle
(
node
->
action_pool
,
action
);
embb_mtapi_opencl_action_t
*
opencl_action
=
embb_mtapi_opencl_action_t
*
opencl_action
=
(
embb_mtapi_opencl_action_t
*
)
local_action
->
plugin_data
;
(
embb_mtapi_opencl_action_t
*
)
local_action
->
plugin_data
;
if
(
NULL
!=
opencl_action
->
node_local_data
)
{
if
(
NULL
!=
opencl_action
->
node_local_data
)
{
...
@@ -231,13 +253,18 @@ void mtapi_opencl_plugin_initialize(
...
@@ -231,13 +253,18 @@ void mtapi_opencl_plugin_initialize(
embb_mtapi_opencl_link_at_runtime
();
embb_mtapi_opencl_link_at_runtime
();
err
=
clGetPlatformIDs
(
1
,
&
plugin
->
platform_id
,
NULL
);
err
=
clGetPlatformIDs
(
1
,
&
plugin
->
platform_id
,
NULL
);
err
=
clGetDeviceIDs
(
plugin
->
platform_id
,
CL_DEVICE_TYPE_DEFAULT
,
1
,
&
plugin
->
device_id
,
NULL
);
err
=
clGetDeviceIDs
(
plugin
->
platform_id
,
CL_DEVICE_TYPE_DEFAULT
,
plugin
->
context
=
clCreateContext
(
NULL
,
1
,
&
plugin
->
device_id
,
NULL
,
NULL
,
&
err
);
1
,
&
plugin
->
device_id
,
NULL
);
plugin
->
context
=
clCreateContext
(
NULL
,
1
,
&
plugin
->
device_id
,
NULL
,
NULL
,
&
err
);
err
=
clGetDeviceInfo
(
plugin
->
device_id
,
CL_DEVICE_MAX_WORK_GROUP_SIZE
,
sizeof
(
cl_uint
),
&
plugin
->
work_group_size
,
NULL
);
err
=
clGetDeviceInfo
(
plugin
->
device_id
,
CL_DEVICE_MAX_WORK_GROUP_SIZE
,
err
=
clGetDeviceInfo
(
plugin
->
device_id
,
CL_DEVICE_MAX_WORK_ITEM_SIZES
,
3
*
sizeof
(
cl_uint
),
&
plugin
->
work_item_sizes
[
0
],
NULL
);
sizeof
(
cl_uint
),
&
plugin
->
work_group_size
,
NULL
);
err
=
clGetDeviceInfo
(
plugin
->
device_id
,
CL_DEVICE_MAX_WORK_ITEM_SIZES
,
3
*
sizeof
(
cl_uint
),
&
plugin
->
work_item_sizes
[
0
],
NULL
);
plugin
->
command_queue
=
clCreateCommandQueue
(
plugin
->
context
,
plugin
->
device_id
,
0
,
&
err
);
plugin
->
command_queue
=
clCreateCommandQueue
(
plugin
->
context
,
plugin
->
device_id
,
0
,
&
err
);
local_status
=
MTAPI_SUCCESS
;
local_status
=
MTAPI_SUCCESS
;
mtapi_status_set
(
status
,
local_status
);
mtapi_status_set
(
status
,
local_status
);
...
@@ -271,7 +298,9 @@ mtapi_action_hndl_t mtapi_opencl_action_create(
...
@@ -271,7 +298,9 @@ mtapi_action_hndl_t mtapi_opencl_action_create(
cl_int
err
;
cl_int
err
;
embb_mtapi_opencl_plugin_t
*
plugin
=
&
embb_mtapi_opencl_plugin
;
embb_mtapi_opencl_plugin_t
*
plugin
=
&
embb_mtapi_opencl_plugin
;
embb_mtapi_opencl_action_t
*
action
=
(
embb_mtapi_opencl_action_t
*
)
embb_alloc
(
sizeof
(
embb_mtapi_opencl_action_t
));
embb_mtapi_opencl_action_t
*
action
=
(
embb_mtapi_opencl_action_t
*
)
embb_alloc
(
sizeof
(
embb_mtapi_opencl_action_t
));
mtapi_action_hndl_t
action_hndl
;
mtapi_action_hndl_t
action_hndl
;
size_t
kernel_length
=
strlen
(
kernel_source
);
size_t
kernel_length
=
strlen
(
kernel_source
);
...
@@ -279,24 +308,32 @@ mtapi_action_hndl_t mtapi_opencl_action_create(
...
@@ -279,24 +308,32 @@ mtapi_action_hndl_t mtapi_opencl_action_create(
action
->
element_size
=
element_size
;
action
->
element_size
=
element_size
;
/* initialization */
/* initialization */
action
->
program
=
clCreateProgramWithSource
(
plugin
->
context
,
1
,
&
kernel_source
,
&
kernel_length
,
&
err
);
action
->
program
=
clCreateProgramWithSource
(
plugin
->
context
,
err
=
clBuildProgram
(
action
->
program
,
1
,
&
plugin
->
device_id
,
NULL
,
NULL
,
NULL
);
1
,
&
kernel_source
,
&
kernel_length
,
&
err
);
err
=
clBuildProgram
(
action
->
program
,
1
,
&
plugin
->
device_id
,
NULL
,
NULL
,
NULL
);
if
(
CL_SUCCESS
!=
err
)
{
if
(
CL_SUCCESS
!=
err
)
{
err
=
clGetProgramBuildInfo
(
action
->
program
,
plugin
->
device_id
,
CL_PROGRAM_BUILD_LOG
,
1024
,
buffer
,
NULL
);
err
=
clGetProgramBuildInfo
(
action
->
program
,
plugin
->
device_id
,
CL_PROGRAM_BUILD_LOG
,
1024
,
buffer
,
NULL
);
}
}
action
->
kernel
=
clCreateKernel
(
action
->
program
,
kernel_name
,
&
err
);
action
->
kernel
=
clCreateKernel
(
action
->
program
,
kernel_name
,
&
err
);
if
(
0
<
node_local_data_size
)
{
if
(
0
<
node_local_data_size
)
{
action
->
node_local_data
=
clCreateBuffer
(
plugin
->
context
,
CL_MEM_READ_ONLY
,
node_local_data_size
,
NULL
,
&
err
);
action
->
node_local_data
=
clCreateBuffer
(
plugin
->
context
,
CL_MEM_READ_ONLY
,
node_local_data_size
,
NULL
,
&
err
);
action
->
node_local_data_size
=
node_local_data_size
;
action
->
node_local_data_size
=
node_local_data_size
;
err
=
clEnqueueWriteBuffer
(
plugin
->
command_queue
,
action
->
node_local_data
,
CL_TRUE
,
0
,
action
->
node_local_data_size
,
node_local_data
,
0
,
NULL
,
NULL
);
err
=
clEnqueueWriteBuffer
(
plugin
->
command_queue
,
action
->
node_local_data
,
CL_TRUE
,
0
,
action
->
node_local_data_size
,
node_local_data
,
0
,
NULL
,
NULL
);
}
else
{
}
else
{
action
->
node_local_data
=
NULL
;
action
->
node_local_data
=
NULL
;
action
->
node_local_data_size
=
0
;
action
->
node_local_data_size
=
0
;
}
}
err
=
clSetKernelArg
(
action
->
kernel
,
4
,
sizeof
(
cl_mem
),
(
const
void
*
)
&
action
->
node_local_data
);
err
=
clSetKernelArg
(
action
->
kernel
,
4
,
sizeof
(
cl_mem
),
err
=
clSetKernelArg
(
action
->
kernel
,
5
,
sizeof
(
cl_int
),
(
const
void
*
)
&
action
->
node_local_data_size
);
(
const
void
*
)
&
action
->
node_local_data
);
err
=
clSetKernelArg
(
action
->
kernel
,
5
,
sizeof
(
cl_int
),
(
const
void
*
)
&
action
->
node_local_data_size
);
action_hndl
=
mtapi_ext_plugin_action_create
(
action_hndl
=
mtapi_ext_plugin_action_create
(
job_id
,
job_id
,
...
...
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