mirror of
https://github.com/L-yang-yang/cugenopt.git
synced 2026-04-24 12:06:22 +02:00
Initial commit: cuGenOpt GPU optimization solver
This commit is contained in:
commit
fc5a0ff4af
117 changed files with 25545 additions and 0 deletions
38
python/pyproject.toml
Normal file
38
python/pyproject.toml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
[build-system]
|
||||
requires = ["setuptools>=68.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "cugenopt"
|
||||
version = "0.2.0"
|
||||
description = "GPU-accelerated general-purpose metaheuristic solver for combinatorial optimization"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
license = {text = "MIT"}
|
||||
authors = [{name = "cuGenOpt Team"}]
|
||||
keywords = ["optimization", "metaheuristic", "GPU", "CUDA", "combinatorial"]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Science/Research",
|
||||
"Topic :: Scientific/Engineering :: Mathematics",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Environment :: GPU :: NVIDIA CUDA",
|
||||
]
|
||||
dependencies = ["numpy>=1.20"]
|
||||
|
||||
[project.optional-dependencies]
|
||||
jit = ["nvidia-cuda-nvcc-cu12>=12.0"]
|
||||
dev = ["pytest"]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/cugenopt/cugenopt"
|
||||
Documentation = "https://github.com/cugenopt/cugenopt#readme"
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
include = ["cugenopt*"]
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
cugenopt = [
|
||||
"jit_template.cu",
|
||||
"include/**/*.cuh",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue