From 4a04b58ccda9a9c4fef66a1e882277a5ed9378cc Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 20 Apr 2022 12:50:20 -0600 Subject: [PATCH 1/5] added __init__.py files to eblif stuff --- spydrnet/composers/eblif/__init__.py | 0 spydrnet/composers/eblif/tests/__init__.py | 0 spydrnet/parsers/eblif/__init__.py | 0 spydrnet/parsers/eblif/tests/__init__.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 spydrnet/composers/eblif/__init__.py create mode 100644 spydrnet/composers/eblif/tests/__init__.py create mode 100644 spydrnet/parsers/eblif/__init__.py create mode 100644 spydrnet/parsers/eblif/tests/__init__.py diff --git a/spydrnet/composers/eblif/__init__.py b/spydrnet/composers/eblif/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/spydrnet/composers/eblif/tests/__init__.py b/spydrnet/composers/eblif/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/spydrnet/parsers/eblif/__init__.py b/spydrnet/parsers/eblif/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/spydrnet/parsers/eblif/tests/__init__.py b/spydrnet/parsers/eblif/tests/__init__.py new file mode 100644 index 00000000..e69de29b From 2e0e9e16550042a3b6d06f9885349079cafb9a57 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 20 Apr 2022 12:50:50 -0600 Subject: [PATCH 2/5] minor edits --- spydrnet/parsers/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spydrnet/parsers/__init__.py b/spydrnet/parsers/__init__.py index d41abb05..d40df3fa 100644 --- a/spydrnet/parsers/__init__.py +++ b/spydrnet/parsers/__init__.py @@ -10,7 +10,7 @@ def parse(filename): """ - The parse function is able to parse either a EDIF (.edf) file or a Verilog file (.v) + The parse function is able to parse an EDIF (.edf) file, a Verilog file (.v), or an EBLIF file (.eblif). This functions also supports the parsing of .zip files. Such as the ones in support_files folder @@ -32,6 +32,8 @@ def parse(filename): Or a zip file that contains the edif or verilog file >>> netlist = sdn.parse('4bitadder.edf.zip') + + The same applies for EBLIF files """ basename_less_final_extension = os.path.splitext( os.path.basename(filename))[0] From f1e9dfead6002df3799b0723fedbf48897e83283 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 20 Apr 2022 12:51:53 -0600 Subject: [PATCH 3/5] fixed typo --- spydrnet/parsers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spydrnet/parsers/__init__.py b/spydrnet/parsers/__init__.py index d40df3fa..77f4c1ec 100644 --- a/spydrnet/parsers/__init__.py +++ b/spydrnet/parsers/__init__.py @@ -3,7 +3,7 @@ import tempfile """ -Init for Spydrnet. the funcitons below can be called directly +Init for Spydrnet. The functions below can be called directly """ From 4d4edf17d79d50cda5a0c2bb913ed2555a96f10f Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 20 Apr 2022 12:55:52 -0600 Subject: [PATCH 4/5] updated release notes --- RELEASE.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RELEASE.rst b/RELEASE.rst index f295ca03..c7da7a01 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,3 +1,8 @@ +SpyDrNet 1.11.1 +--------------- +April 20, 2022 +* Bug Fix. Now EBLIF support should actually be included. + SpyDrNet 1.11.0 --------------- April 9, 2022 From e8fddc43ecbd6129938750532e1bf684588c9f59 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Wed, 20 Apr 2022 12:58:03 -0600 Subject: [PATCH 5/5] updated release notes part 2 --- RELEASE.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE.rst b/RELEASE.rst index c7da7a01..ed4619b5 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -1,6 +1,7 @@ SpyDrNet 1.11.1 --------------- April 20, 2022 + * Bug Fix. Now EBLIF support should actually be included. SpyDrNet 1.11.0