/*
* Copyright 2014 OpenRQ Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.fec.openrq;
import static net.fec.openrq.util.math.ExtraMath.ceilDiv;
import java.util.Random;
import java.util.concurrent.TimeUnit;
import net.fec.openrq.parameters.FECParameters;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
import org.openjdk.jmh.annotations.Measurement;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.Warmup;
@OutputTimeUnit(TimeUnit.MICROSECONDS)
@Warmup(iterations = 5)
@Measurement(iterations = 10)
@BenchmarkMode(Mode.AverageTime)
@Fork(0)
@State(Scope.Benchmark)
public class SourceBlockEncodingTest {
// default parameter values
private static final int DEF_DATA_LEN = 15000;
private static final int DEF_NUM_SOURCE_SYMBOLS = 10;
private static ArraySourceBlockEncoder newSBEncoder(int F, int K) {
TestingCommon.checkParamsForSingleSourceBlockData(F, K);
// force single source block
final FECParameters fecParams = FECParameters.newParameters(F, ceilDiv(F, K), 1);
final Random rand = TestingCommon.newSeededRandom();
final byte[] data = TestingCommon.randomBytes(F, rand);
return (ArraySourceBlockEncoder)OpenRQ.newEncoder(data, fecParams).sourceBlock(0);
}
@Param({"" + DEF_DATA_LEN})
private int datalen;
@Param({"" + DEF_NUM_SOURCE_SYMBOLS})
private int srcsymbs;
private ArraySourceBlockEncoder enc;
public SourceBlockEncodingTest() {
this.datalen = DEF_DATA_LEN;
this.srcsymbs = DEF_NUM_SOURCE_SYMBOLS;
this.enc = null;
}
@Setup
public void setup() {
enc = newSBEncoder(datalen, srcsymbs);
}
@Benchmark
public void test() {
ArraySourceBlockEncoder.forceInterSymbolsGen(enc);
}
// for CPU/memory profiling
public static void main(String[] args) {
final SourceBlockEncodingTest test = new SourceBlockEncodingTest();
test.setup();
final int iters = 100_000;
for (int i = 0; i < iters; i++) {
test.test();
System.out.println(i);
}
}
}