diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-11-09 17:34:41 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-11-09 17:34:41 +0000 |
commit | 26da84473ad3c0266bd622d4b7aa44283b9ca956 (patch) | |
tree | d22a822f666e1d9ea275d7b8cc91a45e234f94ca /math/py-iohexperimenter/Makefile | |
parent | 5b2a83aa3ca614a2f2ca3b7d92b058cf4f1a773c (diff) | |
download | ports-26da84473ad3c0266bd622d4b7aa44283b9ca956.tar.gz ports-26da84473ad3c0266bd622d4b7aa44283b9ca956.zip |
Add py-iohexperimenter 0.2.8
IOHexperimenter is the benchmarking platform for Iterative Optimization
Heuristics (IOHs).
IOHexperimenter provides:
- A framework for straightforward benchmarking of any iterative optimization
heuristic
- A suite consisting of 23 pre-made Pseudo-Boolean benchmarking function, with
easily accessible methods for adding custom functions and suites
- Logging methods to effortlesly store benchmarking data in a format compatible
with IOHanalyzer, with future support for additional data logging options
- (Soon to come:) A framework which significantly simplifies algorithm design
WWW: https://github.com/IOHprofiler/IOHexperimenter
Notes
Notes:
svn path=/head/; revision=554736
Diffstat (limited to 'math/py-iohexperimenter/Makefile')
-rw-r--r-- | math/py-iohexperimenter/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/math/py-iohexperimenter/Makefile b/math/py-iohexperimenter/Makefile new file mode 100644 index 000000000000..3b5ad8aa3234 --- /dev/null +++ b/math/py-iohexperimenter/Makefile @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= iohexperimenter +PORTVERSION= 0.2.8 +DISTVERSIONSUFFIX= r +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= IOHexperimenter-${DISTVERSIONFULL} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Experimenter for Iterative Optimization Heuristic + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYNUMPY} + +USES= compiler:c++14-lang python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +USE_CXXSTD= c++14 + +WRKSRC= ${WRKDIR}/IOHexperimenter-${PORTVERSION} + +.include <bsd.port.mk> |