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
8e08b12b
Commit
8e08b12b
authored
Nov 29, 2017
by
Joseph Noir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix response promise usage with OpenCL actors
parent
6c0f3d70
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
libcaf_opencl/caf/opencl/actor_facade.hpp
libcaf_opencl/caf/opencl/actor_facade.hpp
+6
-2
No files found.
libcaf_opencl/caf/opencl/actor_facade.hpp
View file @
8e08b12b
...
...
@@ -49,7 +49,7 @@ namespace opencl {
class
manager
;
template
<
bool
PassConfig
,
class
...
Ts
>
class
actor_facade
:
public
monitorable
_actor
{
class
actor_facade
:
public
local
_actor
{
public:
using
arg_types
=
detail
::
type_list
<
Ts
...
>
;
using
unpacked_types
=
typename
detail
::
tl_map
<
arg_types
,
extract_type
>::
type
;
...
...
@@ -185,7 +185,7 @@ public:
detail
::
raw_kernel_ptr
kernel
,
nd_range
range
,
input_mapping
map_args
,
output_mapping
map_result
,
std
::
tuple
<
Ts
...
>
xs
)
:
monitorable
_actor
(
actor_conf
),
:
local
_actor
(
actor_conf
),
kernel_
(
std
::
move
(
kernel
)),
program_
(
prog
->
program_
),
context_
(
prog
->
context_
),
...
...
@@ -459,6 +459,10 @@ public:
return
true
;
}
void
launch
(
execution_unit
*
,
bool
,
bool
)
override
{
CAF_RAISE_ERROR
(
"launch of the actor facade should not be called"
);
}
detail
::
raw_kernel_ptr
kernel_
;
detail
::
raw_program_ptr
program_
;
detail
::
raw_context_ptr
context_
;
...
...
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