diff --git a/shared/rocroller/lib/source/KernelGraph/LastRWTracer.cpp b/shared/rocroller/lib/source/KernelGraph/LastRWTracer.cpp index 107305db0f2..b23631c724a 100644 --- a/shared/rocroller/lib/source/KernelGraph/LastRWTracer.cpp +++ b/shared/rocroller/lib/source/KernelGraph/LastRWTracer.cpp @@ -90,11 +90,8 @@ namespace rocRoller::KernelGraph { std::unordered_map>> controlStacks; - std::string theOne = "Tensor_4_extent_4"; - for(auto const& [controlNode, args] : argTracer.referencedArguments()) { - bool debug = args.contains(theOne); auto stack = rocRoller::KernelGraph::controlStack(controlNode, m_graph); for(auto const& arg : args) { @@ -102,20 +99,6 @@ namespace rocRoller::KernelGraph } } - if(controlStacks.contains(theOne)) - { - std::ofstream f(fmt::format("data_{}.txt", theOne)); - for(auto const& stack : controlStacks[theOne]) - { - f << "Stack: "; - streamJoin(f, stack, ", "); - f << std::endl; - } - - auto rv = getLastLocationsFromControlStacks(controlStacks); - f << ShowValue(rv[theOne]); - } - return getLastLocationsFromControlStacks(controlStacks); }