Displaying 3 results from an estimated 3 matches for "pgoinstrumentationgen".
2018 Aug 15
2
Queries Regarding Usage of PGOInstrumentation Passes instead of Deprecated ProfileInfo
...precated and we have PGOInstrumentation
passes along with BranchProbability and BlockFrequency, I wish to update
the above snippet, in particular, obtaining the edge weights (highlighted
in the code above) using the new tools.
In order to do that, I'm first generating edge count profile by the
PGOInstrumentationGen pass and then interpreting the edge count profile
with PGOInstrumentationUse.
In the original code, where I had
au.addRequired< ProfileInfo >(), I now have
*au.addRequired< BlockFrequencyInfoWrapperPass >();au.addRequired<
BranchProbabilityInfoWrapperPass >();*
Now, I have the...
2018 Aug 15
3
Queries Regarding Usage of PGOInstrumentation Passes instead of Deprecated ProfileInfo
...es along with BranchProbability and BlockFrequency, I wish to update
>> the above snippet, in particular, obtaining the edge weights (highlighted
>> in the code above) using the new tools.
>>
>> In order to do that, I'm first generating edge count profile by the
>> PGOInstrumentationGen pass and then interpreting the edge count profile
>> with PGOInstrumentationUse.
>>
>> In the original code, where I had
>> au.addRequired< ProfileInfo >(), I now have
>>
>>
>> *au.addRequired< BlockFrequencyInfoWrapperPass >();au.addRequired<...
2018 Aug 15
2
Queries Regarding Usage of PGOInstrumentation Passes instead of Deprecated ProfileInfo
...kFrequency,
>>>> I wish to update the above snippet, in particular, obtaining the edge
>>>> weights (highlighted in the code above) using the new tools.
>>>>
>>>> In order to do that, I'm first generating edge count profile by the
>>>> PGOInstrumentationGen pass and then interpreting the edge count profile
>>>> with PGOInstrumentationUse.
>>>>
>>>> In the original code, where I had
>>>> au.addRequired< ProfileInfo >(), I now have
>>>>
>>>>
>>>> *au.addRequired<...