Verilog to Routing - VPR
read_place.h
Go to the documentation of this file.
1 #ifndef READ_PLACE_H
2 #define READ_PLACE_H
3 
4 void read_place(
5  const char* net_file,
6  const char* place_file,
7  bool verify_file_hashes,
8  const DeviceGrid& grid);
9 
10 void print_place(const char* net_file,
11  const char* net_id,
12  const char* place_file);
13 
14 void read_user_pad_loc(const char* pad_loc_file);
15 
16 #endif
Definition: device_grid.h:17
void read_user_pad_loc(const char *pad_loc_file)
Reads in the locations of the IO pads from a file.
Definition: read_place.cpp:143
void read_place(const char *net_file, const char *place_file, bool verify_file_hashes, const DeviceGrid &grid)
Definition: read_place.cpp:18
void print_place(const char *net_file, const char *net_id, const char *place_file)
Prints out the placement of the circuit.
Definition: read_place.cpp:294