本文整理汇总了C#中Mapper.Build方法的典型用法代码示例。如果您正苦于以下问题:C# Mapper.Build方法的具体用法?C# Mapper.Build怎么用?C# Mapper.Build使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mapper
的用法示例。
在下文中一共展示了Mapper.Build方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Build
public bool Build()
{
string netlist = Configuration.NetList;
string ngdFile = netlist;
string ncdFile = PathHelper.Combine(OutputLocation.OutputDirectory,
string.Format("{0}.ncd", Path.GetFileNameWithoutExtension(netlist)));
string pcfFile = PathHelper.Combine(OutputLocation.OutputDirectory,
string.Format("{0}.pcf", Path.GetFileNameWithoutExtension(netlist)));
// Translate if required
if (string.IsNullOrEmpty(netlist) || !File.Exists(netlist))
{
throw new FileNotFoundException("NetList File does not exist.");
}
else if (string.Compare(Path.GetExtension(netlist), "ngd", true) != 0)
{
// Netlist is not NGD, must be compiled to NGD
NGDBuilder ngdBuilder = new NGDBuilder(Implementor.Toolchain, OutputLocation);
ngdBuilder.NetList = netlist;
ngdBuilder.TargetDevice = Configuration.TargetDevice;
ngdBuilder.ConstraintsFile = Configuration.Constraints;
// Translate
Logger.Instance.WriteVerbose("Running NetList Translation");
if (!ngdBuilder.Build())
{
Logger.Instance.WriteVerbose("Translate Failed");
return false;
}
Logger.Instance.WriteVerbose("Translate Complete");
ngdFile = PathHelper.Combine(OutputLocation.OutputDirectory,
string.Format("{0}.ngd", Path.GetFileNameWithoutExtension(netlist)));
}
// MAP
Mapper mapper = new Mapper(Implementor.Toolchain, OutputLocation);
mapper.NGDFile = ngdFile;
mapper.TargetDevice = Configuration.TargetDevice;
Logger.Instance.WriteVerbose("Running Mapping");
if (!mapper.Build())
{
Logger.Instance.WriteVerbose("Mapping Failed");
return false;
}
Logger.Instance.WriteVerbose("Mapping Complete");
// Place and Route
PlaceAndRouter placerouter = new PlaceAndRouter(Implementor.Toolchain, OutputLocation);
placerouter.NCDFile = ncdFile;
placerouter.PCFFile = pcfFile;
Logger.Instance.WriteVerbose("Running Place and Route");
if (!placerouter.Build())
{
Logger.Instance.WriteVerbose("Place and Route Failed");
return false;
}
Logger.Instance.WriteVerbose("Place and Route Complete");
return true;
}