Examples of testAttributeValue()


Examples of edu.byu.ece.rapidSmith.design.Instance.testAttributeValue()

            else if(isVirtex5){
              // Check all the LUTs in this slice
              Instance i = router.design.getInstanceAtPrimitiveSite(site);
              String[] letters = {"A","B","C","D"};
              for(String letter : letters){
                if(i.testAttributeValue(letter+"5LUT", "#OFF") &&
                   i.testAttributeValue(letter+"6LUT", "#OFF") &&
                   !i.hasAttribute("_GND_SOURCE") &&
                   !i.hasAttribute("_VCC_SOURCE")){
                  i.addAttribute(new Attribute(new Attribute(srcTypeString,"",letter)));
                  currStaticSourcePin = new Pin(true, letter, i);
View Full Code Here

Examples of edu.byu.ece.rapidSmith.design.Instance.testAttributeValue()

              // Check all the LUTs in this slice
              Instance i = router.design.getInstanceAtPrimitiveSite(site);
              String[] letters = {"A","B","C","D"};
              for(String letter : letters){
                if(i.testAttributeValue(letter+"5LUT", "#OFF") &&
                   i.testAttributeValue(letter+"6LUT", "#OFF") &&
                   !i.hasAttribute("_GND_SOURCE") &&
                   !i.hasAttribute("_VCC_SOURCE")){
                  i.addAttribute(new Attribute(new Attribute(srcTypeString,"",letter)));
                  currStaticSourcePin = new Pin(true, letter, i);
                  i.addPin(currStaticSourcePin);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.