Lattice Diamond 命令行工具不知道 'synthesis' 命令

Lattice Diamond command line tool doesn't know 'synthesis' command

我在 Windows 7 上安装了(免费的)Lattice Diamond 3.7,我想从命令行 运行 综合作业。我生成了一个包含所有相关命令行选项的 *.prj 文件,例如部分、顶层和所有源文件。

然后我从我的 PowerShell 开始 pnmainc.exe 并执行:synthesis -f arith_prng.prj

-a "ECP5UM"
-top arith_prng
-logfile D:\git\PoC\temp\lattice\arith_prng.lse.log
-lib poc
-vhd D:/git/PoC/tb/common/my_project.vhdl
-vhd D:/git/PoC/tb/common/my_config_KC705.vhdl
-vhd D:/git/PoC/src/common/utils.vhdl
-vhd D:/git/PoC/src/common/config.vhdl
-vhd D:/git/PoC/src/common/math.vhdl
-vhd D:/git/PoC/src/common/strings.vhdl
-vhd D:/git/PoC/src/common/vectors.vhdl
-vhd D:/git/PoC/src/common/physical.vhdl
-vhd D:/git/PoC/src/common/components.vhdl
-vhd D:/git/PoC/src/arith/arith.pkg.vhdl
-vhd D:/git/PoC/src/arith/arith_prng.vhdl

合成过程开始并结束。接下来,我尝试使用包装 Python 脚本实现相同的行为,控制子进程的 STDIN 和 STDOUT。

我可以执行一些命令,但是synthesis被报告为未知命令。它没有在帮助中列出。我想,那是因为 synthesis.exe 是一个外部程序。

例如,如果我发送 help,则显示所有帮助主题。

我可以对来自 Python 的 Diamond 的 运行 Tcl 命令做些什么?

这是我的 Python 代码,用于在 Tcl-Shell 包装器上进行试验。

from subprocess      import Popen    as Subprocess_Popen
from subprocess      import PIPE      as Subprocess_Pipe
from subprocess      import STDOUT    as Subprocess_StdOut

class Executable:
  _POC_BOUNDARY = "====== POC BOUNDARY ======"

  def __init__(self, executablePath):
    self._process =    None
    self._executablePath =    executablePath

  @property
  def Path(self):
    return self._executablePath

  def StartProcess(self, parameterList):
    parameterList.insert(0, str(self._executablePath))
    self._process = Subprocess_Popen(parameterList, stdin=Subprocess_Pipe, stdout=Subprocess_Pipe, stderr=Subprocess_StdOut, universal_newlines=True, bufsize=16, shell=True)

  def Send(self, line):
    print("  sending command: {0}".format(line))
    self._process.stdin.write(line + "\n")
    self._process.stdin.flush()

  def SendBoundary(self):
    print("  sending boundary")
    self.Send("puts \"{0}\"\n".format(self._POC_BOUNDARY))

  def GetReader(self):
    for line in iter(self._process.stdout.readline, ""):
      yield line[:-1]

tclShell = Executable(r"D:\Lattice\diamond.7_x64\bin\nt64\pnmainc.exe")
print("starting process: {0!s}".format(tclShell.Path))
tclShell.StartProcess([])
reader = tclShell.GetReader()
iterator = iter(reader)

# send boundary and wait until pnmainc.exe is ready
tclShell.SendBoundary()
for line in iterator:
  print(line)
  if (line == tclShell._POC_BOUNDARY):
    break
print("pnmainc.exe is ready...")

tclShell.Send("help")
tclShell.SendBoundary()
for line in iterator:
  print(line)
  if (line == tclShell._POC_BOUNDARY):
    break
print("pnmainc.exe is ready...")

tclShell.Send("synthesis -f arith_prng.prj")
tclShell.SendBoundary()
for line in iterator:
  print(line)
  if (line == tclShell._POC_BOUNDARY):
    break
print("pnmainc.exe is ready...")

print("exit program")
tclShell.Send("exit")
print("reading output")
for line in iterator:
  print(line)

print("done")

要运行一个合成,就不需要用pnmainc做TCL脚本了。您可以直接 运行 合成器二进制文件,如下所示。

Windows

synthesises.exe 必须是 运行 来自带有所有必需的 Lattice 环境变量的命令 shell。环境由 bin/nt64 目录中名为 pnwrap.exe 的可执行文件设置。在您的示例中,必须从 shell:

中按如下方式调用此可执行文件
D:\Lattice\diamond.7_x64\bin\nt64\pnwrap.exe -exec D:\Lattice\diamond.7_x64\ispfpga\bin\nt64\synthesis.exe -f arith_prng.prj

-exec参数在Lattice环境中指定可执行文件到运行。以下所有参数都传递给 synthesis.exe.

在 Python 中,您可以 运行 合成器(使用您的 Executable class):

exe = Executable(r"D:\Lattice\diamond.7_x64\bin\nt64\pnwrap.exe")
parameterList = ['-exec', r"D:\Lattice\diamond.7_x64\ispfpga\bin\nt64\synthesis.exe", '-f', 'arith_prng']
exe.StartProcess(parameterList)

不幸的是,pnwrap.exe 打开了一个新命令 shell window 来设置环境。因此,无法通过管道重定向输出。但是,日志也会在 .prj 文件中指定的日志文件中找到。

Linux

首先,您必须加载 Lattice Diamond 环境以设置所有必要的环境变量。使用 Bash 语法,这将是:

bindir=/opt/lattice/diamond/3.7_x64/bin/lin64
source $bindir/diamond_env

然后,您可以使用命令行从 ispfpga/bin/lin64 目录直接执行 synthesis,如您的示例所示:

synthesis -f arith_prng.prj

synthesis 可执行文件将在 $PATH 中找到。

在 Python 中,您可以 运行 合成器(使用您的 Executable class):

exe = Executable('/opt/lattice/diamond/3.7_x64/ispfpga/bin/lin64/synthesis')
parameterList = ['-f', 'arith_prng']
exe.StartProcess(parameterList)