diff --git a/misc/nn-insight/files/patch-graphviz-cgraph.cpp b/misc/nn-insight/files/patch-graphviz-cgraph.cpp new file mode 100644 index 000000000000..67aaf160b9c2 --- /dev/null +++ b/misc/nn-insight/files/patch-graphviz-cgraph.cpp @@ -0,0 +1,16 @@ +--- graphviz-cgraph.cpp.orig 2024-10-13 18:58:48 UTC ++++ graphviz-cgraph.cpp +@@ -67,11 +67,11 @@ Graphviz_CGraph::Node Graphviz_CGraph::addNode(const c + /// interface implementation + + Graphviz_CGraph::Node Graphviz_CGraph::addNode(const char *name) { +- return (Node)agnode(GRAPH, S(name), TRUE/*create*/); ++ return (Node)agnode(GRAPH, S(name), true/*create*/); + } + + Graphviz_CGraph::Edge Graphviz_CGraph::addEdge(Node node1, Node node2, const char *name) { +- return (Edge)agedge(GRAPH, NODE(node1), NODE(node2), S(name), TRUE/*create*/); ++ return (Edge)agedge(GRAPH, NODE(node1), NODE(node2), S(name), true/*create*/); + } + + void Graphviz_CGraph::setDefaultNodeShape(const char *shapeValue) { diff --git a/misc/nn-insight/files/patch-tensor.h b/misc/nn-insight/files/patch-tensor.h index 3fc4837591a5..c158f3b6401e 100644 --- a/misc/nn-insight/files/patch-tensor.h +++ b/misc/nn-insight/files/patch-tensor.h @@ -1,9 +1,10 @@ ---- tensor.h.orig 2020-08-13 20:43:40 UTC +--- tensor.h.orig 2022-05-15 02:44:06 UTC +++ tensor.h -@@ -1,5 +1,6 @@ - // Copyright (C) 2020 by Yuri Victorovich. All rights reserved. +@@ -3,6 +3,7 @@ + #pragma once + #include +#include #include typedef std::vector TensorShape;