summaryrefslogtreecommitdiff
path: root/src/tests/gpu/test_sequence_e2e.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/gpu/test_sequence_e2e.cc')
-rw-r--r--src/tests/gpu/test_sequence_e2e.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/gpu/test_sequence_e2e.cc b/src/tests/gpu/test_sequence_e2e.cc
index ed8920a..5d59e0d 100644
--- a/src/tests/gpu/test_sequence_e2e.cc
+++ b/src/tests/gpu/test_sequence_e2e.cc
@@ -23,13 +23,13 @@ class SimpleTestSequence : public Sequence {
// Effect DAG construction (2 effects: source->temp->sink)
effect_dag_.push_back({.effect = std::make_shared<Passthrough>(
ctx, std::vector<std::string>{"source"},
- std::vector<std::string>{"temp"}),
+ std::vector<std::string>{"temp"}, 0.0f, 1000.0f),
.input_nodes = {"source"},
.output_nodes = {"temp"},
.execution_order = 0});
effect_dag_.push_back({.effect = std::make_shared<Passthrough>(
ctx, std::vector<std::string>{"temp"},
- std::vector<std::string>{"sink"}),
+ std::vector<std::string>{"sink"}, 0.0f, 1000.0f),
.input_nodes = {"temp"},
.output_nodes = {"sink"},
.execution_order = 1});