Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add parallelization for single evaluation tree #24

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update
hwpang committed Jul 12, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit c6facbe4e5dedb06183b5137f86f7e3fb772b0cf
2 changes: 1 addition & 1 deletion pysidt/sidt.py
Original file line number Diff line number Diff line change
@@ -203,7 +203,6 @@ def extend_tree_from_node(self, parent):
exts = self.generate_extensions(parent)
extlist = [ext[0] for ext in exts]
if not extlist:
self.skip_nodes.append(parent.name)
return None
ext = self.choose_extension(parent, extlist)
new, comp = split_mols(parent.items, ext)
@@ -308,6 +307,7 @@ def generate_tree(self, data=None, check_data=True):

for out, node in zip(outs, nodes):
if out is None:
self.skip_nodes.append(node.name)
continue
self.add_extension(node, *out)