expand leaf FIFOs from 4 elements to 8 elements
authormegacz <adam@megacz.com>
Fri, 20 Mar 2009 02:11:00 +0000 (19:11 -0700)
committermegacz <adam@megacz.com>
Fri, 20 Mar 2009 02:11:00 +0000 (19:11 -0700)
src/edu/berkeley/fleet/fpga/FpgaDock.java

index ce99a83..b7212e8 100644 (file)
@@ -20,7 +20,8 @@ public class FpgaDock extends FleetTwoDock implements FabricElement {
 
     private static final int INSTRUCTION_FIFO_SIZE = 12;
     private static final int EPILOGUE_FIFO_SIZE    = 0;
-    private static final int DATA_FIFO_SIZE        = 4;
+    //private static final int DATA_FIFO_SIZE        = 4;
+    private static final int DATA_FIFO_SIZE        = 8;
         
     private FpgaDestination dataDestination;
     private FpgaDestination instructionDestination;