diff --git a/_nx_parallel/__init__.py b/_nx_parallel/__init__.py index 69ea8551..3cf86891 100644 --- a/_nx_parallel/__init__.py +++ b/_nx_parallel/__init__.py @@ -87,11 +87,6 @@ def get_info(): 'get_chunks : str, function (default = "chunks")': "A function that takes in a list of all the nodes as input and returns an iterable `node_chunks`. The default chunking is done by slicing the `nodes` into `n` chunks, where `n` is the number of CPU cores." }, }, - "chunks": { - "url": "https://github.com/networkx/nx-parallel/blob/main/nx_parallel/utils/chunk.py#L8", - "additional_docs": "Divides an iterable into chunks of size n", - "additional_parameters": None, - }, "closeness_vitality": { "url": "https://github.com/networkx/nx-parallel/blob/main/nx_parallel/algorithms/vitality.py#L9", "additional_docs": "The parallel computation is implemented only when the node is not specified. The closeness vitality for each node is computed concurrently.", @@ -99,19 +94,6 @@ def get_info(): 'get_chunks : str, function (default = "chunks")': "A function that takes in a list of all the nodes as input and returns an iterable `node_chunks`. The default chunking is done by slicing the `nodes` into `n` chunks, where `n` is the total number of CPU cores." }, }, - "cpu_count": { - "url": "https://github.com/networkx/nx-parallel/blob/main/nx_parallel/utils/chunk.py#L18", - "additional_docs": "Returns the number of logical CPUs or cores", - "additional_parameters": None, - }, - "create_iterables": { - "url": "https://github.com/networkx/nx-parallel/blob/main/nx_parallel/utils/chunk.py#L26", - "additional_docs": "Creates an iterable of function inputs for parallel computation based on the provided iterator type.", - "additional_parameters": { - "G : NetworkX graph": "iterator : str Type of iterator. Valid values are 'node', 'edge', 'isolate'", - "iterable : Iterable": "An iterable of function inputs.", - }, - }, "edge_betweenness_centrality": { "url": "https://github.com/networkx/nx-parallel/blob/main/nx_parallel/algorithms/centrality/betweenness.py#L94", "additional_docs": "The parallel computation is implemented by dividing the nodes into chunks and computing edge betweenness centrality for each chunk concurrently.", diff --git a/_nx_parallel/update_get_info.py b/_nx_parallel/update_get_info.py index 763c85b7..6ba5bc44 100644 --- a/_nx_parallel/update_get_info.py +++ b/_nx_parallel/update_get_info.py @@ -20,6 +20,8 @@ def get_funcs_info(): nx_parallel_dir = os.path.join(os.getcwd(), "nx_parallel") for root, dirs, files in os.walk(nx_parallel_dir): + if root[-29:] == "nx-parallel/nx_parallel/utils": + continue for file in files: if ( file.endswith(".py")