forked from newton-physics/newton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasv.conf.json
More file actions
25 lines (25 loc) · 954 Bytes
/
asv.conf.json
File metadata and controls
25 lines (25 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"version": 1,
"project": "newton",
"project_url": "https://github.com/newton-physics/newton",
"repo": ".",
"branches": ["main"],
"dvcs": "git",
"environment_type": "virtualenv",
"show_commit_url": "https://github.com/newton-physics/newton/commit/",
"benchmark_dir": "asv/benchmarks",
"env_dir": "asv/env",
"results_dir": "asv/results",
"html_dir": "asv/html",
"build_cache_size": 20,
"default_benchmark_timeout": 600,
"build_command": ["python -m build --wheel -o {build_cache_dir} {build_dir}"],
"install_command": [
"python -m pip install -U numpy",
"python -m pip install -U --pre warp-lang==1.12.0rc1 --index-url=https://pypi.nvidia.com/",
"python -m pip install -U mujoco==3.5.0",
"python -m pip install -U mujoco-warp==3.5.0",
"python -m pip install -U torch==2.8.0+cu129 --index-url https://download.pytorch.org/whl/cu129",
"in-dir={env_dir} python -m pip install {wheel_file}[dev]"
]
}