threads.c

来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· C语言 代码 · 共 94 行

C
94
字号
/************************************************************ * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All Rights Reserved *  *     This source code is distributed under the terms of the *     GNU General Public License. See the files COPYING and LICENSE *     for details. ************************************************************//* threads.c * SRE, Fri Jul 10 10:05:44 1998 *  * Pthreads code shared by hmmsearch, hmmcalibrate, and hmmpfam * to coarse-grain parallelize on platforms capable of POSIX * threads. Most of the threads code, however, is in the respective * main's, i.e. hmmsearch.c, hmmpfam.c, hmmcalibrate.c *  * RCS $Id: threads.c,v 1.6 2003/04/14 16:00:17 eddy Exp $ */#include "config.h"#include "squidconf.h"#ifdef HMMER_THREADS		/* conditional inclusion of the entire file */#include <stdlib.h>#include <string.h>#include <float.h>#include <pthread.h>#include "structs.h"#include "funcs.h"#include "squid.h"#include "sqfuncs.h"/* Function: ThreadNumber() * Date:     SRE, Sat Jul 11 11:03:50 1998 [St. Louis] * * Purpose:  Recommend how many threads to use.  * *             - if we can determine the number of processors *               on the machine by SQD_NPROC, use that. This *               should succeed for SGI IRIX, Digital UNIX, and  *               Sun Solaris platforms. *             - if not, assume two processors. We're probably *               on a FreeBSD or Linux box, and odds are that its *               a dualprocessor. *             - if HMMER_NCPU is defined in config.h, use that *               number instead; allows Linux or FreeBSD machines *               to compile code for a quadprocessor, for instance. *               That define can be overridden at compile *               time by a -DHMMER_NCPU=x, where x is the *               number of threads.. *             - if HMMER_NCPU is defined in the environment, *               use that number, overriding all others. * *           Typically, we'll set the default number of *           threads with ThreadNumber() but allow it *           to be overridden at the command line with --cpu.     *            *           Summarizing priority: *                  --ncpu <x> option *                  environment variable, setenv HMMER_NCPU x *                  compile-time, MDEFS=HMMER_NCPU=x *                  compile-time, config.h definition of HMMER_NCPU *                  SQD_NPROC, or 2 if SQD_NPROC doesn't work. * * Args:     void * * Returns:  >= 1, recommended number of threads */intThreadNumber(void){  int   num;  char *env;  num = SQD_NPROC;		/* SGI, Sun, Digital: get # of available CPUs */  if (num == -1) num = 2;	/* Linux, FreeBSD: assume dualprocessor       */#ifdef HMMER_NCPU	  num = HMMER_NCPU;		/* allow config.h to override; usually we don't */#endif				/* allow environment variable to override */  if ((env = getenv("HMMER_NCPU")) != NULL)    num = atoi(env);		  if (num <= 0) num = 1;	/* silent sanity check */  SQD_DPRINTF1(("ThreadNumber(): setting number of threads to %d\n", num));  return num;}#endif /*HMMER_THREADS*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?