Skip to content

Commit

Permalink
fixed translation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Berke-Ates committed Aug 10, 2023
1 parent 4a76932 commit c7f87b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/SDFG/Translate/Node.h
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ class MapEntryImpl : public ScopeNodeImpl {
void mapConnector(Value value, Connector connector) override;
/// Returns the connector associated with a MLIR value, inserting map
/// connectors when needed.
Connector lookup(Value value) override;
Connector lookup(Value value, MapEntry mapEntry);

/// Emits the map entry to the output stream.
void emit(emitter::JsonEmitter &jemit) override;
Expand Down Expand Up @@ -1008,7 +1008,7 @@ class ConsumeEntryImpl : public ScopeNodeImpl {
void mapConnector(Value value, Connector connector) override;
/// Returns the connector associated with a MLIR value, inserting consume
/// connectors when needed.
Connector lookup(Value value) override;
Connector lookup(Value value, ConsumeEntry entry);

/// Sets the number of processing elements.
void setNumPes(StringRef pes);
Expand Down

0 comments on commit c7f87b7

Please sign in to comment.