#!/bin/bash12# Clean up from last run3rm -f output.flp45# HotSpot comes with a thermal-aware floorplanning tool that can be6# easily configured to optimize for an arbitrary objective function. It7# takes a listing of the functional block names, areas, allowable aspect8# ratios and the connectivity between the blocks as its input from a9# file. 'ev6.desc' is such a 'floorplan description' file (as opposed to10# the 'floorplan file' ev6.flp). In order to evaluate the generated11# floorplans for thermal merit, HotFloorplan also needs a set of average12# power values for each of the functional blocks. This is also13# specified in a file (e.g.: 'avg.p'). With these files as inputs, the14# command to run HotFloorplan to produce an output file 'output.flp'15# containing the floorplan generated is given by:16../../hotfloorplan -c example.config -f ev6.desc -p avg.p -o output.flp171819