Examples of FECCode


Examples of com.onionnetworks.fec.FECCode

  public void testBenchmark() {
    if(!TestProperty.BENCHMARK) return;

    int lim = fecMath.gfSize + 1;
    FECCode maybeNative = FECCodeFactory.getDefault().createFECCode(KK, lim);
    FECCode pureCode = new PureCode(KK, lim);
    int[] index = new int[KK];

    for (int i = 0; i < KK; i++)
      index[i] = lim - i - 1;

    byte[] src = new byte[KK * PACKET_SIZE];
    Util.rand.nextBytes(src);
    Buffer[] srcBufs = new Buffer[KK];
    for (int i = 0; i < srcBufs.length; i++)
      srcBufs[i] = new Buffer(src, i * PACKET_SIZE, PACKET_SIZE);

    byte[] repair = new byte[KK * PACKET_SIZE];
    Buffer[] repairBufs = new Buffer[KK];
    for (int i = 0; i < repairBufs.length; i++) {
      repairBufs[i] = new Buffer(repair, i * PACKET_SIZE, PACKET_SIZE);
    }

    int[] indexBackup = new int[index.length];
    System.arraycopy(index,0,indexBackup,0,index.length);

    System.out.println("Getting ready for benchmarking encode()");
    long t1 = System.currentTimeMillis();
    maybeNative.encode(srcBufs, repairBufs, index);
    long t2 = System.currentTimeMillis();
    pureCode.encode(srcBufs, repairBufs, indexBackup);
    long t3 = System.currentTimeMillis();

    float dNativeEncode = t2 - t1;
    float dPureEncode = t3 - t2;

    Buffer[] repairBufs2 = repairBufs.clone();
    System.arraycopy(repairBufs, 0, repairBufs2, 0, repairBufs.length);
    System.out.println("Getting ready for benchmarking decode()");
    t1 = System.currentTimeMillis();
    maybeNative.decode(repairBufs, index);
    t2 = System.currentTimeMillis();
    pureCode.decode(repairBufs2, indexBackup);
    t3 = System.currentTimeMillis();

    float dNativeDecode = t2 - t1;
    float dPureDecode = t3 - t2;

View Full Code Here

Examples of com.onionnetworks.fec.FECCode

    System.out.println("Native code took "+dNativeDecode+"ms whereas java's code took "+dPureDecode+"ms to decode()");
  }

  public void testSimpleRev() {
    int lim = fecMath.gfSize + 1;
    FECCode code = FECCodeFactory.getDefault().createFECCode(KK, lim);
    FECCode code2 = new PureCode(KK, lim);
    int[] index = new int[KK];

    for (int i = 0; i < KK; i++)
      index[i] = lim - i - 1;
View Full Code Here

Examples of com.onionnetworks.fec.FECCode

    encodeDecode(code2, code, index);
  }

  public void testSimple() {
    int lim = fecMath.gfSize + 1;
    FECCode code = FECCodeFactory.getDefault().createFECCode(KK, lim);
    FECCode code2 = new PureCode(KK, lim);
    int[] index = new int[KK];

    for (int i = 0; i < KK; i++)
      index[i] = KK - i;
    encodeDecode(code, code2, index);
View Full Code Here

Examples of com.onionnetworks.fec.FECCode

    encodeDecode(code2, code, index);
  }

  public void testShifted() {
    int lim = fecMath.gfSize + 1;
    FECCode code = FECCodeFactory.getDefault().createFECCode(KK, lim);
    FECCode code2 = new PureCode(KK, lim);
    int[] index = new int[KK];

    int max_i0 = KK / 2;
    if (max_i0 + KK > lim)
      max_i0 = lim - KK;
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.