Commit 2c330080 authored by Davis King's avatar Davis King

Changed default parallel_for chunk size to 8 instead of 4.

parent 8ef6863a
......@@ -79,7 +79,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long, long),
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -121,7 +121,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long, long),
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -145,7 +145,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -169,7 +169,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -195,7 +195,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long),
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -220,7 +220,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long),
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -244,7 +244,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......@@ -268,7 +268,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
)
{
// make sure requires clause is not broken
......
......@@ -17,7 +17,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long, long),
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -52,7 +52,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long, long),
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -72,7 +72,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -106,7 +106,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -128,7 +128,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long),
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -157,7 +157,7 @@ namespace dlib
long end,
T& obj,
void (T::*funct)(long),
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -177,7 +177,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......@@ -204,7 +204,7 @@ namespace dlib
long begin,
long end,
const T& funct,
long chunks_per_thread = 4
long chunks_per_thread = 8
);
/*!
requires
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment