2020-02-26 21:38:01 -06:00
|
|
|
#ifndef OPENFPGA_ATOM_NETLIST_UTILS_H
|
|
|
|
#define OPENFPGA_ATOM_NETLIST_UTILS_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include "atom_netlist.h"
|
2020-02-27 17:51:55 -06:00
|
|
|
#include "vpr_netlist_annotation.h"
|
2020-02-26 21:38:01 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-02-27 17:51:55 -06:00
|
|
|
std::vector<std::string> find_atom_netlist_clock_port_names(const AtomNetlist& atom_nlist,
|
|
|
|
const VprNetlistAnnotation& netlist_annotation);
|
2020-02-26 21:38:01 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|