-
Notifications
You must be signed in to change notification settings - Fork 170
Feature/pace poll test #489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks great, just the two questions.
@@ -21,7 +21,8 @@ namespace pmon::ipc::intro | |||
template<> struct IntrospectionCapsLookup<PM_METRIC_GPU_RENDER_COMPUTE_UTILIZATION> { static constexpr auto gpuCapBit = GpuTelemetryCapBits::gpu_render_compute_utilization; }; | |||
template<> struct IntrospectionCapsLookup<PM_METRIC_GPU_MEDIA_UTILIZATION> { static constexpr auto gpuCapBit = GpuTelemetryCapBits::gpu_media_utilization; }; | |||
template<> struct IntrospectionCapsLookup<PM_METRIC_GPU_MEM_POWER> { static constexpr auto gpuCapBit = GpuTelemetryCapBits::vram_power; }; | |||
template<> struct IntrospectionCapsLookup<PM_METRIC_GPU_MEM_VOLTAGE> { static constexpr auto gpuCapBit = GpuTelemetryCapBits::vram_voltage; }; | |||
template<> struct IntrospectionCapsLookup<PM_METRIC_GPU_MEM_TEMPERATURE> { static constexpr auto gpuCapBit = GpuTelemetryCapBits::vram_power; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these two accidentally swapped? PM_METRIC_GPU_MEM_TEMPERATURE to vram_power and PM_METRIC_GPU_MEM_VOLTAGE to vram_temperature?
const auto recordingStop = 22s; | ||
|
||
const auto pipeName = R"(\\.\pipe\pm-poll-test-act)"s; | ||
const auto etlName = "hea-win.etl"s; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the hea-win.etl to be checked-in to the repo or will it be a file that lives locally on a test machine?
This reverts commit 70ffbc7.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
Unit tests that used the paced ETL playback to do integration testing including service and middleware (dynamic metrics).