-
Hello. MICRO AE.exp does not specify the llc_prefetcher_types. Why does multi.llc_pref not output the message "unsupported prefetcher type "? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Can anyone resolve my doubts? |
Beta Was this translation helpful? Give feedback.
-
HI @szuhzw, the Closing the issue for now. If needed, we can reopen. |
Beta Was this translation helpful? Give feedback.
HI @szuhzw, the
llc_prefetcher_types
is a knob of type vector of strings (src/knobs.cc:22
). If you have have not specifyllc_prefetcher_types
knob, the vector will be of size 0, in which case the code inside thefor
loop atprefetcher/multi.llc_pref:26
will not even execute. Hence, there won't be any log saying "unsupported prefetcher types". The log will be printed if and only if you have passed an invalid prefetcher name withllc_prefetcher_types
knob.Closing the issue for now. If needed, we can reopen.