Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
las3_pub
/
predictable_parallel_patterns
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
7c637562
authored
Jul 31, 2019
by
FritzFlorian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for dataflow API.
parent
8d8f0ac2
Pipeline
#1290
passed with stages
in 4 minutes 4 seconds
Changes
9
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
138 additions
and
29 deletions
+138
-29
lib/pls/include/pls/dataflow/internal/function_node.h
+0
-3
lib/pls/include/pls/dataflow/internal/function_node_impl.h
+7
-13
lib/pls/include/pls/dataflow/internal/graph.h
+6
-2
test/CMakeLists.txt
+2
-1
test/algorithm_test.cpp
+1
-1
test/base_tests.cpp
+3
-3
test/data_structures_test.cpp
+4
-5
test/dataflow_test.cpp
+114
-0
test/scheduling_tests.cpp
+1
-1
No files found.
lib/pls/include/pls/dataflow/internal/function_node.h
View file @
7c637562
...
...
@@ -120,9 +120,6 @@ class function_node<inputs<I0, I...>, outputs<O0, O...>, F> : public node {
template
<
int
N
,
typename
...
OT
>
struct
propagate_output
;
template
<
typename
T
>
void
set_invocation_info
(
token
<
T
>
&
token
,
invocation_info
invocation_info
);
template
<
int
...
IS
,
int
...
OS
>
void
execute_function_internal
(
input_tuple
&
inputs
,
sequence
<
IS
...
>
,
output_tuple
&
outputs
,
sequence
<
OS
...
>
,
...
...
lib/pls/include/pls/dataflow/internal/function_node_impl.h
View file @
7c637562
...
...
@@ -59,7 +59,7 @@ template<typename I0, typename ...I, typename O0, typename ...O, typename F>
template
<
int
N
,
typename
...
OT
>
struct
function_node
<
inputs
<
I0
,
I
...
>
,
outputs
<
O0
,
O
...
>
,
F
>::
propagate_output
{
propagate_output
(
multi_out_port_type
&
,
output_tuple
&
)
{}
propagate_output
(
multi_out_port_type
&
,
output_tuple
&
,
invocation_info
&
)
{}
void
propagate
()
{}
};
template
<
typename
I0
,
typename
...
I
,
typename
O0
,
typename
...
O
,
typename
F
>
...
...
@@ -68,32 +68,26 @@ struct function_node<inputs<I0, I...>, outputs<O0, O...>, F>::
propagate_output
<
N
,
OT1
,
OT
...
>
{
multi_out_port_type
&
out_port_
;
output_tuple
&
output_tuple_
;
invocation_info
&
invocation_info_
;
propagate_output
(
multi_out_port_type
&
out_port
,
output_tuple
&
output_tuple
)
:
out_port_
{
out_port
},
output_tuple_
{
output_tuple
}
{}
propagate_output
(
multi_out_port_type
&
out_port
,
output_tuple
&
output_tuple
,
invocation_info
&
invocation_info
)
:
out_port_
{
out_port
},
output_tuple_
{
output_tuple
},
invocation_info_
{
invocation_info
}
{}
void
propagate
()
{
std
::
get
<
N
>
(
output_tuple_
).
set_invocation
(
invocation_info_
);
out_port_
.
template
get
<
N
>
().
push_token
(
std
::
get
<
N
>
(
output_tuple_
));
propagate_output
<
N
+
1
,
OT
...
>
{
out_port_
,
output_tuple_
}.
propagate
();
propagate_output
<
N
+
1
,
OT
...
>
{
out_port_
,
output_tuple_
,
invocation_info_
}.
propagate
();
}
};
template
<
typename
I0
,
typename
...
I
,
typename
O0
,
typename
...
O
,
typename
F
>
template
<
typename
T
>
void
function_node
<
inputs
<
I0
,
I
...
>
,
outputs
<
O0
,
O
...
>
,
F
>::
set_invocation_info
(
token
<
T
>
&
token
,
invocation_info
invocation_info
)
{
token
.
set_invocation
(
invocation_info
);
}
template
<
typename
I0
,
typename
...
I
,
typename
O0
,
typename
...
O
,
typename
F
>
template
<
int
...
IS
,
int
...
OS
>
void
function_node
<
inputs
<
I0
,
I
...
>
,
outputs
<
O0
,
O
...
>
,
F
>::
execute_function_internal
(
input_tuple
&
inputs
,
sequence
<
IS
...
>
,
output_tuple
&
outputs
,
sequence
<
OS
...
>
,
invocation_info
invocation_info
)
{
set_invocation_info
(
std
::
get
<
OS
>
(
outputs
)...,
invocation_info
);
function_
(
std
::
get
<
IS
>
(
inputs
).
value
()...,
std
::
get
<
OS
>
(
outputs
).
value
()...);
propagate_output
<
0
,
O0
,
O
...
>
{
out_port_
,
outputs
}.
propagate
();
propagate_output
<
0
,
O0
,
O
...
>
{
out_port_
,
outputs
,
invocation_info
}.
propagate
();
}
}
...
...
lib/pls/include/pls/dataflow/internal/graph.h
View file @
7c637562
...
...
@@ -62,7 +62,7 @@ class graph<inputs<I0, I...>, outputs<O0, O...>> : public node {
return
inputs_
.
template
get
<
POS
>
();
}
inputs_type
&
input_ports
()
{
inputs_type
&
input_ports
()
{
return
inputs_
;
}
...
...
@@ -71,7 +71,7 @@ class graph<inputs<I0, I...>, outputs<O0, O...>> : public node {
return
outputs_
.
template
get
<
POS
>
();
}
outputs_type
&
output_ports
()
{
outputs_type
&
output_ports
()
{
return
outputs_
;
}
...
...
@@ -79,6 +79,10 @@ class graph<inputs<I0, I...>, outputs<O0, O...>> : public node {
function_node
<
inputs
<
I0
,
I
...
>
,
outputs
<
OS
...
>
,
FUNC
>
&
operator
>>
(
function_node
<
inputs
<
I0
,
I
...
>
,
outputs
<
OS
...
>
,
FUNC
>
&
other_node
);
void
wait_for_all
()
{
pls
::
scheduler
::
wait_for_all
();
}
template
<
int
POS
,
typename
T
>
void
token_pushed
(
token
<
T
>
token
);
...
...
test/CMakeLists.txt
View file @
7c637562
...
...
@@ -2,5 +2,6 @@ add_executable(tests
main.cpp
data_structures_test.cpp
scheduling_tests.cpp
algorithm_test.cpp
)
algorithm_test.cpp
dataflow_test.cpp
)
target_link_libraries
(
tests catch2 pls
)
test/algorithm_test.cpp
View file @
7c637562
#include <catch.hpp>
#include <array>
#include
<pls/pls.h>
#include
"pls/pls.h"
using
namespace
pls
;
...
...
test/base_tests.cpp
View file @
7c637562
#include <catch.hpp>
#include
<pls/internal/base/thread.h>
#include
<pls/internal/base/spin_lock.h>
#include
<pls/internal/base/system_details.h>
#include
"pls/internal/base/thread.h"
#include
"pls/internal/base/spin_lock.h"
#include
"pls/internal/base/system_details.h"
#include <vector>
#include <mutex>
...
...
test/data_structures_test.cpp
View file @
7c637562
#include <catch.hpp>
#include
<pls/internal/base/system_details.h>
#include
"pls/internal/base/system_details.h"
#include
<pls/internal/data_structures/aligned_stack.h>
#include
<pls/internal/data_structures/locking_deque.h>
#include
<pls/internal/data_structures/work_stealing_deque.h>
#include
"pls/internal/data_structures/aligned_stack.h"
#include
"pls/internal/data_structures/locking_deque.h"
#include
"pls/internal/data_structures/work_stealing_deque.h"
#include <vector>
#include <mutex>
using
namespace
pls
::
internal
::
data_structures
;
...
...
test/dataflow_test.cpp
0 → 100644
View file @
7c637562
#include <catch.hpp>
#include <array>
#include <tuple>
#include "pls/pls.h"
#include "pls/dataflow/dataflow.h"
using
namespace
pls
;
using
namespace
pls
::
dataflow
;
void
step_1
(
const
int
&
in
,
int
&
out
)
{
out
=
in
*
2
;
}
class
member_call_test
{
public
:
void
step_2
(
const
int
&
in
,
int
&
out
)
{
out
=
in
*
2
;
}
};
TEST_CASE
(
"dataflow functions correctly"
,
"[dataflow/dataflow.h]"
)
{
malloc_scheduler_memory
my_scheduler_memory
{
8
,
2u
<<
12u
};
scheduler
my_scheduler
{
&
my_scheduler_memory
,
8
};
my_scheduler
.
perform_work
([]()
{
SECTION
(
"linear pipelines"
)
{
auto
step_1
=
[](
const
int
&
in
,
double
&
out1
,
double
&
out2
)
{
out1
=
(
double
)
in
/
2.0
;
out2
=
(
double
)
in
/
3.0
;
};
auto
step_2
=
[](
const
double
&
in1
,
const
double
&
in2
,
double
&
out
)
{
out
=
in1
*
in2
;
};
graph
<
inputs
<
int
>
,
outputs
<
double
>>
linear_graph
;
function_node
<
inputs
<
int
>
,
outputs
<
double
,
double
>
,
decltype
(
step_1
)
>
node_1
{
step_1
};
function_node
<
inputs
<
double
,
double
>
,
outputs
<
double
>
,
decltype
(
step_2
)
>
node_2
{
step_2
};
linear_graph
>>
node_1
>>
node_2
>>
linear_graph
;
linear_graph
.
build
();
std
::
tuple
<
double
>
out
{};
linear_graph
.
run
(
5
,
out
);
linear_graph
.
wait_for_all
();
REQUIRE
(
std
::
get
<
0
>
(
out
)
==
(
5
/
2.0
)
*
(
5
/
3.0
));
}
SECTION
(
"member and function steps"
)
{
member_call_test
instance
;
using
member_func_type
=
member_function
<
member_call_test
,
void
,
const
int
&
,
int
&>
;
member_func_type
func_1
{
&
instance
,
&
member_call_test
::
step_2
};
graph
<
inputs
<
int
>
,
outputs
<
int
>>
graph
;
function_node
<
inputs
<
int
>
,
outputs
<
int
>
,
void
(
*
)(
const
int
&
,
int
&
)
>
node_1
{
&
step_1
};
function_node
<
inputs
<
int
>
,
outputs
<
int
>
,
member_func_type
>
node_2
{
func_1
};
graph
>>
node_1
>>
node_2
>>
graph
;
graph
.
build
();
std
::
tuple
<
int
>
out
{};
graph
.
run
(
1
,
out
);
graph
.
wait_for_all
();
REQUIRE
(
std
::
get
<
0
>
(
out
)
==
4
);
}
SECTION
(
"non linear pipeline"
)
{
auto
path_one
=
[](
const
int
&
in
,
int
&
out
)
{
out
=
in
+
1
;
};
auto
path_two
=
[](
const
int
&
in
,
int
&
out
)
{
out
=
in
-
1
;
};
graph
<
inputs
<
int
,
bool
>
,
outputs
<
int
>>
graph
;
function_node
<
inputs
<
int
>
,
outputs
<
int
>
,
decltype
(
path_one
)
>
node_1
{
path_one
};
function_node
<
inputs
<
int
>
,
outputs
<
int
>
,
decltype
(
path_two
)
>
node_2
{
path_two
};
switch_node
<
int
>
switch_node
;
merge_node
<
int
>
merge_node
;
split_node
<
bool
>
split
;
// Split up boolean signal
graph
.
input
<
1
>
()
>>
split
.
value_in_port
();
// Feed switch
graph
.
input
<
0
>
()
>>
switch_node
.
value_in_port
();
split
.
out_port_1
()
>>
switch_node
.
condition_in_port
();
// True path
switch_node
.
true_out_port
()
>>
node_1
.
in_port
<
0
>
();
node_1
.
out_port
<
0
>
()
>>
merge_node
.
true_in_port
();
// False path
switch_node
.
false_out_port
()
>>
node_2
.
in_port
<
0
>
();
node_2
.
out_port
<
0
>
()
>>
merge_node
.
false_in_port
();
// Read Merge
split
.
out_port_2
()
>>
merge_node
.
condition_in_port
();
merge_node
.
value_out_port
()
>>
graph
.
output
<
0
>
();
// Build and run
graph
.
build
();
std
::
tuple
<
int
>
out1
{},
out2
{};
graph
.
run
({
0
,
true
},
out1
);
graph
.
run
({
0
,
false
},
out2
);
graph
.
wait_for_all
();
REQUIRE
(
std
::
get
<
0
>
(
out1
)
==
1
);
REQUIRE
(
std
::
get
<
0
>
(
out2
)
==
-
1
);
}
});
}
test/scheduling_tests.cpp
View file @
7c637562
#include <catch.hpp>
#include
<pls/pls.h>
#include
"pls/pls.h"
using
namespace
pls
;
...
...
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