Package edu.byu.ece.rapidSmith.device.helper

Examples of edu.byu.ece.rapidSmith.device.helper.TileSinks


   * sink wires, we must have a full routing map in place.
   */
  protected void removeDuplicateTileSinks(WireEnumerator we){
    for(int i=0; i < this.rows; i++){
      for(int j=0; j < this.columns; j++){
        tiles[i][j].setSinks(tileSinksPool.add(new TileSinks(tiles[i][j].getSinks())).sinks);
      }
    }
  }
View Full Code Here


          // Name
          tileNames[index] = t.getName();
          // Type
          tileTypes[index] = t.getType().ordinal();
          // Sinks
          tileSinks[index] = tileSinksPool.getEnumerationValue(new TileSinks(t.getSinks()));
          // Sources
          tileSources[index] = tileSourcesPool.getEnumerationValue(new TileSources(t.getSources()));
          // Wires
          tileWires[index] = tileWiresPool.getEnumerationValue(new TileWires(t.getWireHashMap()));
          // PrimitiveSites Count
View Full Code Here

TOP

Related Classes of edu.byu.ece.rapidSmith.device.helper.TileSinks

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.