Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
typon
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tom Niget
typon
Commits
5b626121
Commit
5b626121
authored
May 10, 2022
by
Xavier Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
deque.hpp: claim stolen slot before reading it
parent
2f66baef
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
13 deletions
+25
-13
rt/include/typon/core/scheduler.hpp
rt/include/typon/core/scheduler.hpp
+8
-8
rt/include/typon/fundamental/deque.hpp
rt/include/typon/fundamental/deque.hpp
+17
-5
No files found.
rt/include/typon/core/scheduler.hpp
View file @
5b626121
...
...
@@ -32,7 +32,7 @@ namespace typon
std
::
vector
<
std
::
thread
>
_thread
;
std
::
atomic_bool
_done
{
false
};
fdt
::
lock_free
::
event_count
<>
_notifyer
;
const
uint
_
parallelism
;
const
uint
_
concurrency
;
static
Scheduler
&
get
()
noexcept
{
...
...
@@ -57,13 +57,13 @@ namespace typon
return
get
().
_deque
[
thread_id
].
pop
();
}
Scheduler
(
uint
parallelism
)
noexcept
:
_deque
(
parallelism
+
1
)
,
_
parallelism
(
parallelism
)
Scheduler
(
uint
concurrency
)
noexcept
:
_deque
(
concurrency
+
1
,
Deque
(
concurrency
+
1
)
)
,
_
concurrency
(
concurrency
)
{
thread_id
=
parallelism
;
thread_id
=
concurrency
;
for
(
uint
id
=
0
;
id
<
parallelism
;
id
++
)
for
(
uint
id
=
0
;
id
<
concurrency
;
id
++
)
{
_thread
.
emplace_back
([
this
,
id
]()
{
thread_id
=
id
;
...
...
@@ -117,9 +117,9 @@ namespace typon
void
explore_task
(
Task
&
task
)
noexcept
{
for
(
uint
i
=
0
;
i
<
_
parallelism
*
2
+
1
;
i
++
)
for
(
uint
i
=
0
;
i
<
_
concurrency
*
2
+
1
;
i
++
)
{
uint
id
=
fdt
::
random
::
random
()
%
_
parallelism
;
uint
id
=
fdt
::
random
::
random
()
%
_
concurrency
;
if
(
id
==
thread_id
)
{
task
=
_deque
.
back
().
steal
();
...
...
rt/include/typon/fundamental/deque.hpp
View file @
5b626121
...
...
@@ -2,6 +2,7 @@
#define TYPON_FUNDAMENTAL_DEQUE_HPP_INCLUDED
#include <atomic>
#include <bit>
#include <cstdint>
#include <memory>
#include <type_traits>
...
...
@@ -32,9 +33,16 @@ namespace typon::fdt::lock_free
std
::
atomic
<
u64
>
_top
{
1
};
std
::
atomic
<
u64
>
_bottom
{
1
};
std
::
atomic
<
array_type
*>
_array
;
const
unsigned
int
_concurrency
;
deque
(
u8
bits
=
2
)
noexcept
:
_array
(
new
array_type
(
bits
))
deque
(
unsigned
int
concurrency
)
noexcept
:
_array
(
new
array_type
(
std
::
bit_width
(
concurrency
)
+
1
))
,
_concurrency
(
concurrency
)
{}
deque
(
const
deque
&
other
)
noexcept
:
_array
(
new
array_type
(
std
::
bit_width
(
other
.
_concurrency
)
+
1
))
,
_concurrency
(
other
.
_concurrency
)
{}
~
deque
()
...
...
@@ -47,7 +55,7 @@ namespace typon::fdt::lock_free
u64
bottom
=
_bottom
.
load
(
relaxed
);
u64
top
=
_top
.
load
(
acquire
);
array_type
*
array
=
_array
.
load
(
relaxed
);
if
(
bottom
-
top
>
array
->
capacity
()
-
1
)
if
(
bottom
-
top
>
array
->
capacity
()
-
_concurrency
)
{
array
=
array
->
grow
(
top
,
bottom
);
_array
.
store
(
array
);
...
...
@@ -92,12 +100,16 @@ namespace typon::fdt::lock_free
if
(
top
<
bottom
)
{
array_type
*
array
=
_array
.
load
(
consume
);
T
x
=
array
->
get
(
top
);
if
(
!
_top
.
compare_exchange_strong
(
top
,
top
+
1
,
seq_cst
,
relaxed
))
{
return
{
Abort
};
}
return
{
x
};
// NB: The original algorithm reads the slot before claiming it.
// We read it after. To make sure it isn't overwritten, the push
// operation leaves at least as many slots free as there are
// potentially concurrent stealers.
// This also means reading non-atomically is not a data race.
return
{
array
->
get
(
top
)
};
}
return
{
Empty
};
}
...
...
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