Skip to content

Commit

Permalink
Minor test polish
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDBlack committed Jul 25, 2018
1 parent 040c93f commit 90fba44
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -211,7 +211,8 @@ public void validateXceptionImport() throws Exception {

@Test
public void testCudnnDilation(){
int[] k = new int[]{2,3,4};
//Sanity check on dilated conv execution
int[] k = new int[]{2,3,4,5};
int[] d = new int[]{1,2,3,4};

for( int[] inputSize : new int[][]{{10,1,28,28}, {3,3,224,224}}) {
Expand All @@ -231,7 +232,7 @@ public void testCudnnDilation(){
net.init();

INDArray in = Nd4j.create(inputSize);
INDArray out = net.output(in);
net.output(in);
}
}
}
Expand Down

0 comments on commit 90fba44

Please sign in to comment.