Commit 52ee50b2 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added FIXME notes for the getSerializationType methods in segments

parent 9651e3c3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 >() + " >";
}

+1 −0
Original line number Diff line number Diff line
@@ -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 >() + " >";
}

+1 −0
Original line number Diff line number Diff line
@@ -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 >() + " >";
}

+2 −1
Original line number Diff line number Diff line
@@ -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 >() + " >";
}

+1 −0
Original line number Diff line number Diff line
@@ -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