Detailed Description
the interface functions for openmp
Definition in file tpi_openmp.c.
Go to the source code of this file.
Data Structures | |
struct | SCIP_Job |
struct | SCIP_JobQueue |
struct | SCIP_JobQueues |
Typedefs | |
typedef struct SCIP_JobQueue | SCIP_JOBQUEUE |
typedef struct SCIP_JobQueues | SCIP_JOBQUEUES |
Functions | |
static SCIP_RETCODE | createJobQueue (int nthreads, int qsize, SCIP_Bool blockwhenfull) |
static SCIP_RETCODE | freeJobQueue (void) |
static void | executeJob (SCIP_JOB *job) |
static void | jobQueueProcessJob (void) |
static SCIP_RETCODE | jobQueueAddJob (SCIP_JOB *newjob) |
SCIP_RETCODE | SCIPtpiSignalCondition (SCIP_CONDITION *condition) |
SCIP_RETCODE | SCIPtpiBroadcastCondition (SCIP_CONDITION *condition) |
SCIP_RETCODE | SCIPtpiWaitCondition (SCIP_CONDITION *condition, SCIP_LOCK *lock) |
int | SCIPtpiGetNumThreads () |
int | SCIPtpiGetThreadNum () |
SCIP_RETCODE | SCIPtpiCreateJob (SCIP_JOB **job, int jobid, SCIP_RETCODE(*jobfunc)(void *args), void *jobarg) |
int | SCIPtpiGetNewJobID (void) |
SCIP_RETCODE | SCIPtpiSumbitJob (SCIP_JOB *job, SCIP_SUBMITSTATUS *status) |
static SCIP_Bool | isJobRunning (int jobid) |
static SCIP_Bool | isJobWaiting (int jobid) |
SCIP_RETCODE | SCIPtpiCollectJobs (int jobid) |
SCIP_RETCODE | SCIPtpiInit (int nthreads, int queuesize, SCIP_Bool blockwhenfull) |
SCIP_RETCODE | SCIPtpiExit (void) |
Typedef Documentation
◆ SCIP_JOBQUEUE
typedef struct SCIP_JobQueue SCIP_JOBQUEUE |
Definition at line 45 of file tpi_openmp.c.
◆ SCIP_JOBQUEUES
typedef struct SCIP_JobQueues SCIP_JOBQUEUES |
Definition at line 57 of file tpi_openmp.c.
Function Documentation
◆ createJobQueue()
|
static |
- Parameters
-
nthreads the number of threads qsize the queue size blockwhenfull should the queue be blocked from new jobs when full
Definition at line 64 of file tpi_openmp.c.
References BMSallocMemory, SCIP_ALLOC, and SCIP_UNUSED.
◆ freeJobQueue()
|
static |
Definition at line 101 of file tpi_openmp.c.
◆ executeJob()
|
static |
- Parameters
-
job the job to be executed in parallel
Definition at line 118 of file tpi_openmp.c.
References SCIP_CALL_ABORT, SCIPtpiAcquireLock(), and SCIPtpiGetThreadNum().
◆ jobQueueProcessJob()
|
static |
this is a job that will be executed on to process the job queue
The job will only be added when the number of active jobs is equal to the number of threads. As such, there will always be number of threads + 1 tasks available for the scheduler to run.
Definition at line 162 of file tpi_openmp.c.
References SCIP_CALL_ABORT, and SCIPtpiAcquireLock().
◆ jobQueueAddJob()
|
static |
adding a job to the job queue.
This gives some more flexibility in the handling of new jobs. IMPORTANT: This function MUST be called from within a mutex.
Definition at line 210 of file tpi_openmp.c.
References SCIP_Job::nextjob, NULL, SCIP_CALL, and SCIPtpiAcquireLock().
◆ SCIPtpiSignalCondition()
SCIP_RETCODE SCIPtpiSignalCondition | ( | SCIP_CONDITION * | condition | ) |
signals one waiting thread
- Parameters
-
condition the condition variable to signal
Definition at line 261 of file tpi_openmp.c.
References SCIP_CALL, SCIP_OKAY, SCIPtpiAcquireLock(), and SCIPtpiReleaseLock().
Referenced by jobQueueAddJob().
◆ SCIPtpiBroadcastCondition()
SCIP_RETCODE SCIPtpiBroadcastCondition | ( | SCIP_CONDITION * | condition | ) |
signals all waiting threads
- Parameters
-
condition the condition variable to broadcast
Definition at line 275 of file tpi_openmp.c.
References SCIP_CALL, SCIP_OKAY, SCIPtpiAcquireLock(), and SCIPtpiReleaseLock().
Referenced by freeThreadPool(), and SCIPsyncstoreFinishSync().
◆ SCIPtpiWaitCondition()
SCIP_RETCODE SCIPtpiWaitCondition | ( | SCIP_CONDITION * | condition, |
SCIP_LOCK * | lock | ||
) |
waits on a condition variable. The given lock must be held by the caller and will be held when this function returns.
- Parameters
-
condition the condition variable to wait on lock the lock that is held by the caller
Definition at line 287 of file tpi_openmp.c.
References SCIP_CALL, SCIP_OKAY, SCIPtpiAcquireLock(), and SCIPtpiReleaseLock().
Referenced by freeThreadPool(), and SCIPsyncstoreEnsureAllSynced().
◆ SCIPtpiGetNumThreads()
int SCIPtpiGetNumThreads | ( | void | ) |
Returns the number of threads
Definition at line 325 of file tpi_openmp.c.
◆ SCIPtpiGetThreadNum()
int SCIPtpiGetThreadNum | ( | void | ) |
Returns the thread number
Definition at line 332 of file tpi_openmp.c.
Referenced by applyBoundChanges(), execConcsolver(), and executeJob().
◆ SCIPtpiCreateJob()
SCIP_RETCODE SCIPtpiCreateJob | ( | SCIP_JOB ** | job, |
int | jobid, | ||
SCIP_RETCODE(*)(void *args) | jobfunc, | ||
void * | jobarg | ||
) |
creates a job for parallel processing
- Parameters
-
job pointer to the job that will be created jobid the id for the current job jobfunc pointer to the job function jobarg the job's argument
Definition at line 339 of file tpi_openmp.c.
References BMSallocMemory, SCIP_Job::jobfunc, SCIP_Job::jobid, NULL, SCIP_ALLOC, and SCIP_OKAY.
◆ SCIPtpiGetNewJobID()
int SCIPtpiGetNewJobID | ( | void | ) |
get a new job id for the new set of submitted jobs
Definition at line 357 of file tpi_openmp.c.
References SCIP_Job::jobid.
◆ SCIPtpiSumbitJob()
SCIP_RETCODE SCIPtpiSumbitJob | ( | SCIP_JOB * | job, |
SCIP_SUBMITSTATUS * | status | ||
) |
submit a job for parallel processing
the return is a globally defined status
- Parameters
-
job pointer to the job to be submitted status pointer to store the submit status
Definition at line 374 of file tpi_openmp.c.
◆ isJobRunning()
|
static |
Definition at line 389 of file tpi_openmp.c.
◆ isJobWaiting()
|
static |
Definition at line 408 of file tpi_openmp.c.
◆ SCIPtpiCollectJobs()
SCIP_RETCODE SCIPtpiCollectJobs | ( | int | jobid | ) |
Blocks until all jobs of the given jobid have finished and then returns the smallest SCIP_RETCODE of all the jobs
- Parameters
-
jobid the id of the jobs to collect
Definition at line 436 of file tpi_openmp.c.
References SCIP_Job::retcode, SCIP_CALL, SCIP_OKAY, and SCIPtpiAcquireLock().
◆ SCIPtpiInit()
SCIP_RETCODE SCIPtpiInit | ( | int | nthreads, |
int | queuesize, | ||
SCIP_Bool | blockwhenfull | ||
) |
initializes tpi
- Parameters
-
nthreads the number of threads to be used queuesize the size of the queue blockwhenfull should the queue block when full
Definition at line 502 of file tpi_openmp.c.
◆ SCIPtpiExit()
SCIP_RETCODE SCIPtpiExit | ( | void | ) |
deinitializes tpi
Definition at line 517 of file tpi_openmp.c.