Loading src/TNL/Algorithms/Segments/BiEllpack.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -84,6 +84,7 @@ String BiEllpack< Device, Index, IndexAllocator, Organization, WarpSize >:: getSerializationType() { // FIXME: the serialized data DEPEND on the Organization and WarpSize parameters, so it should be reflected in the serialization type return "BiEllpack< [any_device], " + TNL::getSerializationType< IndexType >() + " >"; } Loading src/TNL/Algorithms/Segments/BiEllpackView.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -97,6 +97,7 @@ String BiEllpackView< Device, Index, Organization, WarpSize >:: getSerializationType() { // FIXME: the serialized data DEPEND on the Organization and WarpSize parameters, so it should be reflected in the serialization type return "BiEllpack< [any_device], " + TNL::getSerializationType< IndexType >() + " >"; } Loading src/TNL/Algorithms/Segments/CSR.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -80,6 +80,7 @@ getSerializationType() { return "CSR< [any_device], " + TNL::getSerializationType< IndexType >() + ", " + // FIXME: the serialized data do not depend on the the kernel type so it should not be in the serialization type TNL::getSerializationType< KernelType >() + " >"; } Loading src/TNL/Algorithms/Segments/CSRView.hpp +2 −1 Original line number Diff line number Diff line Loading @@ -80,7 +80,8 @@ CSRView< Device, Index, Kernel >:: getSerializationType() { return "CSR< [any_device], " + TNL::getSerializationType< IndexType >() + TNL::getSerializationType< IndexType >() + ", " + // FIXME: the serialized data do not depend on the the kernel type so it should not be in the serialization type TNL::getSerializationType< KernelType >() + " >"; } Loading src/TNL/Algorithms/Segments/ChunkedEllpack.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -88,6 +88,7 @@ String ChunkedEllpack< Device, Index, IndexAllocator, Organization >:: getSerializationType() { // FIXME: the serialized data DEPEND on the Organization parameter, so it should be reflected in the serialization type return "ChunkedEllpack< [any_device], " + TNL::getSerializationType< IndexType >() + " >"; } Loading Loading
src/TNL/Algorithms/Segments/BiEllpack.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -84,6 +84,7 @@ String BiEllpack< Device, Index, IndexAllocator, Organization, WarpSize >:: getSerializationType() { // FIXME: the serialized data DEPEND on the Organization and WarpSize parameters, so it should be reflected in the serialization type return "BiEllpack< [any_device], " + TNL::getSerializationType< IndexType >() + " >"; } Loading
src/TNL/Algorithms/Segments/BiEllpackView.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -97,6 +97,7 @@ String BiEllpackView< Device, Index, Organization, WarpSize >:: getSerializationType() { // FIXME: the serialized data DEPEND on the Organization and WarpSize parameters, so it should be reflected in the serialization type return "BiEllpack< [any_device], " + TNL::getSerializationType< IndexType >() + " >"; } Loading
src/TNL/Algorithms/Segments/CSR.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -80,6 +80,7 @@ getSerializationType() { return "CSR< [any_device], " + TNL::getSerializationType< IndexType >() + ", " + // FIXME: the serialized data do not depend on the the kernel type so it should not be in the serialization type TNL::getSerializationType< KernelType >() + " >"; } Loading
src/TNL/Algorithms/Segments/CSRView.hpp +2 −1 Original line number Diff line number Diff line Loading @@ -80,7 +80,8 @@ CSRView< Device, Index, Kernel >:: getSerializationType() { return "CSR< [any_device], " + TNL::getSerializationType< IndexType >() + TNL::getSerializationType< IndexType >() + ", " + // FIXME: the serialized data do not depend on the the kernel type so it should not be in the serialization type TNL::getSerializationType< KernelType >() + " >"; } Loading
src/TNL/Algorithms/Segments/ChunkedEllpack.hpp +1 −0 Original line number Diff line number Diff line Loading @@ -88,6 +88,7 @@ String ChunkedEllpack< Device, Index, IndexAllocator, Organization >:: getSerializationType() { // FIXME: the serialized data DEPEND on the Organization parameter, so it should be reflected in the serialization type return "ChunkedEllpack< [any_device], " + TNL::getSerializationType< IndexType >() + " >"; } Loading