feat: get full evaluation back online

Very hacky, but this is enough to be finished with the graph IR for now.
This commit is contained in:
multisn8 2024-01-21 04:21:33 +01:00
parent 3c529c3a1a
commit 3e208335c3
Signed by untrusted user: multisamplednight
GPG key ID: 6D525AA147CBDAE2
9 changed files with 105 additions and 26 deletions

View file

@ -1,12 +1,12 @@
(
instructions: {
0: Read((
source: File("testfiles/juan.jpg"),
format: Jpeg,
source: File("testfiles/rails.png"),
format: Png,
)),
1: Write((
target: File("testfiles/out.png"),
format: Png,
target: File("testfiles/gen/out.jpg"),
format: Jpeg,
)),
},
edges: {

1
testfiles/gen/.gitkeep Normal file
View file

@ -0,0 +1 @@
the testfile scripts will place generated images and media here. thank you for your understanding.

View file

@ -1,12 +1,12 @@
(
instructions: {
0: Read((
source: File("testfiles/juan.jpg"),
format: Jpeg,
source: File("testfiles/rails.png"),
format: Png,
)),
1: Filter(Invert),
2: Write((
target: File("testfiles/inverted.png"),
target: File("testfiles/gen/inverted.png"),
format: Png,
)),
},