pygsti.objects.EvalTree.split

EvalTree.split(maxSubTreeSize=None, numSubTrees=None)
Split this tree into sub-trees in order to reduce the
maximum size of any tree (useful for limiting memory consumption or for using multiple cores). Must specify either maxSubTreeSize or numSubTrees.
Parameters:
  • maxSubTreeSize (int, optional) – The maximum size (i.e. list length) of each sub-tree. If the original tree is smaller than this size, no splitting will occur. If None, then there is no limit.
  • numSubTrees (int, optional) – The maximum size (i.e. list length) of each sub-tree. If the original tree is smaller than this size, no splitting will occur.
Returns:

Return type:

None