File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -561,11 +561,10 @@ static int test_batch_forward_relu()
561561{
562562 // Build a minimal Input -> ReLU network
563563 // ReLU with slope=0.1 (leaky relu)
564- const char param_str[] =
565- " 7767517\n "
566- " 2 2\n "
567- " Input input 0 1 data\n "
568- " ReLU relu 1 1 data output 0=1.000000e-01\n " ;
564+ const char param_str[] = " 7767517\n "
565+ " 2 2\n "
566+ " Input input 0 1 data\n "
567+ " ReLU relu 1 1 data output 0=1.000000e-01\n " ;
569568
570569 ncnn::Net net;
571570 net.load_param_mem (param_str);
@@ -640,11 +639,10 @@ static int test_batch_forward_relu()
640639static int test_batch_forward_pooling ()
641640{
642641 // Input -> Pooling(max, 2x2, stride=2)
643- const char param_str[] =
644- " 7767517\n "
645- " 2 2\n "
646- " Input input 0 1 data\n "
647- " Pooling pooling 1 1 data output 0=0 1=2 2=2\n " ;
642+ const char param_str[] = " 7767517\n "
643+ " 2 2\n "
644+ " Input input 0 1 data\n "
645+ " Pooling pooling 1 1 data output 0=0 1=2 2=2\n " ;
648646
649647 ncnn::Net net;
650648 net.load_param_mem (param_str);
You can’t perform that action at this time.
0 commit comments