コード例 #1
0
ファイル: icestorm.py プロジェクト: vmskhan/fpga-tool-perf
 def check_env():
     return {
         'yosys': have_exec('yosys'),
         'arachne-pnr': have_exec('arachne-pnr'),
         'icepack': have_exec('icepack'),
         'icetime': have_exec('icetime'),
     }
コード例 #2
0
ファイル: icestorm.py プロジェクト: vmskhan/fpga-tool-perf
 def check_env():
     return {
         'yosys': have_exec('yosys'),
         'nextpnr-ice40': have_exec('nextpnr-ice40'),
         'icepack': have_exec('icepack'),
         'icetime': have_exec('icetime'),
     }
コード例 #3
0
ファイル: radiant.py プロジェクト: SymbiFlow/fpga-tool-perf
 def check_env():
     return {
         'RADIANTDIR': os.path.exists(Radiant.RADIANTDIR_DEFAULT),
         'iceunpack': have_exec('iceunpack'),
         'icetime': have_exec('icetime'),
     }
コード例 #4
0
 def check_env():
     return {
         'yosys': have_exec('yosys'),
         'vpr': have_exec('vpr'),
         'prjxray-config': have_exec('prjxray-config')
     }
コード例 #5
0
 def check_env():
     return {
         'yosys': have_exec('yosys'),
         'nextpnr': have_exec('nextpnr-xilinx'),
         'prjxray-config': have_exec('prjxray-config'),
     }
コード例 #6
0
ファイル: icecube.py プロジェクト: SymbiFlow/fpga-tool-perf
 def check_env():
     return {
         'ICECUBEDIR': os.path.exists(Icecube2.ICECUBEDIR_DEFAULT),
         'icetime': have_exec('icetime'),
     }
コード例 #7
0
ファイル: vivado.py プロジェクト: SymbiFlow/fpga-tool-perf
 def check_env():
     return {
         'yosys': have_exec('yosys'),
         'vivado': have_exec('vivado'),
     }
コード例 #8
0
ファイル: vivado.py プロジェクト: SymbiFlow/fpga-tool-perf
 def check_env():
     return {
         'vivado': have_exec('vivado'),
     }
コード例 #9
0
ファイル: nextpnr.py プロジェクト: SymbiFlow/fpga-tool-perf
 def check_env():
     return {
         'yosys': have_exec('yosys'),
         'nextpnr-nexus': have_exec('nextpnr-nexus'),
     }
コード例 #10
0
ファイル: nextpnr.py プロジェクト: SymbiFlow/fpga-tool-perf
 def check_env(toolchain):
     return {
         'yosys': have_exec('yosys'),
         'nextpnr': have_exec(f'{toolchain}'),
     }