diff --git a/ParallelTests_8cs.html b/ParallelTests_8cs.html index 0c289f39..dcf333a3 100644 --- a/ParallelTests_8cs.html +++ b/ParallelTests_8cs.html @@ -78,8 +78,8 @@
diff --git a/annotated.html b/annotated.html
index 1d6f9f25..67fe92aa 100644
--- a/annotated.html
+++ b/annotated.html
@@ -96,7 +96,7 @@
CForAction | Class encapsulating all of the possible callbacks in a Parallel.For-style loop. This includes Parallel.For, Parallel.ForReduction<T>, Parallel.ForCollapse, and Parallel.ForReductionCollapse<T> | ▼NDotMPTests | CSerial | Custom scheduler which runs a for loop in serial | |
This is the complete list of members for Serial, including all inherited members.
+This is the complete list of members for DotMPTests.Serial, including all inherited members.
end | Serial | private |
executed | Serial | private |
LoopInit(int start, int end, uint num_threads, uint chunk_size) | Serial | inline |
LoopNext(int thread_id, out int start, out int end) | Serial | inline |
start | Serial | private |
end | DotMPTests.Serial | private |
executed | DotMPTests.Serial | private |
LoopInit(int start, int end, uint num_threads, uint chunk_size) | DotMPTests.Serial | inline |
LoopNext(int thread_id, out int start, out int end) | DotMPTests.Serial | inline |
start | DotMPTests.Serial | private |
Custom scheduler which runs a for loop in serial. - More...
+ More...Public Member Functions | |
void | LoopInit (int start, int end, uint num_threads, uint chunk_size) |
Initializes the loop. More... | |
void | LoopNext (int thread_id, out int start, out int end) |
Runs the whole loop if the thread ID is 0. More... | |
void | LoopInit (int start, int end, uint num_threads, uint chunk_size) |
Initializes the loop. More... | |
void | LoopNext (int thread_id, out int start, out int end) |
Runs the whole loop if the thread ID is 0. More... | |
Private Attributes | |
int | start |
Start of the loop, inclusive. More... | |
int | end |
End of the loop, exclusive. More... | |
bool | executed |
Determines if the loop has already been executed. More... | |
int | start |
Start of the loop, inclusive. More... | |
int | end |
End of the loop, exclusive. More... | |
bool | executed |
Determines if the loop has already been executed. More... | |
Custom scheduler which runs a for loop in serial.
void Serial.LoopInit | +void DotMPTests.Serial.LoopInit | ( | int | start, | @@ -176,8 +180,8 @@
void Serial.LoopNext | +void DotMPTests.Serial.LoopNext | ( | int | thread_id, | @@ -231,8 +235,8 @@
int Serial.end | +int DotMPTests.Serial.end |
bool Serial.executed | +bool DotMPTests.Serial.executed |
int Serial.start | +int DotMPTests.Serial.start |
class | ParallelTests |
Tests for the DotMP library. More... | |
class | Serial |
Custom scheduler which runs a for loop in serial. More... | |