-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Experiment/recursive controller #24
Open
mwpb
wants to merge
68
commits into
main
Choose a base branch
from
experiment/recursive-controller
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
68 commits
Select commit
Hold shift + click to select a range
e1ba772
Imported commits from old repo
mwpb 7132264
Update pyproject.toml
mwpb bcb4603
Update pyproject.toml
mwpb f33bed7
Update pyproject.toml
mwpb 6afbb9f
Update pyproject.toml
mwpb 1fc0e03
Fix CI errors
mwpb 4e6c5b0
Fix CI
mwpb efb551b
Satisfy ruff
mwpb c04a581
Explicit enum for Python <3.11
mwpb 6bfc5b7
Fix typo
mwpb 14f0c68
Avoid extra read/write
mwpb 9603b76
Link outputs across loop iterations
mwpb 7173649
Link outputs through switch statements
mwpb a237646
Move numerical-worker
mwpb 3d5342e
Draft nexus-worker and polling loop
mwpb 5d99dd7
Give up on match nodes for controller
mwpb 9d46e7a
Convert storage to use bytes
mwpb 30e4ae4
Create executor interface and ShellExecutor
mwpb bb4c4e5
Improve debugging ShellExecutor
mwpb 4b4fc83
Make stdout|err path configurable
mwpb 5d7e7eb
Run worker in detached process
mwpb cb432d2
Create VQE graph
mwpb 33c7fe3
Move some files to tierkreis-chemistry-demo
mwpb 51fea51
Take care of relative paths in generate_protos
mwpb 5adc448
Remove extra imports
mwpb 48e3afa
Include old inputs in loops
mwpb cab188b
Remove extra changes
mwpb 1fa3ca7
Improve tests
mwpb a08af46
Remove extra method
mwpb e5fd210
Improve tests
mwpb 530891f
Fix comment
mwpb d4e361e
Update .gitignore
mwpb 931e254
Remove extra README
mwpb 368386a
Move logs into checkpoints dir
mwpb 09139ca
Remove extra deps
mwpb 2217507
Revert indentation
mwpb 21dfaed
Revert test improvements
mwpb a5e8ea0
Remove extra line
mwpb 2dcc1e8
Add extra line
mwpb f815516
Remove extra print
mwpb da538b3
Remove extra method
mwpb e16209a
Remove extra whitespace
mwpb b8486f0
Add optional logs_path to NodeDefinition
mwpb 4eae340
Add node definitions for non-function nodes
mwpb 89f3c07
Use StrEnum rather than overriding __str__
mwpb 4ca6766
Simplify exception handling
mwpb b28f87d
Fix typo
mwpb 1cdb461
Improve directory layout
mwpb 72d0734
Try fix CI
mwpb e90126a
Satisfy ruff
mwpb cbe74c1
Satisfy ruff
mwpb 3b32fb4
Bump python version
mwpb 2e20caa
Revert StrEnum
mwpb 57a6b3b
Revert Python version bump
mwpb 6b5c775
Update models.py
mwpb a5074e7
Ignore previous type errors
mwpb 9138b19
Fix test imports
mwpb 5e9e674
Satisfy ruff
mwpb d86da41
Factor out NodeRunData
mwpb 09acdcb
Factor resume by get_nodes_to_start
mwpb 73a9854
Logging is done via node_definition
mwpb 23478c3
Simplify test_resume
mwpb d9b3509
Satisfy ruff
mwpb 6d115bd
Simplify user facing code
mwpb a8e9cc4
Replace custom build system with hatchling
mwpb fe82a17
Refactor into WalkResult
mwpb ee02399
Improve function names
mwpb 8a1de38
Satisfy ruff
mwpb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/target | ||
.idea | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
./venv | ||
tierkreis/core/protos/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
printf "\n\n------ NUMERICAL WORKER ------" | ||
|
||
LAUNCHER_DIR=$(dirname "$0") | ||
uv run "$LAUNCHER_DIR/../numerical-worker" $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import json | ||
from logging import getLogger | ||
from pathlib import Path | ||
from sys import argv | ||
|
||
from pydantic import BaseModel | ||
|
||
logger = getLogger(__name__) | ||
|
||
|
||
class NodeDefinition(BaseModel): | ||
function_name: str | ||
inputs: dict[str, Path] | ||
outputs: dict[str, Path] | ||
done_path: Path | ||
|
||
|
||
def iadd(a: int, b: int) -> int: | ||
logger.debug(f"iadd {a} {b}") | ||
return a + b | ||
|
||
|
||
def itimes(a: int, b: int) -> int: | ||
logger.debug(f"itimes {a} {b}") | ||
return a * b | ||
|
||
|
||
def igt(a: int, b: int) -> bool: | ||
logger.debug(f"igt {a} {b}") | ||
return a > b | ||
|
||
|
||
def run(node_definition: NodeDefinition): | ||
logger.debug(node_definition) | ||
if node_definition.function_name == "iadd": | ||
with open(node_definition.inputs["a"], "rb") as fh: | ||
a: int = json.loads(fh.read()) | ||
with open(node_definition.inputs["b"], "rb") as fh: | ||
b: int = json.loads(fh.read()) | ||
|
||
c = iadd(a, b) | ||
|
||
with open(node_definition.outputs["value"], "w+") as fh: | ||
fh.write(json.dumps(c)) | ||
|
||
elif node_definition.function_name == "itimes": | ||
with open(node_definition.inputs["a"], "rb") as fh: | ||
a: int = json.loads(fh.read()) | ||
with open(node_definition.inputs["b"], "rb") as fh: | ||
b: int = json.loads(fh.read()) | ||
|
||
c = itimes(a, b) | ||
|
||
with open(node_definition.outputs["value"], "w+") as fh: | ||
fh.write(json.dumps(c)) | ||
|
||
elif node_definition.function_name == "igt": | ||
with open(node_definition.inputs["a"], "rb") as fh: | ||
a: int = json.loads(fh.read()) | ||
with open(node_definition.inputs["b"], "rb") as fh: | ||
b: int = json.loads(fh.read()) | ||
|
||
c = igt(a, b) | ||
|
||
with open(node_definition.outputs["value"], "w+") as fh: | ||
fh.write(json.dumps(c)) | ||
|
||
elif node_definition.function_name == "and": | ||
with open(node_definition.inputs["a"], "rb") as fh: | ||
a = json.loads(fh.read()) | ||
with open(node_definition.inputs["b"], "rb") as fh: | ||
b = json.loads(fh.read()) | ||
|
||
c = a and b | ||
|
||
with open(node_definition.outputs["value"], "w+") as fh: | ||
fh.write(json.dumps(c)) | ||
|
||
elif node_definition.function_name == "id": | ||
with open(node_definition.inputs["value"], "rb") as fh: | ||
value = json.loads(fh.read()) | ||
|
||
with open(node_definition.outputs["value"], "w+") as fh: | ||
fh.write(json.dumps(value)) | ||
|
||
else: | ||
raise ValueError(f"function name {node_definition.function_name} not found") | ||
node_definition.done_path.touch() | ||
|
||
|
||
if __name__ == "__main__": | ||
worker_definition_path = argv[1] | ||
with open(worker_definition_path, "r") as fh: | ||
node_definition = NodeDefinition(**json.loads(fh.read())) | ||
|
||
run(node_definition) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[project] | ||
name = "numerical-worker" | ||
version = "0.1.0" | ||
description = "Add your description here" | ||
readme = "README.md" | ||
requires-python = ">=3.10, <3.13" | ||
dependencies = [] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "tierkreis" | ||
description = "Python client and utilities for tierkreis." | ||
readme = "README.md" | ||
dynamic = ["version"] | ||
version = "0.7.8" | ||
authors = [ | ||
{ name = "Seyon Sivarajah", email = "[email protected]" }, | ||
{ name = "Lukas Heidemann", email = "[email protected]" }, | ||
|
@@ -42,17 +42,9 @@ build = ["build[uv]"] | |
[tool.pytest.ini_options] | ||
markers = ["pytket"] | ||
|
||
|
||
[build-system] | ||
requires = ["setuptools>=65.5.0", "betterproto[compiler]==2.0.0b6"] | ||
build-backend = "generate_protos" | ||
backend-path = ["tierkreis/_build"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "tierkreis._version.__version__" } | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["tierkreis*", "tierkreis/py.typed"] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
|
||
[tool.ruff] | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import pytest | ||
|
||
from tierkreis.controller.models import NodeLocation | ||
|
||
node_location_1 = NodeLocation(location=[]) | ||
node_location_1 = node_location_1.append_node(0) | ||
node_location_1 = node_location_1.append_loop(0) | ||
node_location_1 = node_location_1.append_node(3) | ||
node_location_1 = node_location_1.append_loop(2) | ||
node_location_1 = node_location_1.append_node(0) | ||
node_location_1 = node_location_1.append_map(8) | ||
node_location_1 = node_location_1.append_node(0) | ||
|
||
|
||
node_location_2 = NodeLocation(location=[]) | ||
node_location_2 = node_location_2.append_node(0) | ||
node_location_2 = node_location_2.append_loop(0) | ||
node_location_2 = node_location_2.append_node(3) | ||
node_location_2 = node_location_2.append_node(8) | ||
node_location_2 = node_location_2.append_node(0) | ||
|
||
node_location_3 = NodeLocation(location=[]) | ||
node_location_3 = node_location_3.append_node(0) | ||
|
||
node_location_4 = NodeLocation(location=[]) | ||
|
||
|
||
@pytest.mark.parametrize( | ||
["node_location", "loc_str"], | ||
[ | ||
(node_location_1, "N0.L0.N3.L2.N0.M8.N0"), | ||
(node_location_2, "N0.L0.N3.N8.N0"), | ||
(node_location_3, "N0"), | ||
(node_location_4, ""), | ||
], | ||
) | ||
def test_to_from_str(node_location: NodeLocation, loc_str: str): | ||
node_location_str = str(node_location) | ||
assert node_location_str == loc_str | ||
|
||
new_loc = NodeLocation.from_str(node_location_str) | ||
assert new_loc == node_location |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import json | ||
from pathlib import Path | ||
from uuid import UUID | ||
|
||
from tests.sample_graph import sample_graph_without_match | ||
from tierkreis.controller import run_graph | ||
from tierkreis.controller.executor.shell_executor import ShellExecutor | ||
from tierkreis.controller.models import NodeLocation | ||
from tierkreis.controller.storage.filestorage import ControllerFileStorage | ||
from tierkreis.core import Labels | ||
|
||
|
||
def test_resume_sample_graph(): | ||
g = sample_graph_without_match() | ||
storage = ControllerFileStorage(UUID(int=0)) | ||
executor = ShellExecutor( | ||
Path("./python/examples/launchers"), logs_path=storage.logs_path | ||
) | ||
inputs = { | ||
"inp": json.dumps(4).encode(), | ||
Labels.VALUE: json.dumps(2).encode(), | ||
Labels.THUNK: g.to_proto().SerializeToString(), | ||
} | ||
|
||
storage.clean_graph_files() | ||
run_graph(storage, executor, g, inputs) | ||
|
||
c = storage.read_output(NodeLocation(location=[]), "loop_out") | ||
assert c == b"6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it make sense for
id
to be a builtin so you can make use of the linking functionality? Similarly withcopy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess there isn't much use in
id
usuallyThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I just needed
id
because it is in the sample graph. I don't expect theid
function to be used in real applications.