use of org.junit.Ignore in project deeplearning4j by deeplearning4j.
the class TestKryoWarning method testKryoMessageMLNCorrectConfigKryo.
@Test
@Ignore
public void testKryoMessageMLNCorrectConfigKryo() {
//Should NOT print warning message
SparkConf sparkConf = new SparkConf().setMaster("local[*]").setAppName("sparktest").set("spark.serializer", "org.apache.spark.serializer.KryoSerializer").set("spark.kryo.registrator", "org.nd4j.Nd4jRegistrator");
doTestMLN(sparkConf);
}
use of org.junit.Ignore in project deeplearning4j by deeplearning4j.
the class TestKryoWarning method testKryoMessageMLNCorrectConfigNoKryo.
@Test
@Ignore
public void testKryoMessageMLNCorrectConfigNoKryo() {
//Should NOT print warning message
SparkConf sparkConf = new SparkConf().setMaster("local[*]").setAppName("sparktest");
doTestMLN(sparkConf);
}
use of org.junit.Ignore in project deeplearning4j by deeplearning4j.
the class TestKryoWarning method testKryoMessageCGIncorrectConfig.
@Test
@Ignore
public void testKryoMessageCGIncorrectConfig() {
//Should print warning message
SparkConf sparkConf = new SparkConf().setMaster("local[*]").setAppName("sparktest").set("spark.serializer", "org.apache.spark.serializer.KryoSerializer");
doTestCG(sparkConf);
}
use of org.junit.Ignore in project deeplearning4j by deeplearning4j.
the class TestKryoWarning method testKryoMessageCGCorrectConfigKryo.
@Test
@Ignore
public void testKryoMessageCGCorrectConfigKryo() {
//Should NOT print warning message
SparkConf sparkConf = new SparkConf().setMaster("local[*]").setAppName("sparktest").set("spark.serializer", "org.apache.spark.serializer.KryoSerializer").set("spark.kryo.registrator", "org.nd4j.Nd4jRegistrator");
doTestCG(sparkConf);
}
use of org.junit.Ignore in project deeplearning4j by deeplearning4j.
the class TestKryoWarning method testKryoMessageMLNIncorrectConfig.
@Test
@Ignore
public void testKryoMessageMLNIncorrectConfig() {
//Should print warning message
SparkConf sparkConf = new SparkConf().setMaster("local[*]").setAppName("sparktest").set("spark.serializer", "org.apache.spark.serializer.KryoSerializer");
doTestMLN(sparkConf);
}
Aggregations