mirror of https://github.com/VLSIDA/OpenRAM.git
Update copyright. Add header to all OpenRAM files.
This commit is contained in:
parent
0439b129bb
commit
3f9a987e51
2
LICENSE
2
LICENSE
|
|
@ -1,6 +1,6 @@
|
||||||
BSD 3-Clause License
|
BSD 3-Clause License
|
||||||
|
|
||||||
Copyright (c) 2018-2019 Regents of the University of California and The Board
|
Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
of Regents for the Oklahoma Agricultural and Mechanical College
|
of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
(acting for and on behalf of Oklahoma State University)
|
(acting for and on behalf of Oklahoma State University)
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import hierarchy_design
|
import hierarchy_design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from hierarchy_design import hierarchy_design
|
from hierarchy_design import hierarchy_design
|
||||||
import contact
|
import contact
|
||||||
import globals
|
import globals
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
This provides a set of useful generic types for the gdsMill interface.
|
This provides a set of useful generic types for the gdsMill interface.
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import hierarchy_layout
|
import hierarchy_layout
|
||||||
import hierarchy_spice
|
import hierarchy_spice
|
||||||
import globals
|
import globals
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import itertools
|
import itertools
|
||||||
import geometry
|
import geometry
|
||||||
import gdsMill
|
import gdsMill
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import gdsMill
|
import gdsMill
|
||||||
import tech
|
import tech
|
||||||
import globals
|
import globals
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from tech import GDS, drc
|
from tech import GDS, drc
|
||||||
from vector import vector
|
from vector import vector
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc
|
from tech import drc
|
||||||
import debug
|
import debug
|
||||||
from design import design
|
from design import design
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import os
|
import os
|
||||||
import gdsMill
|
import gdsMill
|
||||||
import tech
|
import tech
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import math
|
import math
|
||||||
import tech
|
import tech
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
|
|
||||||
class verilog:
|
class verilog:
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc
|
from tech import drc
|
||||||
import debug
|
import debug
|
||||||
from wire_path import wire_path
|
from wire_path import wire_path
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc
|
from tech import drc
|
||||||
from tech import layer as techlayer
|
from tech import layer as techlayer
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc, spice,parameter
|
from tech import drc, spice,parameter
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import os
|
import os
|
||||||
import debug
|
import debug
|
||||||
import globals
|
import globals
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys,re,shutil
|
import sys,re,shutil
|
||||||
import debug
|
import debug
|
||||||
import tech
|
import tech
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import re
|
import re
|
||||||
import debug
|
import debug
|
||||||
from globals import OPTS
|
from globals import OPTS
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys,re,shutil
|
import sys,re,shutil
|
||||||
import debug
|
import debug
|
||||||
import tech
|
import tech
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys,re,shutil
|
import sys,re,shutil
|
||||||
from design import design
|
from design import design
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import os,sys,re
|
import os,sys,re
|
||||||
import debug
|
import debug
|
||||||
import math
|
import math
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from tech import drc, parameter, spice
|
from tech import drc, parameter, spice
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from tech import drc, parameter, spice
|
from tech import drc, parameter, spice
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys,re,shutil
|
import sys,re,shutil
|
||||||
import debug
|
import debug
|
||||||
import tech
|
import tech
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys
|
import sys
|
||||||
import tech
|
import tech
|
||||||
from .stimuli import *
|
from .stimuli import *
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys,re,shutil
|
import sys,re,shutil
|
||||||
from design import design
|
from design import design
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
This file generates simple spice cards for simulation. There are
|
This file generates simple spice cards for simulation. There are
|
||||||
various functions that can be be used to generate stimulus for other
|
various functions that can be be used to generate stimulus for other
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from math import log
|
from math import log
|
||||||
import re
|
import re
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys,re,shutil
|
import sys,re,shutil
|
||||||
import debug
|
import debug
|
||||||
import tech
|
import tech
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from table_gen import *
|
from table_gen import *
|
||||||
import os
|
import os
|
||||||
import base64
|
import base64
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
"""
|
"""
|
||||||
This is a script to load data from the characterization and layout processes into
|
This is a script to load data from the characterization and layout processes into
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
class table_gen:
|
class table_gen:
|
||||||
"""small library of functions to generate the html tables"""
|
"""small library of functions to generate the html tables"""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import os
|
import os
|
||||||
import inspect
|
import inspect
|
||||||
import globals
|
import globals
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from drc_value import *
|
from drc_value import *
|
||||||
from drc_lut import *
|
from drc_lut import *
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
|
|
||||||
class drc_lut():
|
class drc_lut():
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
|
|
||||||
class drc_value():
|
class drc_value():
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,11 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
This script will generate a stimulus file for a given period, load, and slew input
|
This script will generate a stimulus file for a given period, load, and slew input
|
||||||
for the given dimension SRAM. It is useful for debugging after an SRAM has been
|
for the given dimension SRAM. It is useful for debugging after an SRAM has been
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
This is called globals.py, but it actually parses all the arguments and performs
|
This is called globals.py, but it actually parses all the arguments and performs
|
||||||
the global OpenRAM setup as well.
|
the global OpenRAM setup as well.
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys
|
import sys
|
||||||
from tech import drc, parameter
|
from tech import drc, parameter
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys
|
import sys
|
||||||
from tech import drc, parameter
|
from tech import drc, parameter
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc, spice
|
from tech import drc, spice
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from math import log
|
from math import log
|
||||||
import design
|
import design
|
||||||
from tech import drc, parameter
|
from tech import drc, parameter
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import globals
|
import globals
|
||||||
import design
|
import design
|
||||||
from math import log
|
from math import log
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc,parameter
|
from tech import drc,parameter
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc
|
from tech import drc
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
import math
|
import math
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc
|
from tech import drc
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc
|
from tech import drc
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys
|
import sys
|
||||||
from tech import drc, parameter
|
from tech import drc, parameter
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
from vector import vector
|
from vector import vector
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from math import log
|
from math import log
|
||||||
import design
|
import design
|
||||||
import contact
|
import contact
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from tech import drc
|
from tech import drc
|
||||||
import design
|
import design
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc, parameter
|
from tech import drc, parameter
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import design
|
import design
|
||||||
import utils
|
import utils
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from math import log
|
from math import log
|
||||||
import design
|
import design
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,11 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
SRAM Compiler
|
SRAM Compiler
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import optparse
|
import optparse
|
||||||
import getpass
|
import getpass
|
||||||
import os
|
import os
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from tech import drc
|
from tech import drc
|
||||||
from math import log
|
from math import log
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from tech import drc
|
from tech import drc
|
||||||
from math import log
|
from math import log
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import pgate
|
import pgate
|
||||||
import math
|
import math
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import pgate
|
import pgate
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
import pgate
|
import pgate
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import pgate
|
import pgate
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import pgate
|
import pgate
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import pgate
|
import pgate
|
||||||
import debug
|
import debug
|
||||||
from tech import drc, parameter, spice
|
from tech import drc, parameter, spice
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import contact
|
import contact
|
||||||
import pgate
|
import pgate
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import design
|
import design
|
||||||
import debug
|
import debug
|
||||||
from tech import drc, spice
|
from tech import drc, spice
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import pgate
|
import pgate
|
||||||
import debug
|
import debug
|
||||||
from tech import drc
|
from tech import drc
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
from vector3d import vector3d
|
from vector3d import vector3d
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import string
|
import string
|
||||||
import debug
|
import debug
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
class grid_cell:
|
class grid_cell:
|
||||||
"""
|
"""
|
||||||
A single cell that can be occupied in a given layer, blocked,
|
A single cell that can be occupied in a given layer, blocked,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from vector3d import vector3d
|
from vector3d import vector3d
|
||||||
from itertools import tee
|
from itertools import tee
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
"""
|
"""
|
||||||
Some utility functions for sets of grid cells.
|
Some utility functions for sets of grid cells.
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from direction import direction
|
from direction import direction
|
||||||
from pin_layout import pin_layout
|
from pin_layout import pin_layout
|
||||||
from vector3d import vector3d
|
from vector3d import vector3d
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import sys
|
import sys
|
||||||
import gdsMill
|
import gdsMill
|
||||||
from tech import drc,GDS
|
from tech import drc,GDS
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from tech import drc,layer
|
from tech import drc,layer
|
||||||
from contact import contact
|
from contact import contact
|
||||||
from pin_group import pin_group
|
from pin_group import pin_group
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
from itertools import tee
|
from itertools import tee
|
||||||
import debug
|
import debug
|
||||||
from heapq import heappush,heappop
|
from heapq import heappush,heappop
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import gdsMill
|
import gdsMill
|
||||||
import tech
|
import tech
|
||||||
from contact import contact
|
from contact import contact
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import debug
|
import debug
|
||||||
from vector3d import vector3d
|
from vector3d import vector3d
|
||||||
from grid import grid
|
from grid import grid
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
# See LICENSE for licensing information.
|
||||||
|
#
|
||||||
|
#Copyright (c) 2019 Regents of the University of California and The Board
|
||||||
|
#of Regents for the Oklahoma Agricultural and Mechanical College
|
||||||
|
#(acting for and on behalf of Oklahoma State University)
|
||||||
|
#All rights reserved.
|
||||||
|
#
|
||||||
import gdsMill
|
import gdsMill
|
||||||
import tech
|
import tech
|
||||||
import math
|
import math
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue