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
f2a33b6a
Commit
f2a33b6a
authored
Jul 25, 2014
by
Marian Triebe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change include paths to match with libcaf
parent
6a73d53c
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
41 additions
and
41 deletions
+41
-41
libcaf_opencl/caf/opencl/actor_facade.hpp
libcaf_opencl/caf/opencl/actor_facade.hpp
+15
-15
libcaf_opencl/caf/opencl/command.hpp
libcaf_opencl/caf/opencl/command.hpp
+6
-6
libcaf_opencl/caf/opencl/device_info.hpp
libcaf_opencl/caf/opencl/device_info.hpp
+3
-3
libcaf_opencl/caf/opencl/global.hpp
libcaf_opencl/caf/opencl/global.hpp
+2
-2
libcaf_opencl/caf/opencl/opencl_metainfo.hpp
libcaf_opencl/caf/opencl/opencl_metainfo.hpp
+8
-8
libcaf_opencl/caf/opencl/program.hpp
libcaf_opencl/caf/opencl/program.hpp
+2
-2
libcaf_opencl/src/global.cpp
libcaf_opencl/src/global.cpp
+1
-1
libcaf_opencl/src/opencl_metainfo.cpp
libcaf_opencl/src/opencl_metainfo.cpp
+1
-1
libcaf_opencl/src/program.cpp
libcaf_opencl/src/program.cpp
+3
-3
No files found.
libcaf_opencl/caf/opencl/actor_facade.hpp
View file @
f2a33b6a
...
@@ -25,21 +25,21 @@
...
@@ -25,21 +25,21 @@
#include <algorithm>
#include <algorithm>
#include <stdexcept>
#include <stdexcept>
#include "c
ppa/cppa
.hpp"
#include "c
af/all
.hpp"
#include "c
ppa
/channel.hpp"
#include "c
af
/channel.hpp"
#include "c
ppa
/to_string.hpp"
#include "c
af
/to_string.hpp"
#include "c
ppa
/tuple_cast.hpp"
#include "c
af
/tuple_cast.hpp"
#include "c
ppa
/intrusive_ptr.hpp"
#include "c
af
/intrusive_ptr.hpp"
#include "c
ppa/ut
il/int_list.hpp"
#include "c
af/deta
il/int_list.hpp"
#include "c
ppa/ut
il/type_list.hpp"
#include "c
af/deta
il/type_list.hpp"
#include "c
ppa/ut
il/limited_vector.hpp"
#include "c
af/deta
il/limited_vector.hpp"
#include "c
ppa
/opencl/global.hpp"
#include "c
af
/opencl/global.hpp"
#include "c
ppa
/opencl/command.hpp"
#include "c
af
/opencl/command.hpp"
#include "c
ppa
/opencl/program.hpp"
#include "c
af
/opencl/program.hpp"
#include "c
ppa
/opencl/smart_ptr.hpp"
#include "c
af
/opencl/smart_ptr.hpp"
namespace
caf
{
namespace
caf
{
namespace
opencl
{
namespace
opencl
{
...
@@ -56,7 +56,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
...
@@ -56,7 +56,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
public:
public:
typedef
cow_tuple
<
typename
ut
il
::
rm_const_and_ref
<
Args
>::
type
...
>
typedef
cow_tuple
<
typename
deta
il
::
rm_const_and_ref
<
Args
>::
type
...
>
args_tuple
;
args_tuple
;
typedef
std
::
function
<
optional
<
args_tuple
>
(
any_tuple
)
>
arg_mapping
;
typedef
std
::
function
<
optional
<
args_tuple
>
(
any_tuple
)
>
arg_mapping
;
...
@@ -109,7 +109,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
...
@@ -109,7 +109,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
void
enqueue
(
msg_hdr_cref
hdr
,
any_tuple
msg
,
execution_unit
*
)
override
{
void
enqueue
(
msg_hdr_cref
hdr
,
any_tuple
msg
,
execution_unit
*
)
override
{
CPPA_LOG_TRACE
(
""
);
CPPA_LOG_TRACE
(
""
);
typename
util
::
il_indices
<
ut
il
::
type_list
<
Args
...
>>::
type
indices
;
typename
detail
::
il_indices
<
deta
il
::
type_list
<
Args
...
>>::
type
indices
;
enqueue_impl
(
hdr
.
sender
,
std
::
move
(
msg
),
hdr
.
id
,
indices
);
enqueue_impl
(
hdr
.
sender
,
std
::
move
(
msg
),
hdr
.
id
,
indices
);
}
}
...
@@ -138,7 +138,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
...
@@ -138,7 +138,7 @@ class actor_facade<Ret(Args...)> : public abstract_actor {
template
<
long
...
Is
>
template
<
long
...
Is
>
void
enqueue_impl
(
const
actor_addr
&
sender
,
any_tuple
msg
,
message_id
id
,
void
enqueue_impl
(
const
actor_addr
&
sender
,
any_tuple
msg
,
message_id
id
,
ut
il
::
int_list
<
Is
...
>
)
{
deta
il
::
int_list
<
Is
...
>
)
{
auto
opt
=
m_map_args
(
std
::
move
(
msg
));
auto
opt
=
m_map_args
(
std
::
move
(
msg
));
if
(
opt
)
{
if
(
opt
)
{
response_promise
handle
{
this
->
address
(),
sender
,
id
.
response_id
()};
response_promise
handle
{
this
->
address
(),
sender
,
id
.
response_id
()};
...
...
libcaf_opencl/caf/opencl/command.hpp
View file @
f2a33b6a
...
@@ -25,12 +25,12 @@
...
@@ -25,12 +25,12 @@
#include <algorithm>
#include <algorithm>
#include <functional>
#include <functional>
#include "c
ppa
/logging.hpp"
#include "c
af
/logging.hpp"
#include "c
ppa
/opencl/global.hpp"
#include "c
af
/opencl/global.hpp"
#include "c
ppa
/abstract_actor.hpp"
#include "c
af
/abstract_actor.hpp"
#include "c
ppa
/response_promise.hpp"
#include "c
af
/response_promise.hpp"
#include "c
ppa
/opencl/smart_ptr.hpp"
#include "c
af
/opencl/smart_ptr.hpp"
#include "c
ppa/ut
il/scope_guard.hpp"
#include "c
af/deta
il/scope_guard.hpp"
namespace
caf
{
namespace
caf
{
namespace
opencl
{
namespace
opencl
{
...
...
libcaf_opencl/caf/opencl/device_info.hpp
View file @
f2a33b6a
...
@@ -20,9 +20,9 @@
...
@@ -20,9 +20,9 @@
#ifndef CAF_OPENCL_DEVICE_INFO_HPP
#ifndef CAF_OPENCL_DEVICE_INFO_HPP
#define CAF_OPENCL_DEVICE_INFO_HPP
#define CAF_OPENCL_DEVICE_INFO_HPP
#include "c
ppa
/opencl/global.hpp"
#include "c
af
/opencl/global.hpp"
#include "c
ppa
/opencl/program.hpp"
#include "c
af
/opencl/program.hpp"
#include "c
ppa
/opencl/smart_ptr.hpp"
#include "c
af
/opencl/smart_ptr.hpp"
namespace
caf
{
namespace
caf
{
namespace
opencl
{
namespace
opencl
{
...
...
libcaf_opencl/caf/opencl/global.hpp
View file @
f2a33b6a
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#include <string>
#include <string>
#include "c
ppa/ut
il/limited_vector.hpp"
#include "c
af/deta
il/limited_vector.hpp"
#if defined __APPLE__ || defined(MACOSX)
#if defined __APPLE__ || defined(MACOSX)
#include <OpenCL/opencl.h>
#include <OpenCL/opencl.h>
...
@@ -36,7 +36,7 @@ namespace opencl {
...
@@ -36,7 +36,7 @@ namespace opencl {
/**
/**
* @brief A vector of up to three elements used for OpenCL dimensions.
* @brief A vector of up to three elements used for OpenCL dimensions.
*/
*/
typedef
ut
il
::
limited_vector
<
size_t
,
3
>
dim_vec
;
typedef
deta
il
::
limited_vector
<
size_t
,
3
>
dim_vec
;
std
::
string
get_opencl_error
(
cl_int
err
);
std
::
string
get_opencl_error
(
cl_int
err
);
...
...
libcaf_opencl/caf/opencl/opencl_metainfo.hpp
View file @
f2a33b6a
...
@@ -25,16 +25,16 @@
...
@@ -25,16 +25,16 @@
#include <algorithm>
#include <algorithm>
#include <functional>
#include <functional>
#include "c
ppa/cppa
.hpp"
#include "c
af/all
.hpp"
#include "c
ppa
/opencl/global.hpp"
#include "c
af
/opencl/global.hpp"
#include "c
ppa
/opencl/program.hpp"
#include "c
af
/opencl/program.hpp"
#include "c
ppa
/opencl/smart_ptr.hpp"
#include "c
af
/opencl/smart_ptr.hpp"
#include "c
ppa
/opencl/device_info.hpp"
#include "c
af
/opencl/device_info.hpp"
#include "c
ppa
/opencl/actor_facade.hpp"
#include "c
af
/opencl/actor_facade.hpp"
#include "c
ppa
/detail/singleton_mixin.hpp"
#include "c
af
/detail/singleton_mixin.hpp"
#include "c
ppa
/detail/singleton_manager.hpp"
#include "c
af
/detail/singleton_manager.hpp"
namespace
caf
{
namespace
caf
{
namespace
opencl
{
namespace
opencl
{
...
...
libcaf_opencl/caf/opencl/program.hpp
View file @
f2a33b6a
...
@@ -22,8 +22,8 @@
...
@@ -22,8 +22,8 @@
#include <memory>
#include <memory>
#include "c
ppa
/opencl/global.hpp"
#include "c
af
/opencl/global.hpp"
#include "c
ppa
/opencl/smart_ptr.hpp"
#include "c
af
/opencl/smart_ptr.hpp"
namespace
caf
{
namespace
caf
{
namespace
opencl
{
namespace
opencl
{
...
...
libcaf_opencl/src/global.cpp
View file @
f2a33b6a
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "c
ppa
/opencl/global.hpp"
#include "c
af
/opencl/global.hpp"
namespace
caf
{
namespace
caf
{
namespace
opencl
{
namespace
opencl
{
...
...
libcaf_opencl/src/opencl_metainfo.cpp
View file @
f2a33b6a
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
* http://www.boost.org/LICENSE_1_0.txt. *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
******************************************************************************/
#include "c
ppa
/opencl/opencl_metainfo.hpp"
#include "c
af
/opencl/opencl_metainfo.hpp"
using
namespace
std
;
using
namespace
std
;
...
...
libcaf_opencl/src/program.cpp
View file @
f2a33b6a
...
@@ -22,9 +22,9 @@
...
@@ -22,9 +22,9 @@
#include <cstring>
#include <cstring>
#include <iostream>
#include <iostream>
#include "c
ppa
/singletons.hpp"
#include "c
af
/singletons.hpp"
#include "c
ppa
/opencl/program.hpp"
#include "c
af
/opencl/program.hpp"
#include "c
ppa
/opencl/opencl_metainfo.hpp"
#include "c
af
/opencl/opencl_metainfo.hpp"
using
namespace
std
;
using
namespace
std
;
...
...
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