mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 22:07:41 -04:00
FPU DPI fallback
This commit is contained in:
parent
0a0b28aac0
commit
df711986bc
29 changed files with 1147 additions and 1329 deletions
|
@ -94,6 +94,7 @@ if args.outc != 'none':
|
|||
// Translated from VX_config.vh:
|
||||
'''[1:].format(date=datetime.now()), file=f)
|
||||
with open(path.join(script_dir, '../rtl/VX_config.vh'), 'r') as r:
|
||||
lineno = 0
|
||||
for line in r:
|
||||
if in_expansion:
|
||||
f.write(post_process_line(line))
|
||||
|
@ -107,7 +108,8 @@ if args.outc != 'none':
|
|||
f.write(post_process_line(pat.sub(repl, line)))
|
||||
break
|
||||
else:
|
||||
raise ValueError('failed to find rule for: ' + line)
|
||||
raise ValueError('failed to find rule for: "' + line + '" (' + str(lineno) + ')')
|
||||
lineno = lineno + 1
|
||||
|
||||
print('''
|
||||
// Misc
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue