[SDK] remove HIP_MEMSET_NODE_PARAMS for HIP step version >= 12. (#334)
* remove HIP_MEMSET_NODE_PARAMS for HIP step version >= 12. * remove extra ifdef * format. --------- Co-authored-by: Venkateshwar Reddy Kandula <vkandula@amd.com>
This commit is contained in:
committed by
GitHub
parent
96a0ef244f
commit
6cea857c6a
@@ -2778,12 +2778,17 @@ typedef union rocprofiler_hip_api_args_t
|
||||
} hipGetStreamDeviceId;
|
||||
struct
|
||||
{
|
||||
hipGraphNode_t* phGraphNode;
|
||||
hipGraph_t hGraph;
|
||||
const hipGraphNode_t* dependencies;
|
||||
size_t numDependencies;
|
||||
hipGraphNode_t* phGraphNode;
|
||||
hipGraph_t hGraph;
|
||||
const hipGraphNode_t* dependencies;
|
||||
size_t numDependencies;
|
||||
#if HIP_RUNTIME_API_TABLE_STEP_VERSION < 12
|
||||
const HIP_MEMSET_NODE_PARAMS* memsetParams;
|
||||
hipCtx_t ctx;
|
||||
#endif
|
||||
#if HIP_RUNTIME_API_TABLE_STEP_VERSION >= 12
|
||||
const hipMemsetParams* memsetParams;
|
||||
#endif
|
||||
hipCtx_t ctx;
|
||||
} hipDrvGraphAddMemsetNode;
|
||||
struct
|
||||
{
|
||||
@@ -2964,10 +2969,15 @@ typedef union rocprofiler_hip_api_args_t
|
||||
} hipDrvGraphExecMemcpyNodeSetParams;
|
||||
struct
|
||||
{
|
||||
hipGraphExec_t hGraphExec;
|
||||
hipGraphNode_t hNode;
|
||||
hipGraphExec_t hGraphExec;
|
||||
hipGraphNode_t hNode;
|
||||
# if HIP_RUNTIME_API_TABLE_STEP_VERSION < 12
|
||||
const HIP_MEMSET_NODE_PARAMS* memsetParams;
|
||||
hipCtx_t ctx;
|
||||
# endif
|
||||
# if HIP_RUNTIME_API_TABLE_STEP_VERSION >= 12
|
||||
const hipMemsetParams* memsetParams;
|
||||
# endif
|
||||
hipCtx_t ctx;
|
||||
} hipDrvGraphExecMemsetNodeSetParams;
|
||||
struct
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user