SWDEV-321698 - remove Memcpy1D type

- Memcpy1D node type is not complying with cuda

Signed-off-by: sdashmiz <shadi.dashmiz@amd.com>
Change-Id: If8113f5e699de0c62d98effc4580a2e0fee9a950
This commit is contained in:
sdashmiz
2022-04-29 16:14:29 -04:00
committed by Shadi Dashmiz
parent faa7ee48ba
commit 13c875eaf0
3 changed files with 2 additions and 4 deletions
+1 -1
View File
@@ -640,7 +640,7 @@ class hipGraphMemcpyNode1D : public hipGraphNode {
public:
hipGraphMemcpyNode1D(void* dst, const void* src, size_t count, hipMemcpyKind kind,
hipGraphNodeType type = hipGraphNodeTypeMemcpy1D)
hipGraphNodeType type = hipGraphNodeTypeMemcpy)
: hipGraphNode(type), dst_(dst), src_(src), count_(count), kind_(kind) {}
~hipGraphMemcpyNode1D() {}