Skip to content

Commit

Permalink
fix(ULAgent): missing training vaddr (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kumonda221-CrO3 authored Oct 14, 2024
1 parent da63be1 commit 0351146
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main/TLAgent/ULAgent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ namespace tl_agent {
req_a->size = size;
req_a->mask = mask;
req_a->source = this->idpool.getid();
req_a->vaddr = address;
#ifdef ULAGENT_TRAIN_PREFETCH
req_a->needHint = 1;
#else
Expand Down Expand Up @@ -416,6 +417,7 @@ namespace tl_agent {
req_a->mask = 0xffffffffUL;
req_a->source = this->idpool.getid();
req_a->data = data;
req_a->vaddr = address;
#ifdef ULAGENT_TRAIN_PREFETCH
req_a->needHint = 1;
#else
Expand Down Expand Up @@ -449,6 +451,7 @@ namespace tl_agent {
req_a->mask = mask;
req_a->source = this->idpool.getid();
req_a->data = data;
req_a->vaddr = address;
#ifdef ULAGENT_TRAIN_PREFETCH
req_a->needHint = 1;
#else
Expand Down

0 comments on commit 0351146

Please sign in to comment.