No description
Find a file
2025-12-11 13:21:52 -05:00
.github github ci macos-13 to macos-15 (#4267) 2025-11-04 12:39:47 -05:00
batch_job use the getopt from the system (#4260) 2025-11-03 12:19:47 -05:00
chirp fatal if hash_nextkey has a chance to cause memory corruption (#4139) 2025-04-24 11:54:28 -04:00
deltadb use the getopt from the system (#4260) 2025-11-03 12:19:47 -05:00
devel use the getopt from the system (#4260) 2025-11-03 12:19:47 -05:00
doc Vine: Plotting tools cleanup (#4245) 2025-11-04 15:55:52 -05:00
dttools vine: a couple of memory leaks (#4304) 2025-12-11 12:30:22 -05:00
ftp_lite github ci macos-13 to macos-15 (#4267) 2025-11-04 12:39:47 -05:00
grow grow: only use libs from config process (#4162) 2025-05-13 11:53:56 -04:00
makeflow Batch Job: Add prune operation to clean cluster state. (#4193) 2025-09-10 11:36:36 -04:00
packaging Ubuntu22.04 (#3962) 2024-10-23 13:29:35 -04:00
parrot use the getopt from the system (#4260) 2025-11-03 12:19:47 -05:00
poncho Tv poncho clean (#4240) 2025-09-25 07:54:16 -04:00
resource_monitor use the getopt from the system (#4260) 2025-11-03 12:19:47 -05:00
taskvine vine: reset ready list only on retrieve/new worker (#4306) 2025-12-11 13:21:52 -05:00
test_support/python_modules/python3/ndcctools Vine: Remove test for poncho to force test run. (#3422) 2023-07-28 16:01:49 -04:00
work_queue vine: a couple of memory leaks (#4304) 2025-12-11 12:30:22 -05:00
.clang-format Format: Fix Crazy Line Breaks (#3872) 2024-06-21 13:41:08 -04:00
.gitattributes Whitespace rules for this project. 2015-06-09 10:41:09 -04:00
.gitignore Vine: Add flake8 to lint Python code of TaskVine (#3465) 2023-08-18 08:39:49 -04:00
.module.mk Vine: Clean Up Mini-Tasks (#3577) 2023-11-17 16:02:02 -05:00
.readthedocs.yaml Doc: Update Environment and Organize (#3552) 2023-10-18 12:31:50 -04:00
configure use the getopt from the system (#4260) 2025-11-03 12:19:47 -05:00
configure.tools.sh Batch: Rework Interface Into Queue, Task, File Objects (#3898) 2024-08-06 10:42:00 -04:00
COPYING Add a good PRNG (mersenne twister) for cctools. 2014-10-01 15:42:23 -04:00
CREDITS General Cleanup (#3452) 2023-08-11 13:59:07 -04:00
environment.yml Vine: Plotting tools cleanup (#4245) 2025-11-04 15:55:52 -05:00
hi.txt Hungry feature (#3949) 2024-10-15 11:03:29 -04:00
Makefile PLEDGE: Unified under 1 binary (#4212) 2025-07-11 12:40:21 -04:00
README.md Recommend Miniforge instead of Miniconda and remove Python 3.9 note in install documentation (#3932) 2024-09-16 14:31:54 -04:00
rules.mk wq: openssl support (#2733) 2021-11-16 09:59:29 -05:00
run_all_tests.sh Vine: Mini Tasks (#3046) 2022-11-21 16:11:01 -05:00
STYLE.md Fix link syntax. 2023-08-17 14:37:45 -04:00

The Cooperative Computing Tools

About

The Cooperative Computing Tools (cctools) is a software package for enabling large scale distributed computing on clusters, clouds, and grids. It is used primarily for attacking large scale problems in science and engineering.

You can read more about this software at ReadTheDocs It is developed by members of the Cooperative Computing Lab at the University of Notre Dame, led by Prof. Douglas Thain. The file CREDITS lists the many people that have contributed to the software over the years.

Quick Install Via Miniforge

The easiest way to install the binaries is via Miniforge, a light version of Anaconda

conda install -y -c conda-forge ndcctools

Build From Source

To build from source and install in your home directory:

git clone git://github.com/cooperative-computing-lab/cctools.git cctools-src
cd cctools-src
unset PYTHONPATH
conda env create -y -f environment.yml
./configure --with-base-dir $CONDA_PREFIX --prefix $CONDA_PREFIX
make
make install

Then run the executables out of your home directory like this:

export PATH=$HOME/cctools-src/bin:$PATH
makeflow -v
vine_status
------------------------------------------------------------
This software package is
Copyright (c) 2003-2004 Douglas Thain
Copyright (c) 2005-2022 The University of Notre Dame
This software is distributed under the GNU General Public License.
See the file COPYING for details.
------------------------------------------------------------
This product includes software developed by and/or derived
from the Globus Project (http://www.globus.org/)
to which the U.S. Government retains certain rights.
------------------------------------------------------------
This product includes code derived from the RSA Data
Security, Inc. MD5 Message-Digest Algorithm.
------------------------------------------------------------
This product includes public domain code for the
SHA1 algorithm written by Peter Gutmann, David Ireland,
and A. M. Kutchman.
------------------------------------------------------------
This product includes the source code for the MT19937-64
Mersenne Twister pseudorandom number generator, written by 
Makoto Matsumoto and Takuji Nishimura.