-
Notifications
You must be signed in to change notification settings - Fork 75
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
Cloud Inference Application - Graphs & Enhancements #115
Conversation
@@ -72,7 +72,6 @@ void inference_receiver::run() | |||
// - when results are received add the results to imageIndex, imageLabel, imageSummary queues | |||
|
|||
progress->images_sent = 0; | |||
progress->images_received = 0; |
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.
needed
@@ -86,7 +85,6 @@ void inference_receiver::run() | |||
break; | |||
if(cmd.magic != INFCOM_MAGIC) { | |||
progress->errorCode = -1; | |||
progress->message.sprintf("ERROR: got invalid magic 0x%08x", cmd.magic); |
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.
needed
@@ -113,7 +111,6 @@ void inference_receiver::run() | |||
connection->sendCmd(reply); | |||
} | |||
else if(cmd.command == INFCOM_CMD_SEND_IMAGES) { | |||
progress->message = ""; |
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.
needed
} | ||
|
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.
spaces
(y < (state->graphButtonRect.y() + state->graphButtonRect.height()))) | ||
{ | ||
showChartResults(); | ||
//TBD Function |
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.
remove TBD
@@ -1011,7 +1048,7 @@ void inference_viewer::paintEvent(QPaintEvent *) | |||
imageRows = imageCount / numCols; | |||
imageCols = imageCount % numCols; | |||
} | |||
// get received image/rate | |||
|
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.
keep comment
<property name="windowTitle"> | ||
<string>Performance</string> | ||
<string>AMD MIVisionX Performance</string> |
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.
AMD MIVisionX Inference - for 4 windows
@@ -244,6 +241,7 @@ void inference_receiver::run() | |||
if(progress->errorCode) { | |||
qDebug("inference_receiver::run() terminated: errorCode=%d", progress->errorCode); | |||
} | |||
printf("hi1\n"); |
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.
debug print
@@ -225,7 +225,6 @@ void inference_receiver::run() | |||
} | |||
else { | |||
progress->errorCode = -1; | |||
progress->message.sprintf("ERROR: got invalid command 0x%08x", cmd.command); |
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.
add back
* nnir_to_openvx print (ROCm#103) * Ubuntu 18.04 warnings fix (ROCm#104) * Support for ONNX V1.3 (ROCm#101) ONNX 1.3 support for ResNet50 * adding grouped convolution and updating readme (ROCm#105) * Update README.md * Update convolution_layer.cpp * Loom Sample & Readme Updates (ROCm#106) * Loom Readme updates * Loom Samples Added * Samples Readme Updates * ROCm Version Updated * Readme updates (ROCm#107) * loom logo added * logo updates for loom * Samples readme updates * Main readme updates * WinML Readme updates * OpenVX Readme updates * loom readme updates * Apps readme updates * updates (ROCm#108) * Extensions readme updates * main readme update * loom readme updates * loom link updates * updates to loom * updates * Set up script updates * YoloV2 Fix (ROCm#109) * cloud inference updates (ROCm#111) * client app images added * Readme for Cloud Application * Cloud Inference Fix (ROCm#112) * Server Rename fix * Readme Link Fix * Client Readme updates * Server usage help added * Model Compiler Path Set * Model Compiler Scripts updated * Default Model Compiler Path Added * Server Readme fix * Cloud Inference readme fix * Server/Client bug fix * Cloud Inference Fix (ROCm#113) * Cloud Inference - Server Help (ROCm#114) * Cloud Inference Application - Graphs & Enhancements (ROCm#115) * graph added/polished * Update annInferenceApp.pro * Update inference_receiver.h * Update inference_viewer.cpp * Update inference_viewer.cpp * Update perf_graph.ui * Update inference_receiver.cpp * Title update * Update inference_receiver.cpp * onnx_to_nnir help text fix (ROCm#118) * bug fix * bug fix * bug fix * Update perf_chart.cpp * bug fix
* initial support for resize mirror normalize u8 variant * Add codes for Lanczos interpolation Add separable resampling support for lanczos Add generic kernel implementation Test suite changes Add support for different data types * Minor fix and changes * Minor changes * Minor fix - F16 PKD3 resize store * Minor fix Move the intermediate buffer allocation inside * update the store function used for pln3 case in rmn * added rmn support for all cases of u8 variant * added tensor avx2 support for RMN i8 variant * added tensor avx2 support for RMN F32, F16 variants * added RMN case to performance test suite * Add ci * Add ci * added base code for rmn hip PLN case * Changes for bicubic interpolation * added support for all input image types for RMN HIP kernel * removed usage of permute in store function to handle mirror case in RMN HOST functions * added RMN case in HIP performance test suites * code cleanup * Code clean up * Fix bilinear resize HOST * Fix padding issue resize bilinear * minor change in HIP PKD3 test suite * Fix padding issue with resize bilinear * changed from float4() to (float4) minor code cleanup * Minor changes * Code clean up * Code clean up - Variable name changes * Fix issue with resize bilinear PLN inputs * Replace RPPRANGECHECK with max and min * Add comments * Code clean up * made changes based on the latest resize codes * added fix for u8 to resolve low intensity values for first column in case of mirror * added condition check to do normalization for mean ! = 0 and stdDev != 1 added support to calculate src locations based on the roi values * added fix for low intensity values for RMN i8,f16,f32 variants * removed conditon check to break from the avx loop * minor changes * code cleanup * fixed the issue with rmn hip outputs made changes to accept 3 mean and 3 stddev values for normalization * minor changes * added 3 mean and 3 stddev support for RMN U8 HOST * added 3 mean and 3 stddev support for RMN I8,F16,F32 HOST * added helper function to convert pkd3 data to pln3 data in hip changed RMN PKD hip kernel to convert pkd values to pln values for normalization * experimental changes * minor changes * added fix to set non roi pixels as zero * added fix to set non-ROI pixels as 0 for RMN HIP * code cleanup * updated test cases for RMN performance tests * fixed bug in filling non ROI pixels as 0 for RMN HIP * minor code cleanup * minor change * added compute_rmn_24_host function * added u8 to f32 support for RMN HIP kernel * added macros for constants used in bilinear interpolation in rpp_cpu_common.hpp * fixed the incorrect mean and stddev issue values happening with hipMemcpy() for RMN HIP * added u8 to f32/f16 support for RMN Tensor HOST * made changes for mean and stddev values for pln1 case * reverted back incorrect changes happened with merge * updated description for resize mirror normalize * minor chnages to RMN HIP kernel * minor code cleanup * minor changes in test suite for resize mirror normalize * minor changes * Remove ci * Remove codacy warnings Co-authored-by: sampath1117 <sampath.rachumallu@multicorewareinc.com> Co-authored-by: fiona-gladwin <fionagladwin@multicorewareinc.com>
* remove jpegint.h dependancy * added libjpeg as dependancy for partial decoding * remove competitor ref from Readme
No description provided.