Commit 91a7e8ac authored by Sergey Shalnov's avatar Sergey Shalnov Committed by Scott Cyphers

IntelGPU backend: Softmax visualization fix (#2794)

parent aa3692d2
......@@ -44,6 +44,7 @@
#include "ngraph/op/quantize.hpp"
#include "ngraph/op/reshape.hpp"
#include "ngraph/op/slice.hpp"
#include "ngraph/op/softmax.hpp"
#include "ngraph/op/sum.hpp"
#include "ngraph/op/topk.hpp"
#include "ngraph/util.hpp"
......@@ -295,6 +296,13 @@ void print_node_parameters(ostringstream& writer, const shared_ptr<Node>& node)
writer << print_table_row_dims("axes", quant_op->get_axes());
break;
}
case OP_TYPEID::Softmax:
{
const shared_ptr<op::Softmax> softmax_op = static_pointer_cast<op::Softmax>(node);
writer << print_table_row_dims("axes", softmax_op->get_axes());
break;
}
case OP_TYPEID::Concat:
{
const shared_ptr<op::Concat> concat_op = static_pointer_cast<op::Concat>(node);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment