SWDEV-368695 - correct node type
Signed-off-by: sdashmiz <shadi.dashmiz@amd.com> Change-Id: I23930be7d2f3415c14fc2ec3af4c526cb89d26f7
此提交包含在:
@@ -949,7 +949,7 @@ class hipGraphMemcpyNodeFromSymbol : public hipGraphMemcpyNode1D {
|
||||
public:
|
||||
hipGraphMemcpyNodeFromSymbol(void* dst, const void* symbol, size_t count, size_t offset,
|
||||
hipMemcpyKind kind)
|
||||
: hipGraphMemcpyNode1D(dst, nullptr, count, kind, hipGraphNodeTypeMemcpyFromSymbol),
|
||||
: hipGraphMemcpyNode1D(dst, nullptr, count, kind, hipGraphNodeTypeMemcpy),
|
||||
symbol_(symbol),
|
||||
offset_(offset) {}
|
||||
|
||||
@@ -1040,7 +1040,7 @@ class hipGraphMemcpyNodeToSymbol : public hipGraphMemcpyNode1D {
|
||||
public:
|
||||
hipGraphMemcpyNodeToSymbol(const void* symbol, const void* src, size_t count, size_t offset,
|
||||
hipMemcpyKind kind)
|
||||
: hipGraphMemcpyNode1D(nullptr, src, count, kind, hipGraphNodeTypeMemcpyToSymbol),
|
||||
: hipGraphMemcpyNode1D(nullptr, src, count, kind, hipGraphNodeTypeMemcpy),
|
||||
symbol_(symbol),
|
||||
offset_(offset) {}
|
||||
|
||||
|
||||
新增問題並參考
封鎖使用者