-
Notifications
You must be signed in to change notification settings - Fork 0
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
DownMix Node Augmentation #29
base: swetha/audio_pr8/resample_and_op_overload
Are you sure you want to change the base?
DownMix Node Augmentation #29
Conversation
…e_and_op_overload
@@ -171,6 +171,7 @@ list(APPEND SOURCES | |||
source/tensor/TensorMulScalar.cpp | |||
source/tensor/TensorAddTensor.cpp | |||
source/tensor/SequenceRearrange.cpp | |||
source/tensor/Downmix.cpp |
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.
Can we add this in alphabetical order
#define VX_KERNEL_RPP_NOP_NAME "org.rpp.Nop" | ||
#define VX_KERNEL_RPP_RESIZE_NAME "org.rpp.Resize" | ||
#define VX_KERNEL_RPP_SEQUENCEREARRANGE_NAME "org.rpp.SequenceRearrange" | ||
#define VX_KERNEL_RPP_DOWNMIX_NAME "org.rpp.Downmix" |
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.
Please maintain alphabetical order
@@ -158,6 +158,7 @@ extern "C" | |||
VX_KERNEL_RPP_RESAMPLE = VX_KERNEL_BASE(VX_ID_AMD, VX_LIBRARY_RPP) + 0x81, | |||
VX_KERNEL_RPP_TENSORMULSCALAR = VX_KERNEL_BASE(VX_ID_AMD, VX_LIBRARY_RPP) + 0x82, | |||
VX_KERNEL_RPP_TENSORADDTENSOR = VX_KERNEL_BASE(VX_ID_AMD, VX_LIBRARY_RPP) + 0x83, | |||
VX_KERNEL_RPP_DOWNMIX = VX_KERNEL_BASE(VX_ID_AMD, VX_LIBRARY_RPP) + 0x84, |
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 in alphabetical order
@@ -1526,7 +1526,10 @@ extern "C" | |||
TODO: Add the params | |||
*/ | |||
SHARED_PUBLIC vx_node VX_API_CALL vxExtRppTensorAddTensor(vx_graph graph, vx_tensor pSrc1, vx_tensor pSrc2, vx_tensor pDst, vx_tensor srcRoi, vx_tensor dstRoi, vx_uint32 nbatchSize); | |||
|
|||
/* |
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.
Please ensure you add the Doxygen comments for all the audio augmentations in respective PR
@@ -120,6 +120,7 @@ static vx_status VX_CALLBACK validateSpectrogram(vx_node node, const vx_referenc | |||
vx_enum tensor_datatype; | |||
STATUS_ERROR_CHECK(vxQueryTensor((vx_tensor)parameters[2], VX_TENSOR_NUMBER_OF_DIMS, &num_tensor_dims, sizeof(num_tensor_dims))); | |||
if(num_tensor_dims < 3) return ERRMSG(VX_ERROR_INVALID_DIMENSION, "validate: Spectrogram: tensor: #2 dimensions=%lu (must be greater than or equal to 4)\n", num_tensor_dims); | |||
|
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.
Why this change added in this pipeline?
#include "graph.h" | ||
|
||
class DownmixNode : public Node | ||
{ |
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.
Format file
This is the final Audio PR with downMix augmentation support