mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
139 lines
3.1 KiB
JSON
139 lines
3.1 KiB
JSON
{
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
"name": "research",
|
|
"projectType": "application",
|
|
"sourceRoot": "engine",
|
|
"targets": {
|
|
"install": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh install",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": ".venv/bin/pytest -v",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"train": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh train",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"benchmark": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh benchmark",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"benchmark-simple": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh benchmark-simple",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"benchmark-agent": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh benchmark-agent",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"train-agent": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh train-agent",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"train-bootstrap": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh train-bootstrap",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"stats": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh stats",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"docker-train-publish": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh docker-train-publish",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"whoclicked-publish": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": [
|
|
"install"
|
|
],
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh whoclicked-publish",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"tpu-ray-bootstrap": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh tpu-ray-bootstrap",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"tpu-ray-deps": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh tpu-ray-deps",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"tpu-ray-verify": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh tpu-ray-verify",
|
|
"cwd": "."
|
|
}
|
|
},
|
|
"tpu-ray-teardown": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "bash scripts/nx_research.sh tpu-ray-teardown",
|
|
"cwd": "."
|
|
}
|
|
}
|
|
},
|
|
"tags": [
|
|
"scope:research",
|
|
"type:python"
|
|
]
|
|
}
|