Skip to content

Commit

Permalink
Adding print statement for FPG file generation
Browse files Browse the repository at this point in the history
  • Loading branch information
wnew committed Jul 27, 2018
1 parent a3d0e0c commit 0353ea0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jasper_library/exec_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def shell_source(script):

if opts.software:
binary = backend.binary_loc
output_fpg = tf.frontend_target_base[:-4] + '_%d-%02d-%02d_%02d%02d.fpg' % (
backend.output_fpg = tf.frontend_target_base[:-4] + '_%d-%02d-%02d_%02d%02d.fpg' % (
tf.start_time.tm_year, tf.start_time.tm_mon, tf.start_time.tm_mday,
tf.start_time.tm_hour, tf.start_time.tm_min)

Expand All @@ -177,6 +177,7 @@ def shell_source(script):
backend.compile_dir)
os.system(mkbof_cmd)
print 'Created %s/%s' % (backend.output_dir, backend.output_bof)
backend.mkfpg(binary, output_fpg)
backend.mkfpg(binary, backend.output_fpg)
print 'Created %s/%s' % (backend.output_dir, backend.output_fpg)

# end

0 comments on commit 0353ea0

Please sign in to comment.