IntelLabs / SkimCaffe

Caffe for Sparse Convolutional Neural Network
Other
238 stars 64 forks source link

Error when testing a model #18

Closed hlthu closed 6 years ago

hlthu commented 6 years ago

I trained a net using caffe, and used SkimCaffe to test, but there was a problem:

test log

I0410 12:01:05.241205  7479 caffe.cpp:295] Use CPU.
I0410 12:01:07.222965  7479 cpu_info.cpp:452] Processor speed [MHz]: 3000
I0410 12:01:07.223002  7479 cpu_info.cpp:455] Total number of sockets: 1
I0410 12:01:07.223007  7479 cpu_info.cpp:458] Total number of CPU cores: 10
I0410 12:01:07.223011  7479 cpu_info.cpp:461] Total number of processors: 20
I0410 12:01:07.223016  7479 cpu_info.cpp:464] GPU is used: no
I0410 12:01:07.223021  7479 cpu_info.cpp:467] OpenMP environmental variables are specified: yes
I0410 12:01:07.223026  7479 cpu_info.cpp:470] OpenMP thread bind allowed: no
I0410 12:01:07.223029  7479 cpu_info.cpp:473] Number of OpenMP threads: 10
I0410 12:01:07.224831  7479 net.cpp:342] The NetState phase (1) differed from the phase (0) specified by a rule in layer cifar
I0410 12:01:07.224894  7479 net.cpp:78] Initializing net from parameters: 
name: "CIFAR10_full"
state {
  phase: TEST
  level: 0
  stage: ""
}
layer {
  name: "cifar"
  type: "Data"
  top: "data"
  top: "label"
  include {
    phase: TEST
  }
  transform_param {
    mean_file: "examples/cifar10/mean.binaryproto"
  }
  data_param {
    source: "examples/cifar10/cifar10_test_lmdb"
    batch_size: 100
    backend: LMDB
  }
}
layer {
  name: "conv1"
  type: "Convolution"
  bottom: "data"
  top: "conv1"
  param {
    lr_mult: 1
    decay_mult: 1
    regularization_type: "L1"
  }
  param {
    lr_mult: 2
    decay_mult: 1
  }
  convolution_param {
    num_output: 32
    pad: 2
    kernel_size: 5
    stride: 1
    weight_filler {
      type: "gaussian"
      std: 0.0001
    }
    bias_filler {
      type: "constant"
    }
  }
}
layer {
  name: "pool1"
  type: "Pooling"
  bottom: "conv1"
  top: "pool1"
  pooling_param {
    pool: MAX
    kernel_size: 3
    stride: 2
  }
}
layer {
  name: "relu1"
  type: "ReLU"
  bottom: "pool1"
  top: "pool1"
}
layer {
  name: "norm1"
  type: "LRN"
  bottom: "pool1"
  top: "norm1"
  lrn_param {
    local_size: 3
    alpha: 5e-05
    beta: 0.75
    norm_region: WITHIN_CHANNEL
  }
}
layer {
  name: "conv2"
  type: "Convolution"
  bottom: "norm1"
  top: "conv2"
  param {
    lr_mult: 1
    decay_mult: 1
    regularization_type: "L1"
  }
  param {
    lr_mult: 2
    decay_mult: 1
  }
  convolution_param {
    num_output: 32
    pad: 2
    kernel_size: 5
    stride: 1
    weight_filler {
      type: "gaussian"
      std: 0.01
    }
    bias_filler {
      type: "constant"
    }
  }
}
layer {
  name: "relu2"
  type: "ReLU"
  bottom: "conv2"
  top: "conv2"
}
layer {
  name: "pool2"
  type: "Pooling"
  bottom: "conv2"
  top: "pool2"
  pooling_param {
    pool: AVE
    kernel_size: 3
    stride: 2
  }
}
layer {
  name: "norm2"
  type: "LRN"
  bottom: "pool2"
  top: "norm2"
  lrn_param {
    local_size: 3
    alpha: 5e-05
    beta: 0.75
    norm_region: WITHIN_CHANNEL
  }
}
layer {
  name: "conv3"
  type: "Convolution"
  bottom: "norm2"
  top: "conv3"
  param {
    lr_mult: 1
    decay_mult: 1
    regularization_type: "L1"
  }
  param {
    lr_mult: 1
    decay_mult: 1
  }
  convolution_param {
    num_output: 64
    pad: 2
    kernel_size: 5
    stride: 1
    weight_filler {
      type: "gaussian"
      std: 0.01
    }
    bias_filler {
      type: "constant"
    }
  }
}
layer {
  name: "relu3"
  type: "ReLU"
  bottom: "conv3"
  top: "conv3"
}
layer {
  name: "pool3"
  type: "Pooling"
  bottom: "conv3"
  top: "pool3"
  pooling_param {
    pool: AVE
    kernel_size: 3
    stride: 2
  }
}
layer {
  name: "ip1"
  type: "InnerProduct"
  bottom: "pool3"
  top: "ip1"
  param {
    lr_mult: 1
    decay_mult: 1
    regularization_type: "L1"
  }
  param {
    lr_mult: 2
    decay_mult: 1
  }
  inner_product_param {
    num_output: 10
    weight_filler {
      type: "gaussian"
      std: 0.01
    }
    bias_filler {
      type: "constant"
    }
  }
}
layer {
  name: "accuracy"
  type: "Accuracy"
  bottom: "ip1"
  bottom: "label"
  top: "accuracy"
  include {
    phase: TEST
  }
}
layer {
  name: "loss"
  type: "SoftmaxWithLoss"
  bottom: "ip1"
  bottom: "label"
  top: "loss"
}
I0410 12:01:07.225431  7479 layer_factory.hpp:77] Creating layer cifar
I0410 12:01:07.230193  7479 net.cpp:120] Creating Layer cifar
I0410 12:01:07.230257  7479 net.cpp:428] cifar -> data
I0410 12:01:07.230307  7479 net.cpp:428] cifar -> label
I0410 12:01:07.230331  7479 data_transformer.cpp:25] Loading mean file from: examples/cifar10/mean.binaryproto
I0410 12:01:07.230739  7503 db_lmdb.cpp:37] Opened lmdb examples/cifar10/cifar10_test_lmdb
I0410 12:01:07.230762  7503 db_lmdb.cpp:40] Map size is 41218048
I0410 12:01:07.230867  7479 data_layer.cpp:41] output data size: 100,3,32,32
I0410 12:01:07.233774  7479 net.cpp:170] Setting up cifar
I0410 12:01:07.233794  7479 net.cpp:177] Top shape: 100 3 32 32 (307200)
I0410 12:01:07.233821  7479 net.cpp:177] Top shape: 100 (100)
I0410 12:01:07.233831  7479 net.cpp:185] Memory required for data: 1229200
I0410 12:01:07.233847  7479 layer_factory.hpp:77] Creating layer label_cifar_1_split
I0410 12:01:07.233865  7479 net.cpp:120] Creating Layer label_cifar_1_split
I0410 12:01:07.233880  7479 net.cpp:454] label_cifar_1_split <- label
I0410 12:01:07.233906  7479 net.cpp:428] label_cifar_1_split -> label_cifar_1_split_0
I0410 12:01:07.233925  7479 net.cpp:428] label_cifar_1_split -> label_cifar_1_split_1
I0410 12:01:07.233954  7479 net.cpp:170] Setting up label_cifar_1_split
I0410 12:01:07.233966  7479 net.cpp:177] Top shape: 100 (100)
I0410 12:01:07.233978  7479 net.cpp:177] Top shape: 100 (100)
I0410 12:01:07.233986  7479 net.cpp:185] Memory required for data: 1230000
I0410 12:01:07.233995  7479 layer_factory.hpp:77] Creating layer conv1
I0410 12:01:07.234045  7479 net.cpp:120] Creating Layer conv1
I0410 12:01:07.234055  7479 net.cpp:454] conv1 <- data
I0410 12:01:07.234071  7479 net.cpp:428] conv1 -> conv1
I0410 12:01:07.474479  7479 net.cpp:170] Setting up conv1
I0410 12:01:07.474519  7479 net.cpp:177] Top shape: 100 32 32 32 (3276800)
I0410 12:01:07.474529  7479 net.cpp:185] Memory required for data: 14337200
I0410 12:01:07.474570  7479 layer_factory.hpp:77] Creating layer pool1
I0410 12:01:07.474586  7479 net.cpp:120] Creating Layer pool1
I0410 12:01:07.474591  7479 net.cpp:454] pool1 <- conv1
I0410 12:01:07.474601  7479 net.cpp:428] pool1 -> pool1
I0410 12:01:07.474622  7479 net.cpp:170] Setting up pool1
I0410 12:01:07.474625  7479 net.cpp:177] Top shape: 100 32 16 16 (819200)
I0410 12:01:07.474630  7479 net.cpp:185] Memory required for data: 17614000
I0410 12:01:07.474634  7479 layer_factory.hpp:77] Creating layer relu1
I0410 12:01:07.474642  7479 net.cpp:120] Creating Layer relu1
I0410 12:01:07.474645  7479 net.cpp:454] relu1 <- pool1
I0410 12:01:07.474650  7479 net.cpp:415] relu1 -> pool1 (in-place)
I0410 12:01:07.474851  7479 net.cpp:170] Setting up relu1
I0410 12:01:07.474859  7479 net.cpp:177] Top shape: 100 32 16 16 (819200)
I0410 12:01:07.474864  7479 net.cpp:185] Memory required for data: 20890800
I0410 12:01:07.474869  7479 layer_factory.hpp:77] Creating layer norm1
I0410 12:01:07.474880  7479 net.cpp:120] Creating Layer norm1
I0410 12:01:07.474884  7479 net.cpp:454] norm1 <- pool1
I0410 12:01:07.474890  7479 net.cpp:428] norm1 -> norm1
I0410 12:01:07.475801  7479 net.cpp:170] Setting up norm1
I0410 12:01:07.475814  7479 net.cpp:177] Top shape: 100 32 16 16 (819200)
I0410 12:01:07.475821  7479 net.cpp:185] Memory required for data: 24167600
I0410 12:01:07.475826  7479 layer_factory.hpp:77] Creating layer conv2
I0410 12:01:07.475845  7479 net.cpp:120] Creating Layer conv2
I0410 12:01:07.475850  7479 net.cpp:454] conv2 <- norm1
I0410 12:01:07.475857  7479 net.cpp:428] conv2 -> conv2
I0410 12:01:07.507161  7479 net.cpp:170] Setting up conv2
I0410 12:01:07.507194  7479 net.cpp:177] Top shape: 100 32 16 16 (819200)
I0410 12:01:07.507205  7479 net.cpp:185] Memory required for data: 27444400
I0410 12:01:07.507226  7479 layer_factory.hpp:77] Creating layer relu2
I0410 12:01:07.507241  7479 net.cpp:120] Creating Layer relu2
I0410 12:01:07.507246  7479 net.cpp:454] relu2 <- conv2
I0410 12:01:07.507253  7479 net.cpp:415] relu2 -> conv2 (in-place)
I0410 12:01:07.507472  7479 net.cpp:170] Setting up relu2
I0410 12:01:07.507480  7479 net.cpp:177] Top shape: 100 32 16 16 (819200)
I0410 12:01:07.507495  7479 net.cpp:185] Memory required for data: 30721200
I0410 12:01:07.507509  7479 layer_factory.hpp:77] Creating layer pool2
I0410 12:01:07.507520  7479 net.cpp:120] Creating Layer pool2
I0410 12:01:07.507524  7479 net.cpp:454] pool2 <- conv2
I0410 12:01:07.507532  7479 net.cpp:428] pool2 -> pool2
I0410 12:01:07.508038  7479 net.cpp:170] Setting up pool2
I0410 12:01:07.508051  7479 net.cpp:177] Top shape: 100 32 8 8 (204800)
I0410 12:01:07.508057  7479 net.cpp:185] Memory required for data: 31540400
I0410 12:01:07.508062  7479 layer_factory.hpp:77] Creating layer norm2
I0410 12:01:07.508072  7479 net.cpp:120] Creating Layer norm2
I0410 12:01:07.508076  7479 net.cpp:454] norm2 <- pool2
I0410 12:01:07.508082  7479 net.cpp:428] norm2 -> norm2
I0410 12:01:07.508282  7479 net.cpp:170] Setting up norm2
I0410 12:01:07.508291  7479 net.cpp:177] Top shape: 100 32 8 8 (204800)
I0410 12:01:07.508297  7479 net.cpp:185] Memory required for data: 32359600
I0410 12:01:07.508301  7479 layer_factory.hpp:77] Creating layer conv3
I0410 12:01:07.508319  7479 net.cpp:120] Creating Layer conv3
I0410 12:01:07.508324  7479 net.cpp:454] conv3 <- norm2
I0410 12:01:07.508332  7479 net.cpp:428] conv3 -> conv3
I0410 12:01:07.517253  7479 net.cpp:170] Setting up conv3
I0410 12:01:07.517272  7479 net.cpp:177] Top shape: 100 64 8 8 (409600)
I0410 12:01:07.517279  7479 net.cpp:185] Memory required for data: 33998000
I0410 12:01:07.517293  7479 layer_factory.hpp:77] Creating layer relu3
I0410 12:01:07.517302  7479 net.cpp:120] Creating Layer relu3
I0410 12:01:07.517307  7479 net.cpp:454] relu3 <- conv3
I0410 12:01:07.517313  7479 net.cpp:415] relu3 -> conv3 (in-place)
I0410 12:01:07.517493  7479 net.cpp:170] Setting up relu3
I0410 12:01:07.517499  7479 net.cpp:177] Top shape: 100 64 8 8 (409600)
I0410 12:01:07.517508  7479 net.cpp:185] Memory required for data: 35636400
I0410 12:01:07.517511  7479 layer_factory.hpp:77] Creating layer pool3
I0410 12:01:07.517519  7479 net.cpp:120] Creating Layer pool3
I0410 12:01:07.517524  7479 net.cpp:454] pool3 <- conv3
I0410 12:01:07.517530  7479 net.cpp:428] pool3 -> pool3
I0410 12:01:07.517688  7479 net.cpp:170] Setting up pool3
I0410 12:01:07.517696  7479 net.cpp:177] Top shape: 100 64 4 4 (102400)
I0410 12:01:07.517701  7479 net.cpp:185] Memory required for data: 36046000
I0410 12:01:07.517705  7479 layer_factory.hpp:77] Creating layer ip1
I0410 12:01:07.517714  7479 net.cpp:120] Creating Layer ip1
I0410 12:01:07.517719  7479 net.cpp:454] ip1 <- pool3
I0410 12:01:07.517724  7479 net.cpp:428] ip1 -> ip1
I0410 12:01:07.517889  7479 net.cpp:170] Setting up ip1
I0410 12:01:07.517896  7479 net.cpp:177] Top shape: 100 10 (1000)
I0410 12:01:07.517900  7479 net.cpp:185] Memory required for data: 36050000
I0410 12:01:07.517909  7479 layer_factory.hpp:77] Creating layer ip1_ip1_0_split
I0410 12:01:07.517915  7479 net.cpp:120] Creating Layer ip1_ip1_0_split
I0410 12:01:07.517918  7479 net.cpp:454] ip1_ip1_0_split <- ip1
I0410 12:01:07.517925  7479 net.cpp:428] ip1_ip1_0_split -> ip1_ip1_0_split_0
I0410 12:01:07.517931  7479 net.cpp:428] ip1_ip1_0_split -> ip1_ip1_0_split_1
I0410 12:01:07.517943  7479 net.cpp:170] Setting up ip1_ip1_0_split
I0410 12:01:07.517947  7479 net.cpp:177] Top shape: 100 10 (1000)
I0410 12:01:07.517951  7479 net.cpp:177] Top shape: 100 10 (1000)
I0410 12:01:07.517956  7479 net.cpp:185] Memory required for data: 36058000
I0410 12:01:07.517959  7479 layer_factory.hpp:77] Creating layer accuracy
I0410 12:01:07.517966  7479 net.cpp:120] Creating Layer accuracy
I0410 12:01:07.517969  7479 net.cpp:454] accuracy <- ip1_ip1_0_split_0
I0410 12:01:07.517974  7479 net.cpp:454] accuracy <- label_cifar_1_split_0
I0410 12:01:07.517980  7479 net.cpp:428] accuracy -> accuracy
I0410 12:01:07.517990  7479 net.cpp:170] Setting up accuracy
I0410 12:01:07.517994  7479 net.cpp:177] Top shape: (1)
I0410 12:01:07.517998  7479 net.cpp:185] Memory required for data: 36058004
I0410 12:01:07.518002  7479 layer_factory.hpp:77] Creating layer loss
I0410 12:01:07.518009  7479 net.cpp:120] Creating Layer loss
I0410 12:01:07.518024  7479 net.cpp:454] loss <- ip1_ip1_0_split_1
I0410 12:01:07.518036  7479 net.cpp:454] loss <- label_cifar_1_split_1
I0410 12:01:07.518043  7479 net.cpp:428] loss -> loss
I0410 12:01:07.518054  7479 layer_factory.hpp:77] Creating layer loss
I0410 12:01:07.518579  7479 net.cpp:170] Setting up loss
I0410 12:01:07.518590  7479 net.cpp:177] Top shape: (1)
I0410 12:01:07.518597  7479 net.cpp:180]     with loss weight 1
I0410 12:01:07.518625  7479 net.cpp:185] Memory required for data: 36058008
I0410 12:01:07.518631  7479 net.cpp:246] loss needs backward computation.
I0410 12:01:07.518637  7479 net.cpp:248] accuracy does not need backward computation.
I0410 12:01:07.518642  7479 net.cpp:246] ip1_ip1_0_split needs backward computation.
I0410 12:01:07.518646  7479 net.cpp:246] ip1 needs backward computation.
I0410 12:01:07.518649  7479 net.cpp:246] pool3 needs backward computation.
I0410 12:01:07.518653  7479 net.cpp:246] relu3 needs backward computation.
I0410 12:01:07.518657  7479 net.cpp:246] conv3 needs backward computation.
I0410 12:01:07.518661  7479 net.cpp:246] norm2 needs backward computation.
I0410 12:01:07.518664  7479 net.cpp:246] pool2 needs backward computation.
I0410 12:01:07.518667  7479 net.cpp:246] relu2 needs backward computation.
I0410 12:01:07.518671  7479 net.cpp:246] conv2 needs backward computation.
I0410 12:01:07.518676  7479 net.cpp:246] norm1 needs backward computation.
I0410 12:01:07.518678  7479 net.cpp:246] relu1 needs backward computation.
I0410 12:01:07.518682  7479 net.cpp:246] pool1 needs backward computation.
I0410 12:01:07.518687  7479 net.cpp:246] conv1 needs backward computation.
I0410 12:01:07.518690  7479 net.cpp:248] label_cifar_1_split does not need backward computation.
I0410 12:01:07.518694  7479 net.cpp:248] cifar does not need backward computation.
I0410 12:01:07.518698  7479 net.cpp:290] This network produces output accuracy
I0410 12:01:07.518702  7479 net.cpp:290] This network produces output loss
I0410 12:01:07.518716  7479 net.cpp:303] Network initialization done.
I0410 12:01:07.519749  7479 base_conv_layer.cpp:66] layer   conv1   has sparsity of 0
I0410 12:01:07.519870  7479 base_conv_layer.cpp:368] ConvolutionParameter ConvMode: DEFAULT
I0410 12:01:07.519894  7479 base_conv_layer.cpp:66] layer   conv2   has sparsity of 0
I0410 12:01:07.520954  7479 base_conv_layer.cpp:368] ConvolutionParameter ConvMode: DEFAULT
I0410 12:01:07.520988  7479 base_conv_layer.cpp:66] layer   conv3   has sparsity of 0
I0410 12:01:07.523155  7479 base_conv_layer.cpp:368] ConvolutionParameter ConvMode: DEFAULT
I0410 12:01:07.523167  7479 inner_product_layer.cpp:54] layer   ip1 has sparsity of 0 transpose 0
I0410 12:01:07.523639  7479 caffe.cpp:301] Running for 50 iterations.
I0410 12:01:07.544111  7479 conv_layer.cpp:114] conv1 wall clock-time 0.019424 padding-time 0
I0410 12:01:07.544167  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.66321 avg 3.60619 mFlops-per-file 4.9152 GF/s 4022.99
I0410 12:01:07.566695  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00604105 padding-time 0
I0410 12:01:07.566745  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 6.05412 avg 5.82449 mFlops-per-file 13.1072 GF/s 6491.25
I0410 12:01:07.572037  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00216889 padding-time 0
I0410 12:01:07.572074  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.37208 avg 2.30136 mFlops-per-file 6.5536 GF/s 8283.61
I0410 12:01:07.573006  7479 net.cpp:655]  Test time of cifar    1.018 ms ( 2.06814 % )
I0410 12:01:07.573020  7479 net.cpp:655]  Test time of label_cifar_1_split  0.007 ms ( 0.014221 % )
I0410 12:01:07.573026  7479 net.cpp:655]  Test time of conv1    19.487 ms ( 39.5892 % )
I0410 12:01:07.573032  7479 net.cpp:655]  Test time of pool1    5.722 ms ( 11.6246 % )
I0410 12:01:07.573037  7479 net.cpp:655]  Test time of relu1    0.061 ms ( 0.123926 % )
I0410 12:01:07.573043  7479 net.cpp:655]  Test time of norm1    10.653 ms ( 21.6423 % )
I0410 12:01:07.573048  7479 net.cpp:655]  Test time of conv2    6.093 ms ( 12.3784 % )
I0410 12:01:07.573052  7479 net.cpp:655]  Test time of relu2    0.109 ms ( 0.221441 % )
I0410 12:01:07.573074  7479 net.cpp:655]  Test time of pool2    0.893 ms ( 1.81419 % )
I0410 12:01:07.573079  7479 net.cpp:655]  Test time of norm2    2.075 ms ( 4.21551 % )
I0410 12:01:07.573083  7479 net.cpp:655]  Test time of conv3    2.21 ms ( 4.48977 % )
I0410 12:01:07.573087  7479 net.cpp:655]  Test time of relu3    0.036 ms ( 0.0731365 % )
I0410 12:01:07.573091  7479 net.cpp:655]  Test time of pool3    0.498 ms ( 1.01172 % )
I0410 12:01:07.573096  7479 net.cpp:655]  Test time of ip1  0.117 ms ( 0.237694 % )
I0410 12:01:07.573101  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.002 ms ( 0.00406314 % )
I0410 12:01:07.573104  7479 net.cpp:655]  Test time of accuracy 0.042 ms ( 0.085326 % )
I0410 12:01:07.573109  7479 net.cpp:655]  Test time of loss 0.2 ms ( 0.406314 % )
I0410 12:01:07.573113  7479 caffe.cpp:330] Total forwarding time: 49.223 ms
I0410 12:01:07.575891  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00235891 padding-time 0
I0410 12:01:07.575929  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.49827 avg 3.45544 mFlops-per-file 4.9152 GF/s 4212.67
I0410 12:01:07.587396  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00484395 padding-time 0
I0410 12:01:07.587437  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.7998 avg 5.66192 mFlops-per-file 13.1072 GF/s 6775.89
I0410 12:01:07.590723  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00160789 padding-time 0
I0410 12:01:07.590755  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.36756 avg 2.30095 mFlops-per-file 6.5536 GF/s 8299.43
I0410 12:01:07.591279  7479 net.cpp:655]  Test time of cifar    0.397 ms ( 2.19993 % )
I0410 12:01:07.591289  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.591292  7479 net.cpp:655]  Test time of conv1    2.4 ms ( 13.2993 % )
I0410 12:01:07.591297  7479 net.cpp:655]  Test time of pool1    3.378 ms ( 18.7188 % )
I0410 12:01:07.591302  7479 net.cpp:655]  Test time of relu1    0.067 ms ( 0.371273 % )
I0410 12:01:07.591307  7479 net.cpp:655]  Test time of norm1    3.141 ms ( 17.4055 % )
I0410 12:01:07.591312  7479 net.cpp:655]  Test time of conv2    4.886 ms ( 27.0753 % )
I0410 12:01:07.591316  7479 net.cpp:655]  Test time of relu2    0.108 ms ( 0.598471 % )
I0410 12:01:07.591321  7479 net.cpp:655]  Test time of pool2    0.579 ms ( 3.20847 % )
I0410 12:01:07.591325  7479 net.cpp:655]  Test time of norm2    0.95 ms ( 5.26432 % )
I0410 12:01:07.591329  7479 net.cpp:655]  Test time of conv3    1.644 ms ( 9.11005 % )
I0410 12:01:07.591333  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.193949 % )
I0410 12:01:07.591337  7479 net.cpp:655]  Test time of pool3    0.351 ms ( 1.94503 % )
I0410 12:01:07.591341  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.171783 % )
I0410 12:01:07.591346  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00554139 % )
I0410 12:01:07.591349  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.210573 % )
I0410 12:01:07.591354  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.221656 % )
I0410 12:01:07.591358  7479 caffe.cpp:330] Total forwarding time: 18.046 ms
I0410 12:01:07.594101  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234699 padding-time 0
I0410 12:01:07.594138  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.43302 avg 3.40545 mFlops-per-file 4.9152 GF/s 4292.74
I0410 12:01:07.605608  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00485897 padding-time 0
I0410 12:01:07.605648  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.83408 avg 5.68653 mFlops-per-file 13.1072 GF/s 6736.07
I0410 12:01:07.608918  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159812 padding-time 0
I0410 12:01:07.608947  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.37508 avg 2.29719 mFlops-per-file 6.5536 GF/s 8273.15
I0410 12:01:07.609483  7479 net.cpp:655]  Test time of cifar    0.381 ms ( 2.11631 % )
I0410 12:01:07.609494  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.609498  7479 net.cpp:655]  Test time of conv1    2.386 ms ( 13.2533 % )
I0410 12:01:07.609503  7479 net.cpp:655]  Test time of pool1    3.37 ms ( 18.7191 % )
I0410 12:01:07.609519  7479 net.cpp:655]  Test time of relu1    0.066 ms ( 0.366606 % )
I0410 12:01:07.609531  7479 net.cpp:655]  Test time of norm1    3.132 ms ( 17.3971 % )
I0410 12:01:07.609536  7479 net.cpp:655]  Test time of conv2    4.899 ms ( 27.2121 % )
I0410 12:01:07.609540  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.594345 % )
I0410 12:01:07.609545  7479 net.cpp:655]  Test time of pool2    0.577 ms ( 3.20502 % )
I0410 12:01:07.609549  7479 net.cpp:655]  Test time of norm2    0.949 ms ( 5.27134 % )
I0410 12:01:07.609552  7479 net.cpp:655]  Test time of conv3    1.63 ms ( 9.05405 % )
I0410 12:01:07.609556  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.188857 % )
I0410 12:01:07.609561  7479 net.cpp:655]  Test time of pool3    0.358 ms ( 1.98856 % )
I0410 12:01:07.609565  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.172194 % )
I0410 12:01:07.609570  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00555463 % )
I0410 12:01:07.609573  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.216631 % )
I0410 12:01:07.609578  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.238849 % )
I0410 12:01:07.609582  7479 caffe.cpp:330] Total forwarding time: 18.003 ms
I0410 12:01:07.612274  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00233579 padding-time 0
I0410 12:01:07.612313  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.47416 avg 3.42691 mFlops-per-file 4.9152 GF/s 4241.9
I0410 12:01:07.623746  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00482392 padding-time 0
I0410 12:01:07.623787  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.9142 avg 5.68525 mFlops-per-file 13.1072 GF/s 6644.82
I0410 12:01:07.627069  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159812 padding-time 0
I0410 12:01:07.627100  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.36412 avg 2.29944 mFlops-per-file 6.5536 GF/s 8311.5
I0410 12:01:07.627625  7479 net.cpp:655]  Test time of cifar    0.34 ms ( 1.89669 % )
I0410 12:01:07.627636  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00557849 % )
I0410 12:01:07.627641  7479 net.cpp:655]  Test time of conv1    2.376 ms ( 13.2545 % )
I0410 12:01:07.627646  7479 net.cpp:655]  Test time of pool1    3.373 ms ( 18.8162 % )
I0410 12:01:07.627651  7479 net.cpp:655]  Test time of relu1    0.062 ms ( 0.345866 % )
I0410 12:01:07.627655  7479 net.cpp:655]  Test time of norm1    3.137 ms ( 17.4997 % )
I0410 12:01:07.627660  7479 net.cpp:655]  Test time of conv2    4.865 ms ( 27.1394 % )
I0410 12:01:07.627665  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.59132 % )
I0410 12:01:07.627670  7479 net.cpp:655]  Test time of pool2    0.577 ms ( 3.21879 % )
I0410 12:01:07.627673  7479 net.cpp:655]  Test time of norm2    0.96 ms ( 5.35535 % )
I0410 12:01:07.627677  7479 net.cpp:655]  Test time of conv3    1.632 ms ( 9.10409 % )
I0410 12:01:07.627681  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.195247 % )
I0410 12:01:07.627686  7479 net.cpp:655]  Test time of pool3    0.349 ms ( 1.94689 % )
I0410 12:01:07.627689  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.167355 % )
I0410 12:01:07.627693  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00557849 % )
I0410 12:01:07.627697  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.217561 % )
I0410 12:01:07.627702  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.239875 % )
I0410 12:01:07.627707  7479 caffe.cpp:330] Total forwarding time: 17.926 ms
I0410 12:01:07.630439  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234604 padding-time 0
I0410 12:01:07.630475  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.46701 avg 3.41478 mFlops-per-file 4.9152 GF/s 4250.65
I0410 12:01:07.641911  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00484014 padding-time 0
I0410 12:01:07.641947  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.83692 avg 5.62867 mFlops-per-file 13.1072 GF/s 6732.8
I0410 12:01:07.645210  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159287 padding-time 0
I0410 12:01:07.645241  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.65824 avg 2.5737 mFlops-per-file 6.5536 GF/s 7391.88
I0410 12:01:07.645778  7479 net.cpp:655]  Test time of cifar    0.371 ms ( 2.06547 % )
I0410 12:01:07.645797  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00556731 % )
I0410 12:01:07.645802  7479 net.cpp:655]  Test time of conv1    2.384 ms ( 13.2725 % )
I0410 12:01:07.645807  7479 net.cpp:655]  Test time of pool1    3.364 ms ( 18.7284 % )
I0410 12:01:07.645813  7479 net.cpp:655]  Test time of relu1    0.063 ms ( 0.35074 % )
I0410 12:01:07.645817  7479 net.cpp:655]  Test time of norm1    3.13 ms ( 17.4257 % )
I0410 12:01:07.645822  7479 net.cpp:655]  Test time of conv2    4.879 ms ( 27.1629 % )
I0410 12:01:07.645825  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.590135 % )
I0410 12:01:07.645830  7479 net.cpp:655]  Test time of pool2    0.578 ms ( 3.2179 % )
I0410 12:01:07.645834  7479 net.cpp:655]  Test time of norm2    0.948 ms ( 5.27781 % )
I0410 12:01:07.645838  7479 net.cpp:655]  Test time of conv3    1.637 ms ( 9.11368 % )
I0410 12:01:07.645843  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.194856 % )
I0410 12:01:07.645846  7479 net.cpp:655]  Test time of pool3    0.349 ms ( 1.94299 % )
I0410 12:01:07.645850  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.167019 % )
I0410 12:01:07.645854  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00556731 % )
I0410 12:01:07.645859  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.217125 % )
I0410 12:01:07.645864  7479 net.cpp:655]  Test time of loss 0.047 ms ( 0.261664 % )
I0410 12:01:07.645867  7479 caffe.cpp:330] Total forwarding time: 17.962 ms
I0410 12:01:07.648587  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234103 padding-time 0
I0410 12:01:07.648623  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.45114 avg 3.40275 mFlops-per-file 4.9152 GF/s 4270.2
I0410 12:01:07.660091  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00483394 padding-time 0
I0410 12:01:07.660128  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.75276 avg 5.61284 mFlops-per-file 13.1072 GF/s 6831.29
I0410 12:01:07.663398  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159097 padding-time 0
I0410 12:01:07.663431  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.32872 avg 2.27698 mFlops-per-file 6.5536 GF/s 8437.85
I0410 12:01:07.663949  7479 net.cpp:655]  Test time of cifar    0.364 ms ( 2.02582 % )
I0410 12:01:07.663960  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00556545 % )
I0410 12:01:07.663965  7479 net.cpp:655]  Test time of conv1    2.379 ms ( 13.2402 % )
I0410 12:01:07.663970  7479 net.cpp:655]  Test time of pool1    3.378 ms ( 18.8001 % )
I0410 12:01:07.663975  7479 net.cpp:655]  Test time of relu1    0.064 ms ( 0.356189 % )
I0410 12:01:07.663980  7479 net.cpp:655]  Test time of norm1    3.152 ms ( 17.5423 % )
I0410 12:01:07.663985  7479 net.cpp:655]  Test time of conv2    4.873 ms ( 27.1204 % )
I0410 12:01:07.663988  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.584372 % )
I0410 12:01:07.663993  7479 net.cpp:655]  Test time of pool2    0.578 ms ( 3.21683 % )
I0410 12:01:07.663997  7479 net.cpp:655]  Test time of norm2    0.959 ms ( 5.33727 % )
I0410 12:01:07.664001  7479 net.cpp:655]  Test time of conv3    1.626 ms ( 9.04942 % )
I0410 12:01:07.664005  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.194791 % )
I0410 12:01:07.664011  7479 net.cpp:655]  Test time of pool3    0.347 ms ( 1.93121 % )
I0410 12:01:07.664014  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.172529 % )
I0410 12:01:07.664018  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.664021  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.211487 % )
I0410 12:01:07.664026  7479 net.cpp:655]  Test time of loss 0.038 ms ( 0.211487 % )
I0410 12:01:07.664031  7479 caffe.cpp:330] Total forwarding time: 17.968 ms
I0410 12:01:07.666741  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234699 padding-time 0
I0410 12:01:07.666780  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.4284 avg 3.37807 mFlops-per-file 4.9152 GF/s 4298.52
I0410 12:01:07.678210  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00483704 padding-time 0
I0410 12:01:07.678261  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.75696 avg 5.59756 mFlops-per-file 13.1072 GF/s 6826.31
I0410 12:01:07.681545  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00160289 padding-time 0
I0410 12:01:07.681576  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.33264 avg 2.27614 mFlops-per-file 6.5536 GF/s 8423.67
I0410 12:01:07.682101  7479 net.cpp:655]  Test time of cifar    0.349 ms ( 1.94364 % )
I0410 12:01:07.682111  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.682114  7479 net.cpp:655]  Test time of conv1    2.387 ms ( 13.2936 % )
I0410 12:01:07.682119  7479 net.cpp:655]  Test time of pool1    3.359 ms ( 18.7068 % )
I0410 12:01:07.682124  7479 net.cpp:655]  Test time of relu1    0.06 ms ( 0.33415 % )
I0410 12:01:07.682129  7479 net.cpp:655]  Test time of norm1    3.137 ms ( 17.4705 % )
I0410 12:01:07.682133  7479 net.cpp:655]  Test time of conv2    4.897 ms ( 27.2722 % )
I0410 12:01:07.682138  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.595901 % )
I0410 12:01:07.682143  7479 net.cpp:655]  Test time of pool2    0.577 ms ( 3.21341 % )
I0410 12:01:07.682147  7479 net.cpp:655]  Test time of norm2    0.951 ms ( 5.29628 % )
I0410 12:01:07.682152  7479 net.cpp:655]  Test time of conv3    1.638 ms ( 9.1223 % )
I0410 12:01:07.682155  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.194921 % )
I0410 12:01:07.682160  7479 net.cpp:655]  Test time of pool3    0.348 ms ( 1.93807 % )
I0410 12:01:07.682164  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.167075 % )
I0410 12:01:07.682168  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00556917 % )
I0410 12:01:07.682173  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.217198 % )
I0410 12:01:07.682178  7479 net.cpp:655]  Test time of loss 0.041 ms ( 0.228336 % )
I0410 12:01:07.682181  7479 caffe.cpp:330] Total forwarding time: 17.956 ms
I0410 12:01:07.684875  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00233102 padding-time 0
I0410 12:01:07.684911  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41988 avg 3.39191 mFlops-per-file 4.9152 GF/s 4309.23
I0410 12:01:07.696334  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00483513 padding-time 0
I0410 12:01:07.696372  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.7588 avg 5.60727 mFlops-per-file 13.1072 GF/s 6824.13
I0410 12:01:07.699647  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159407 padding-time 0
I0410 12:01:07.699679  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.32896 avg 2.27202 mFlops-per-file 6.5536 GF/s 8436.98
I0410 12:01:07.700202  7479 net.cpp:655]  Test time of cifar    0.347 ms ( 1.93801 % )
I0410 12:01:07.700213  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00558503 % )
I0410 12:01:07.700218  7479 net.cpp:655]  Test time of conv1    2.368 ms ( 13.2254 % )
I0410 12:01:07.700223  7479 net.cpp:655]  Test time of pool1    3.357 ms ( 18.749 % )
I0410 12:01:07.700228  7479 net.cpp:655]  Test time of relu1    0.062 ms ( 0.346272 % )
I0410 12:01:07.700233  7479 net.cpp:655]  Test time of norm1    3.13 ms ( 17.4812 % )
I0410 12:01:07.700238  7479 net.cpp:655]  Test time of conv2    4.874 ms ( 27.2214 % )
I0410 12:01:07.700242  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.586428 % )
I0410 12:01:07.700248  7479 net.cpp:655]  Test time of pool2    0.577 ms ( 3.22256 % )
I0410 12:01:07.700251  7479 net.cpp:655]  Test time of norm2    0.96 ms ( 5.36163 % )
I0410 12:01:07.700255  7479 net.cpp:655]  Test time of conv3    1.63 ms ( 9.1036 % )
I0410 12:01:07.700260  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.195476 % )
I0410 12:01:07.700264  7479 net.cpp:655]  Test time of pool3    0.347 ms ( 1.93801 % )
I0410 12:01:07.700268  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.161966 % )
I0410 12:01:07.700273  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.700276  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.212231 % )
I0410 12:01:07.700281  7479 net.cpp:655]  Test time of loss 0.045 ms ( 0.251326 % )
I0410 12:01:07.700285  7479 caffe.cpp:330] Total forwarding time: 17.905 ms
I0410 12:01:07.702996  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234413 padding-time 0
I0410 12:01:07.703047  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.4542 avg 3.38245 mFlops-per-file 4.9152 GF/s 4266.41
I0410 12:01:07.714459  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00481915 padding-time 0
I0410 12:01:07.714500  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.80892 avg 5.6021 mFlops-per-file 13.1072 GF/s 6765.25
I0410 12:01:07.717767  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159717 padding-time 0
I0410 12:01:07.717798  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.33124 avg 2.26499 mFlops-per-file 6.5536 GF/s 8428.73
I0410 12:01:07.718317  7479 net.cpp:655]  Test time of cifar    0.339 ms ( 1.89375 % )
I0410 12:01:07.718327  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.718331  7479 net.cpp:655]  Test time of conv1    2.397 ms ( 13.3903 % )
I0410 12:01:07.718336  7479 net.cpp:655]  Test time of pool1    3.358 ms ( 18.7587 % )
I0410 12:01:07.718341  7479 net.cpp:655]  Test time of relu1    0.061 ms ( 0.340763 % )
I0410 12:01:07.718346  7479 net.cpp:655]  Test time of norm1    3.137 ms ( 17.5242 % )
I0410 12:01:07.718350  7479 net.cpp:655]  Test time of conv2    4.86 ms ( 27.1493 % )
I0410 12:01:07.718355  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.592146 % )
I0410 12:01:07.718360  7479 net.cpp:655]  Test time of pool2    0.577 ms ( 3.22328 % )
I0410 12:01:07.718364  7479 net.cpp:655]  Test time of norm2    0.949 ms ( 5.30138 % )
I0410 12:01:07.718369  7479 net.cpp:655]  Test time of conv3    1.631 ms ( 9.11122 % )
I0410 12:01:07.718372  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.189934 % )
I0410 12:01:07.718377  7479 net.cpp:655]  Test time of pool3    0.346 ms ( 1.93285 % )
I0410 12:01:07.718381  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.162002 % )
I0410 12:01:07.718385  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.718389  7479 net.cpp:655]  Test time of accuracy 0.037 ms ( 0.206692 % )
I0410 12:01:07.718394  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.223451 % )
I0410 12:01:07.718399  7479 caffe.cpp:330] Total forwarding time: 17.901 ms
I0410 12:01:07.721115  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234318 padding-time 0
I0410 12:01:07.721163  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.4383 avg 3.39367 mFlops-per-file 4.9152 GF/s 4286.14
I0410 12:01:07.732556  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00483704 padding-time 0
I0410 12:01:07.732599  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.83359 avg 5.60559 mFlops-per-file 13.1072 GF/s 6736.64
I0410 12:01:07.735857  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00158286 padding-time 0
I0410 12:01:07.735886  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.32284 avg 2.26103 mFlops-per-file 6.5536 GF/s 8459.21
I0410 12:01:07.736409  7479 net.cpp:655]  Test time of cifar    0.359 ms ( 2.00615 % )
I0410 12:01:07.736419  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.736424  7479 net.cpp:655]  Test time of conv1    2.392 ms ( 13.3669 % )
I0410 12:01:07.736428  7479 net.cpp:655]  Test time of pool1    3.328 ms ( 18.5974 % )
I0410 12:01:07.736434  7479 net.cpp:655]  Test time of relu1    0.063 ms ( 0.352054 % )
I0410 12:01:07.736438  7479 net.cpp:655]  Test time of norm1    3.128 ms ( 17.4797 % )
I0410 12:01:07.736443  7479 net.cpp:655]  Test time of conv2    4.878 ms ( 27.259 % )
I0410 12:01:07.736448  7479 net.cpp:655]  Test time of relu2    0.103 ms ( 0.57558 % )
I0410 12:01:07.736452  7479 net.cpp:655]  Test time of pool2    0.584 ms ( 3.26348 % )
I0410 12:01:07.736456  7479 net.cpp:655]  Test time of norm2    0.949 ms ( 5.30316 % )
I0410 12:01:07.736460  7479 net.cpp:655]  Test time of conv3    1.618 ms ( 9.04163 % )
I0410 12:01:07.736464  7479 net.cpp:655]  Test time of relu3    0.036 ms ( 0.201174 % )
I0410 12:01:07.736469  7479 net.cpp:655]  Test time of pool3    0.347 ms ( 1.93909 % )
I0410 12:01:07.736472  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.167645 % )
I0410 12:01:07.736476  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00558815 % )
I0410 12:01:07.736500  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.21235 % )
I0410 12:01:07.736505  7479 net.cpp:655]  Test time of loss 0.041 ms ( 0.229114 % )
I0410 12:01:07.736508  7479 caffe.cpp:330] Total forwarding time: 17.895 ms
I0410 12:01:07.739226  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00233412 padding-time 0
I0410 12:01:07.739264  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.42675 avg 3.38349 mFlops-per-file 4.9152 GF/s 4300.59
I0410 12:01:07.750669  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00481391 padding-time 0
I0410 12:01:07.750706  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.76708 avg 5.61425 mFlops-per-file 13.1072 GF/s 6814.33
I0410 12:01:07.753969  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00159311 padding-time 0
I0410 12:01:07.754000  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.32224 avg 2.25874 mFlops-per-file 6.5536 GF/s 8461.4
I0410 12:01:07.754519  7479 net.cpp:655]  Test time of cifar    0.371 ms ( 2.0732 % )
I0410 12:01:07.754529  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00558815 % )
I0410 12:01:07.754534  7479 net.cpp:655]  Test time of conv1    2.373 ms ( 13.2607 % )
I0410 12:01:07.754539  7479 net.cpp:655]  Test time of pool1    3.364 ms ( 18.7985 % )
I0410 12:01:07.754544  7479 net.cpp:655]  Test time of relu1    0.061 ms ( 0.340877 % )
I0410 12:01:07.754549  7479 net.cpp:655]  Test time of norm1    3.124 ms ( 17.4574 % )
I0410 12:01:07.754554  7479 net.cpp:655]  Test time of conv2    4.854 ms ( 27.1249 % )
I0410 12:01:07.754557  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.592344 % )
I0410 12:01:07.754561  7479 net.cpp:655]  Test time of pool2    0.574 ms ( 3.2076 % )
I0410 12:01:07.754565  7479 net.cpp:655]  Test time of norm2    0.95 ms ( 5.30875 % )
I0410 12:01:07.754570  7479 net.cpp:655]  Test time of conv3    1.628 ms ( 9.09751 % )
I0410 12:01:07.754573  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.189997 % )
I0410 12:01:07.754578  7479 net.cpp:655]  Test time of pool3    0.346 ms ( 1.9335 % )
I0410 12:01:07.754581  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.167645 % )
I0410 12:01:07.754586  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00558815 % )
I0410 12:01:07.754590  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.21235 % )
I0410 12:01:07.754595  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.223526 % )
I0410 12:01:07.754598  7479 caffe.cpp:330] Total forwarding time: 17.895 ms
I0410 12:01:07.757310  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00233197 padding-time 0
I0410 12:01:07.757346  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.82095 avg 3.62699 mFlops-per-file 4.9152 GF/s 3856.91
I0410 12:01:07.768765  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00482488 padding-time 0
I0410 12:01:07.768803  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.80884 avg 5.62913 mFlops-per-file 13.1072 GF/s 6765.34
I0410 12:01:07.772061  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00157809 padding-time 0
I0410 12:01:07.772089  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.3206 avg 2.2607 mFlops-per-file 6.5536 GF/s 8467.38
I0410 12:01:07.772608  7479 net.cpp:655]  Test time of cifar    0.366 ms ( 2.04538 % )
I0410 12:01:07.772619  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00558847 % )
I0410 12:01:07.772624  7479 net.cpp:655]  Test time of conv1    2.371 ms ( 13.2503 % )
I0410 12:01:07.772629  7479 net.cpp:655]  Test time of pool1    3.339 ms ( 18.6599 % )
I0410 12:01:07.772634  7479 net.cpp:655]  Test time of relu1    0.059 ms ( 0.329719 % )
I0410 12:01:07.772637  7479 net.cpp:655]  Test time of norm1    3.155 ms ( 17.6316 % )
I0410 12:01:07.772642  7479 net.cpp:655]  Test time of conv2    4.866 ms ( 27.1935 % )
I0410 12:01:07.772646  7479 net.cpp:655]  Test time of relu2    0.109 ms ( 0.609143 % )
I0410 12:01:07.772650  7479 net.cpp:655]  Test time of pool2    0.583 ms ( 3.25808 % )
I0410 12:01:07.772655  7479 net.cpp:655]  Test time of norm2    0.946 ms ( 5.28669 % )
I0410 12:01:07.772658  7479 net.cpp:655]  Test time of conv3    1.611 ms ( 9.00302 % )
I0410 12:01:07.772681  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.195596 % )
I0410 12:01:07.772687  7479 net.cpp:655]  Test time of pool3    0.346 ms ( 1.93361 % )
I0410 12:01:07.772691  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.162065 % )
I0410 12:01:07.772696  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.772699  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.212362 % )
I0410 12:01:07.772703  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.223539 % )
I0410 12:01:07.772707  7479 caffe.cpp:330] Total forwarding time: 17.894 ms
I0410 12:01:07.775410  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00233793 padding-time 0
I0410 12:01:07.775449  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.43269 avg 3.38002 mFlops-per-file 4.9152 GF/s 4293.15
I0410 12:01:07.786819  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479484 padding-time 0
I0410 12:01:07.786857  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.75553 avg 5.60797 mFlops-per-file 13.1072 GF/s 6828.01
I0410 12:01:07.790066  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00157499 padding-time 0
I0410 12:01:07.790097  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30493 avg 2.25328 mFlops-per-file 6.5536 GF/s 8524.94
I0410 12:01:07.790614  7479 net.cpp:655]  Test time of cifar    0.349 ms ( 1.96145 % )
I0410 12:01:07.790624  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00562019 % )
I0410 12:01:07.790630  7479 net.cpp:655]  Test time of conv1    2.38 ms ( 13.376 % )
I0410 12:01:07.790635  7479 net.cpp:655]  Test time of pool1    3.333 ms ( 18.7321 % )
I0410 12:01:07.790640  7479 net.cpp:655]  Test time of relu1    0.062 ms ( 0.348452 % )
I0410 12:01:07.790644  7479 net.cpp:655]  Test time of norm1    3.139 ms ( 17.6418 % )
I0410 12:01:07.790649  7479 net.cpp:655]  Test time of conv2    4.835 ms ( 27.1736 % )
I0410 12:01:07.790653  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.59012 % )
I0410 12:01:07.790658  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.14731 % )
I0410 12:01:07.790663  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.23239 % )
I0410 12:01:07.790666  7479 net.cpp:655]  Test time of conv3    1.61 ms ( 9.0485 % )
I0410 12:01:07.790670  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.196707 % )
I0410 12:01:07.790675  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.90524 % )
I0410 12:01:07.790679  7479 net.cpp:655]  Test time of ip1  0.032 ms ( 0.179846 % )
I0410 12:01:07.790683  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00562019 % )
I0410 12:01:07.790688  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.219187 % )
I0410 12:01:07.790693  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.236048 % )
I0410 12:01:07.790696  7479 caffe.cpp:330] Total forwarding time: 17.793 ms
I0410 12:01:07.793376  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00231194 padding-time 0
I0410 12:01:07.793412  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41205 avg 3.37165 mFlops-per-file 4.9152 GF/s 4319.12
I0410 12:01:07.804484  7479 conv_layer.cpp:114] conv2 wall clock-time 0.0047791 padding-time 0
I0410 12:01:07.804522  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.85465 avg 5.61194 mFlops-per-file 13.1072 GF/s 6712.41
I0410 12:01:07.807730  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155997 padding-time 0
I0410 12:01:07.807761  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30361 avg 2.25407 mFlops-per-file 6.5536 GF/s 8529.83
I0410 12:01:07.808274  7479 net.cpp:655]  Test time of cifar    0.353 ms ( 2.0213 % )
I0410 12:01:07.808284  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00572607 % )
I0410 12:01:07.808290  7479 net.cpp:655]  Test time of conv1    2.349 ms ( 13.4505 % )
I0410 12:01:07.808295  7479 net.cpp:655]  Test time of pool1    3.09 ms ( 17.6935 % )
I0410 12:01:07.808300  7479 net.cpp:655]  Test time of relu1    0.075 ms ( 0.429455 % )
I0410 12:01:07.808305  7479 net.cpp:655]  Test time of norm1    3.091 ms ( 17.6993 % )
I0410 12:01:07.808308  7479 net.cpp:655]  Test time of conv2    4.82 ms ( 27.5996 % )
I0410 12:01:07.808322  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.612689 % )
I0410 12:01:07.808336  7479 net.cpp:655]  Test time of pool2    0.574 ms ( 3.28676 % )
I0410 12:01:07.808339  7479 net.cpp:655]  Test time of norm2    0.926 ms ( 5.30234 % )
I0410 12:01:07.808343  7479 net.cpp:655]  Test time of conv3    1.594 ms ( 9.12735 % )
I0410 12:01:07.808347  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194686 % )
I0410 12:01:07.808352  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94114 % )
I0410 12:01:07.808357  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.177508 % )
I0410 12:01:07.808360  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00572607 % )
I0410 12:01:07.808364  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.21759 % )
I0410 12:01:07.808368  7479 net.cpp:655]  Test time of loss 0.041 ms ( 0.234769 % )
I0410 12:01:07.808372  7479 caffe.cpp:330] Total forwarding time: 17.464 ms
I0410 12:01:07.811050  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230598 padding-time 0
I0410 12:01:07.811089  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40683 avg 3.38454 mFlops-per-file 4.9152 GF/s 4325.74
I0410 12:01:07.822273  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478697 padding-time 0
I0410 12:01:07.822311  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.8131 avg 5.60972 mFlops-per-file 13.1072 GF/s 6760.38
I0410 12:01:07.825506  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156307 padding-time 0
I0410 12:01:07.825536  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30976 avg 2.25285 mFlops-per-file 6.5536 GF/s 8507.12
I0410 12:01:07.826050  7479 net.cpp:655]  Test time of cifar    0.358 ms ( 2.03803 % )
I0410 12:01:07.826059  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.826063  7479 net.cpp:655]  Test time of conv1    2.346 ms ( 13.3553 % )
I0410 12:01:07.826068  7479 net.cpp:655]  Test time of pool1    3.235 ms ( 18.4163 % )
I0410 12:01:07.826074  7479 net.cpp:655]  Test time of relu1    0.058 ms ( 0.330183 % )
I0410 12:01:07.826078  7479 net.cpp:655]  Test time of norm1    3.067 ms ( 17.4599 % )
I0410 12:01:07.826082  7479 net.cpp:655]  Test time of conv2    4.825 ms ( 27.4678 % )
I0410 12:01:07.826087  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.597746 % )
I0410 12:01:07.826092  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.18798 % )
I0410 12:01:07.826095  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.30001 % )
I0410 12:01:07.826099  7479 net.cpp:655]  Test time of conv3    1.596 ms ( 9.08573 % )
I0410 12:01:07.826103  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.199249 % )
I0410 12:01:07.826108  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.92986 % )
I0410 12:01:07.826112  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.176477 % )
I0410 12:01:07.826117  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.826120  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.216327 % )
I0410 12:01:07.826124  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.239098 % )
I0410 12:01:07.826128  7479 caffe.cpp:330] Total forwarding time: 17.566 ms
I0410 12:01:07.828789  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230193 padding-time 0
I0410 12:01:07.828824  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.48756 avg 3.37786 mFlops-per-file 4.9152 GF/s 4225.6
I0410 12:01:07.839843  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477505 padding-time 0
I0410 12:01:07.839881  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.84172 avg 5.61138 mFlops-per-file 13.1072 GF/s 6727.26
I0410 12:01:07.843086  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155187 padding-time 0
I0410 12:01:07.843116  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29854 avg 2.25191 mFlops-per-file 6.5536 GF/s 8548.64
I0410 12:01:07.843628  7479 net.cpp:655]  Test time of cifar    0.345 ms ( 1.98413 % )
I0410 12:01:07.843638  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00575109 % )
I0410 12:01:07.843643  7479 net.cpp:655]  Test time of conv1    2.338 ms ( 13.4461 % )
I0410 12:01:07.843658  7479 net.cpp:655]  Test time of pool1    3.124 ms ( 17.9664 % )
I0410 12:01:07.843672  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.322061 % )
I0410 12:01:07.843677  7479 net.cpp:655]  Test time of norm1    3.024 ms ( 17.3913 % )
I0410 12:01:07.843681  7479 net.cpp:655]  Test time of conv2    4.815 ms ( 27.6915 % )
I0410 12:01:07.843685  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.609616 % )
I0410 12:01:07.843689  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.22061 % )
I0410 12:01:07.843693  7479 net.cpp:655]  Test time of norm2    0.948 ms ( 5.45204 % )
I0410 12:01:07.843698  7479 net.cpp:655]  Test time of conv3    1.586 ms ( 9.12123 % )
I0410 12:01:07.843701  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.195537 % )
I0410 12:01:07.843706  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94962 % )
I0410 12:01:07.843709  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166782 % )
I0410 12:01:07.843713  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00575109 % )
I0410 12:01:07.843717  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.224293 % )
I0410 12:01:07.843722  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.247297 % )
I0410 12:01:07.843726  7479 caffe.cpp:330] Total forwarding time: 17.388 ms
I0410 12:01:07.846400  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230694 padding-time 0
I0410 12:01:07.846438  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.46848 avg 3.37518 mFlops-per-file 4.9152 GF/s 4248.85
I0410 12:01:07.857481  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00480485 padding-time 0
I0410 12:01:07.857520  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.78229 avg 5.62296 mFlops-per-file 13.1072 GF/s 6796.41
I0410 12:01:07.860716  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155306 padding-time 0
I0410 12:01:07.860744  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30286 avg 2.25331 mFlops-per-file 6.5536 GF/s 8532.61
I0410 12:01:07.861263  7479 net.cpp:655]  Test time of cifar    0.352 ms ( 2.0202 % )
I0410 12:01:07.861275  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.861279  7479 net.cpp:655]  Test time of conv1    2.347 ms ( 13.4699 % )
I0410 12:01:07.861284  7479 net.cpp:655]  Test time of pool1    3.093 ms ( 17.7514 % )
I0410 12:01:07.861289  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.315657 % )
I0410 12:01:07.861294  7479 net.cpp:655]  Test time of norm1    3.053 ms ( 17.5218 % )
I0410 12:01:07.861299  7479 net.cpp:655]  Test time of conv2    4.845 ms ( 27.8065 % )
I0410 12:01:07.861304  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.614096 % )
I0410 12:01:07.861307  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21396 % )
I0410 12:01:07.861311  7479 net.cpp:655]  Test time of norm2    0.937 ms ( 5.37764 % )
I0410 12:01:07.861315  7479 net.cpp:655]  Test time of conv3    1.584 ms ( 9.09091 % )
I0410 12:01:07.861320  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.189394 % )
I0410 12:01:07.861325  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94559 % )
I0410 12:01:07.861327  7479 net.cpp:655]  Test time of ip1  0.037 ms ( 0.212351 % )
I0410 12:01:07.861331  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.861335  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223829 % )
I0410 12:01:07.861340  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.246786 % )
I0410 12:01:07.861344  7479 caffe.cpp:330] Total forwarding time: 17.424 ms
I0410 12:01:07.864022  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229812 padding-time 0
I0410 12:01:07.864056  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.414 avg 3.36664 mFlops-per-file 4.9152 GF/s 4316.65
I0410 12:01:07.875668  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477195 padding-time 0
I0410 12:01:07.875706  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.86374 avg 5.61466 mFlops-per-file 13.1072 GF/s 6702
I0410 12:01:07.878906  7479 conv_layer.cpp:114] conv3 wall clock-time 0.0015502 padding-time 0
I0410 12:01:07.878937  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30277 avg 2.25628 mFlops-per-file 6.5536 GF/s 8532.94
I0410 12:01:07.879463  7479 net.cpp:655]  Test time of cifar    0.365 ms ( 2.02721 % )
I0410 12:01:07.879474  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00555401 % )
I0410 12:01:07.879479  7479 net.cpp:655]  Test time of conv1    2.335 ms ( 12.9686 % )
I0410 12:01:07.879484  7479 net.cpp:655]  Test time of pool1    3.668 ms ( 20.3721 % )
I0410 12:01:07.879489  7479 net.cpp:655]  Test time of relu1    0.057 ms ( 0.316579 % )
I0410 12:01:07.879493  7479 net.cpp:655]  Test time of norm1    3.07 ms ( 17.0508 % )
I0410 12:01:07.879498  7479 net.cpp:655]  Test time of conv2    4.813 ms ( 26.7315 % )
I0410 12:01:07.879503  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.583171 % )
I0410 12:01:07.879508  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.11025 % )
I0410 12:01:07.879511  7479 net.cpp:655]  Test time of norm2    0.947 ms ( 5.25965 % )
I0410 12:01:07.879515  7479 net.cpp:655]  Test time of conv3    1.601 ms ( 8.89197 % )
I0410 12:01:07.879518  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.19439 % )
I0410 12:01:07.879523  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.88281 % )
I0410 12:01:07.879528  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.161066 % )
I0410 12:01:07.879531  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00555401 % )
I0410 12:01:07.879535  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.216606 % )
I0410 12:01:07.879539  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.222161 % )
I0410 12:01:07.879544  7479 caffe.cpp:330] Total forwarding time: 18.005 ms
I0410 12:01:07.882227  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230813 padding-time 0
I0410 12:01:07.882266  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41829 avg 3.37713 mFlops-per-file 4.9152 GF/s 4311.23
I0410 12:01:07.893244  7479 conv_layer.cpp:114] conv2 wall clock-time 0.0048039 padding-time 0
I0410 12:01:07.893286  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 6.27963 avg 5.93954 mFlops-per-file 13.1072 GF/s 6258.14
I0410 12:01:07.896477  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155902 padding-time 0
I0410 12:01:07.896507  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.31315 avg 2.25288 mFlops-per-file 6.5536 GF/s 8494.65
I0410 12:01:07.897017  7479 net.cpp:655]  Test time of cifar    0.361 ms ( 2.07949 % )
I0410 12:01:07.897027  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00576037 % )
I0410 12:01:07.897030  7479 net.cpp:655]  Test time of conv1    2.347 ms ( 13.5196 % )
I0410 12:01:07.897035  7479 net.cpp:655]  Test time of pool1    3.091 ms ( 17.8053 % )
I0410 12:01:07.897040  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.322581 % )
I0410 12:01:07.897045  7479 net.cpp:655]  Test time of norm1    2.989 ms ( 17.2177 % )
I0410 12:01:07.897049  7479 net.cpp:655]  Test time of conv2    4.846 ms ( 27.9147 % )
I0410 12:01:07.897053  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.599078 % )
I0410 12:01:07.897058  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.22581 % )
I0410 12:01:07.897063  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.3629 % )
I0410 12:01:07.897066  7479 net.cpp:655]  Test time of conv3    1.59 ms ( 9.15899 % )
I0410 12:01:07.897070  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.195853 % )
I0410 12:01:07.897075  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.95276 % )
I0410 12:01:07.897079  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.167051 % )
I0410 12:01:07.897083  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00576037 % )
I0410 12:01:07.897086  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.224654 % )
I0410 12:01:07.897091  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.241935 % )
I0410 12:01:07.897095  7479 caffe.cpp:330] Total forwarding time: 17.36 ms
I0410 12:01:07.899761  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229788 padding-time 0
I0410 12:01:07.899801  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.42027 avg 3.3799 mFlops-per-file 4.9152 GF/s 4308.74
I0410 12:01:07.910852  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478911 padding-time 0
I0410 12:01:07.910909  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.79327 avg 5.62118 mFlops-per-file 13.1072 GF/s 6783.52
I0410 12:01:07.914113  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156784 padding-time 0
I0410 12:01:07.914144  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.3049 avg 2.25234 mFlops-per-file 6.5536 GF/s 8525.05
I0410 12:01:07.914659  7479 net.cpp:655]  Test time of cifar    0.353 ms ( 2.02315 % )
I0410 12:01:07.914669  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00573132 % )
I0410 12:01:07.914674  7479 net.cpp:655]  Test time of conv1    2.341 ms ( 13.417 % )
I0410 12:01:07.914680  7479 net.cpp:655]  Test time of pool1    3.139 ms ( 17.9906 % )
I0410 12:01:07.914685  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.315222 % )
I0410 12:01:07.914690  7479 net.cpp:655]  Test time of norm1    3.03 ms ( 17.3659 % )
I0410 12:01:07.914693  7479 net.cpp:655]  Test time of conv2    4.848 ms ( 27.7854 % )
I0410 12:01:07.914698  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.601788 % )
I0410 12:01:07.914702  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.20954 % )
I0410 12:01:07.914706  7479 net.cpp:655]  Test time of norm2    0.93 ms ( 5.33012 % )
I0410 12:01:07.914710  7479 net.cpp:655]  Test time of conv3    1.602 ms ( 9.18157 % )
I0410 12:01:07.914714  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.189133 % )
I0410 12:01:07.914718  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94292 % )
I0410 12:01:07.914722  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166208 % )
I0410 12:01:07.914726  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:07.914731  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223521 % )
I0410 12:01:07.914734  7479 net.cpp:655]  Test time of loss 0.044 ms ( 0.252178 % )
I0410 12:01:07.914738  7479 caffe.cpp:330] Total forwarding time: 17.448 ms
I0410 12:01:07.917412  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230694 padding-time 0
I0410 12:01:07.917448  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.47385 avg 3.37372 mFlops-per-file 4.9152 GF/s 4242.28
I0410 12:01:07.928483  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477791 padding-time 0
I0410 12:01:07.928524  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.79492 avg 5.62242 mFlops-per-file 13.1072 GF/s 6781.59
I0410 12:01:07.931763  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156093 padding-time 0
I0410 12:01:07.931795  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30667 avg 2.25292 mFlops-per-file 6.5536 GF/s 8518.51
I0410 12:01:07.932307  7479 net.cpp:655]  Test time of cifar    0.352 ms ( 2.01638 % )
I0410 12:01:07.932317  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00572836 % )
I0410 12:01:07.932322  7479 net.cpp:655]  Test time of conv1    2.346 ms ( 13.4387 % )
I0410 12:01:07.932327  7479 net.cpp:655]  Test time of pool1    3.151 ms ( 18.0501 % )
I0410 12:01:07.932332  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.31506 % )
I0410 12:01:07.932337  7479 net.cpp:655]  Test time of norm1    3.014 ms ( 17.2653 % )
I0410 12:01:07.932340  7479 net.cpp:655]  Test time of conv2    4.818 ms ( 27.5992 % )
I0410 12:01:07.932345  7479 net.cpp:655]  Test time of relu2    0.108 ms ( 0.618663 % )
I0410 12:01:07.932350  7479 net.cpp:655]  Test time of pool2    0.602 ms ( 3.44847 % )
I0410 12:01:07.932354  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.3331 % )
I0410 12:01:07.932358  7479 net.cpp:655]  Test time of conv3    1.594 ms ( 9.13101 % )
I0410 12:01:07.932363  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194764 % )
I0410 12:01:07.932368  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.93619 % )
I0410 12:01:07.932371  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171851 % )
I0410 12:01:07.932375  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00572836 % )
I0410 12:01:07.932379  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223406 % )
I0410 12:01:07.932384  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.24632 % )
I0410 12:01:07.932389  7479 caffe.cpp:330] Total forwarding time: 17.457 ms
I0410 12:01:07.935094  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230694 padding-time 0
I0410 12:01:07.935134  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40704 avg 3.37196 mFlops-per-file 4.9152 GF/s 4325.47
I0410 12:01:07.946102  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00475311 padding-time 0
I0410 12:01:07.946141  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.85951 avg 5.61114 mFlops-per-file 13.1072 GF/s 6706.84
I0410 12:01:07.949337  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156498 padding-time 0
I0410 12:01:07.949369  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.31117 avg 2.26324 mFlops-per-file 6.5536 GF/s 8501.93
I0410 12:01:07.949883  7479 net.cpp:655]  Test time of cifar    0.364 ms ( 2.09641 % )
I0410 12:01:07.949892  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:07.949896  7479 net.cpp:655]  Test time of conv1    2.349 ms ( 13.5288 % )
I0410 12:01:07.949901  7479 net.cpp:655]  Test time of pool1    3.129 ms ( 18.0211 % )
I0410 12:01:07.949906  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.322525 % )
I0410 12:01:07.949911  7479 net.cpp:655]  Test time of norm1    2.989 ms ( 17.2148 % )
I0410 12:01:07.949915  7479 net.cpp:655]  Test time of conv2    4.795 ms ( 27.6162 % )
I0410 12:01:07.949919  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.610494 % )
I0410 12:01:07.949924  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.22525 % )
I0410 12:01:07.949928  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.35046 % )
I0410 12:01:07.949932  7479 net.cpp:655]  Test time of conv3    1.599 ms ( 9.20924 % )
I0410 12:01:07.949936  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.201578 % )
I0410 12:01:07.949940  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.95243 % )
I0410 12:01:07.949944  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.172781 % )
I0410 12:01:07.949949  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00575937 % )
I0410 12:01:07.949952  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.224616 % )
I0410 12:01:07.949957  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.247653 % )
I0410 12:01:07.949961  7479 caffe.cpp:330] Total forwarding time: 17.363 ms
I0410 12:01:07.952618  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229597 padding-time 0
I0410 12:01:07.952653  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.50499 avg 3.38406 mFlops-per-file 4.9152 GF/s 4204.59
I0410 12:01:07.963806  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479794 padding-time 0
I0410 12:01:07.963845  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.76717 avg 5.60725 mFlops-per-file 13.1072 GF/s 6814.22
I0410 12:01:07.967038  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155187 padding-time 0
I0410 12:01:07.967069  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29185 avg 2.25314 mFlops-per-file 6.5536 GF/s 8573.6
I0410 12:01:07.967582  7479 net.cpp:655]  Test time of cifar    0.345 ms ( 1.96997 % )
I0410 12:01:07.967592  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00571004 % )
I0410 12:01:07.967597  7479 net.cpp:655]  Test time of conv1    2.334 ms ( 13.3272 % )
I0410 12:01:07.967602  7479 net.cpp:655]  Test time of pool1    3.181 ms ( 18.1636 % )
I0410 12:01:07.967607  7479 net.cpp:655]  Test time of relu1    0.054 ms ( 0.308342 % )
I0410 12:01:07.967610  7479 net.cpp:655]  Test time of norm1    3.084 ms ( 17.6098 % )
I0410 12:01:07.967615  7479 net.cpp:655]  Test time of conv2    4.837 ms ( 27.6195 % )
I0410 12:01:07.967619  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.593845 % )
I0410 12:01:07.967624  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.19762 % )
I0410 12:01:07.967628  7479 net.cpp:655]  Test time of norm2    0.941 ms ( 5.37315 % )
I0410 12:01:07.967633  7479 net.cpp:655]  Test time of conv3    1.585 ms ( 9.05042 % )
I0410 12:01:07.967636  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194141 % )
I0410 12:01:07.967640  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.9357 % )
I0410 12:01:07.967644  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171301 % )
I0410 12:01:07.967669  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00571004 % )
I0410 12:01:07.967672  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.222692 % )
I0410 12:01:07.967677  7479 net.cpp:655]  Test time of loss 0.044 ms ( 0.251242 % )
I0410 12:01:07.967681  7479 caffe.cpp:330] Total forwarding time: 17.513 ms
I0410 12:01:07.970340  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230598 padding-time 0
I0410 12:01:07.970377  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40263 avg 3.36484 mFlops-per-file 4.9152 GF/s 4331.08
I0410 12:01:07.981457  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479889 padding-time 0
I0410 12:01:07.981495  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.87598 avg 5.62806 mFlops-per-file 13.1072 GF/s 6688.04
I0410 12:01:07.984678  7479 conv_layer.cpp:114] conv3 wall clock-time 0.0015552 padding-time 0
I0410 12:01:07.984709  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.31936 avg 2.25866 mFlops-per-file 6.5536 GF/s 8471.9
I0410 12:01:07.985226  7479 net.cpp:655]  Test time of cifar    0.339 ms ( 1.94414 % )
I0410 12:01:07.985239  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00573493 % )
I0410 12:01:07.985244  7479 net.cpp:655]  Test time of conv1    2.346 ms ( 13.4541 % )
I0410 12:01:07.985249  7479 net.cpp:655]  Test time of pool1    3.116 ms ( 17.87 % )
I0410 12:01:07.985254  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.315421 % )
I0410 12:01:07.985257  7479 net.cpp:655]  Test time of norm1    3.071 ms ( 17.612 % )
I0410 12:01:07.985262  7479 net.cpp:655]  Test time of conv2    4.837 ms ( 27.7399 % )
I0410 12:01:07.985266  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.596433 % )
I0410 12:01:07.985271  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21156 % )
I0410 12:01:07.985275  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.32775 % )
I0410 12:01:07.985280  7479 net.cpp:655]  Test time of conv3    1.587 ms ( 9.10134 % )
I0410 12:01:07.985282  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194988 % )
I0410 12:01:07.985287  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.93841 % )
I0410 12:01:07.985291  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166313 % )
I0410 12:01:07.985296  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573493 % )
I0410 12:01:07.985299  7479 net.cpp:655]  Test time of accuracy 0.047 ms ( 0.269542 % )
I0410 12:01:07.985303  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.246602 % )
I0410 12:01:07.985308  7479 caffe.cpp:330] Total forwarding time: 17.437 ms
I0410 12:01:07.987974  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229692 padding-time 0
I0410 12:01:07.988009  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.42243 avg 3.37702 mFlops-per-file 4.9152 GF/s 4306.02
I0410 12:01:07.999032  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477505 padding-time 0
I0410 12:01:07.999073  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.89986 avg 5.62931 mFlops-per-file 13.1072 GF/s 6660.97
I0410 12:01:08.002308  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156188 padding-time 0
I0410 12:01:08.002339  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.27913 avg 2.24883 mFlops-per-file 6.5536 GF/s 8621.45
I0410 12:01:08.002848  7479 net.cpp:655]  Test time of cifar    0.355 ms ( 2.03684 % )
I0410 12:01:08.002859  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00573756 % )
I0410 12:01:08.002864  7479 net.cpp:655]  Test time of conv1    2.333 ms ( 13.3857 % )
I0410 12:01:08.002869  7479 net.cpp:655]  Test time of pool1    3.155 ms ( 18.102 % )
I0410 12:01:08.002874  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.315566 % )
I0410 12:01:08.002878  7479 net.cpp:655]  Test time of norm1    3 ms ( 17.2127 % )
I0410 12:01:08.002883  7479 net.cpp:655]  Test time of conv2    4.816 ms ( 27.6321 % )
I0410 12:01:08.002887  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.608182 % )
I0410 12:01:08.002892  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21304 % )
I0410 12:01:08.002897  7479 net.cpp:655]  Test time of norm2    0.97 ms ( 5.56544 % )
I0410 12:01:08.002918  7479 net.cpp:655]  Test time of conv3    1.596 ms ( 9.15715 % )
I0410 12:01:08.002923  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.18934 % )
I0410 12:01:08.002928  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94503 % )
I0410 12:01:08.002931  7479 net.cpp:655]  Test time of ip1  0.028 ms ( 0.160652 % )
I0410 12:01:08.002934  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573756 % )
I0410 12:01:08.002938  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223765 % )
I0410 12:01:08.002943  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.240978 % )
I0410 12:01:08.002948  7479 caffe.cpp:330] Total forwarding time: 17.429 ms
I0410 12:01:08.005620  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230598 padding-time 0
I0410 12:01:08.005659  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40146 avg 3.36342 mFlops-per-file 4.9152 GF/s 4332.56
I0410 12:01:08.016696  7479 conv_layer.cpp:114] conv2 wall clock-time 0.004776 padding-time 0
I0410 12:01:08.016736  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.7267 avg 5.584 mFlops-per-file 13.1072 GF/s 6862.38
I0410 12:01:08.019942  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155592 padding-time 0
I0410 12:01:08.019973  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28219 avg 2.25033 mFlops-per-file 6.5536 GF/s 8609.89
I0410 12:01:08.020484  7479 net.cpp:655]  Test time of cifar    0.351 ms ( 2.01423 % )
I0410 12:01:08.020493  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.020498  7479 net.cpp:655]  Test time of conv1    2.347 ms ( 13.4684 % )
I0410 12:01:08.020503  7479 net.cpp:655]  Test time of pool1    3.086 ms ( 17.7092 % )
I0410 12:01:08.020507  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.31562 % )
I0410 12:01:08.020511  7479 net.cpp:655]  Test time of norm1    3.082 ms ( 17.6862 % )
I0410 12:01:08.020516  7479 net.cpp:655]  Test time of conv2    4.816 ms ( 27.6369 % )
I0410 12:01:08.020520  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.602548 % )
I0410 12:01:08.020525  7479 net.cpp:655]  Test time of pool2    0.578 ms ( 3.31688 % )
I0410 12:01:08.020529  7479 net.cpp:655]  Test time of norm2    0.93 ms ( 5.33685 % )
I0410 12:01:08.020534  7479 net.cpp:655]  Test time of conv3    1.592 ms ( 9.13577 % )
I0410 12:01:08.020537  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.200849 % )
I0410 12:01:08.020541  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94537 % )
I0410 12:01:08.020545  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.177895 % )
I0410 12:01:08.020550  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573855 % )
I0410 12:01:08.020553  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223804 % )
I0410 12:01:08.020558  7479 net.cpp:655]  Test time of loss 0.039 ms ( 0.223804 % )
I0410 12:01:08.020562  7479 caffe.cpp:330] Total forwarding time: 17.426 ms
I0410 12:01:08.023249  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00231004 padding-time 0
I0410 12:01:08.023288  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.38721 avg 3.36254 mFlops-per-file 4.9152 GF/s 4350.79
I0410 12:01:08.034302  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00473499 padding-time 0
I0410 12:01:08.034339  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.77278 avg 5.57969 mFlops-per-file 13.1072 GF/s 6807.6
I0410 12:01:08.037531  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155902 padding-time 0
I0410 12:01:08.037562  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30169 avg 2.25072 mFlops-per-file 6.5536 GF/s 8536.94
I0410 12:01:08.038076  7479 net.cpp:655]  Test time of cifar    0.362 ms ( 2.08022 % )
I0410 12:01:08.038086  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00574647 % )
I0410 12:01:08.038091  7479 net.cpp:655]  Test time of conv1    2.35 ms ( 13.5042 % )
I0410 12:01:08.038095  7479 net.cpp:655]  Test time of pool1    3.122 ms ( 17.9405 % )
I0410 12:01:08.038101  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.321802 % )
I0410 12:01:08.038105  7479 net.cpp:655]  Test time of norm1    3.061 ms ( 17.5899 % )
I0410 12:01:08.038128  7479 net.cpp:655]  Test time of conv2    4.774 ms ( 27.4336 % )
I0410 12:01:08.038133  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.609125 % )
I0410 12:01:08.038138  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21802 % )
I0410 12:01:08.038142  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.33847 % )
I0410 12:01:08.038146  7479 net.cpp:655]  Test time of conv3    1.593 ms ( 9.15412 % )
I0410 12:01:08.038151  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.201126 % )
I0410 12:01:08.038154  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94805 % )
I0410 12:01:08.038158  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.17814 % )
I0410 12:01:08.038162  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00574647 % )
I0410 12:01:08.038166  7479 net.cpp:655]  Test time of accuracy 0.04 ms ( 0.229859 % )
I0410 12:01:08.038172  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.241352 % )
I0410 12:01:08.038175  7479 caffe.cpp:330] Total forwarding time: 17.402 ms
I0410 12:01:08.040859  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229788 padding-time 0
I0410 12:01:08.040895  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.39702 avg 3.36402 mFlops-per-file 4.9152 GF/s 4338.23
I0410 12:01:08.051913  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478101 padding-time 0
I0410 12:01:08.051950  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.79825 avg 5.57174 mFlops-per-file 13.1072 GF/s 6777.7
I0410 12:01:08.055155  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155592 padding-time 0
I0410 12:01:08.055186  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29305 avg 2.25706 mFlops-per-file 6.5536 GF/s 8569.11
I0410 12:01:08.055698  7479 net.cpp:655]  Test time of cifar    0.372 ms ( 2.1367 % )
I0410 12:01:08.055708  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.055713  7479 net.cpp:655]  Test time of conv1    2.334 ms ( 13.4061 % )
I0410 12:01:08.055718  7479 net.cpp:655]  Test time of pool1    3.131 ms ( 17.9839 % )
I0410 12:01:08.055723  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.321654 % )
I0410 12:01:08.055727  7479 net.cpp:655]  Test time of norm1    3.013 ms ( 17.3061 % )
I0410 12:01:08.055732  7479 net.cpp:655]  Test time of conv2    4.819 ms ( 27.6795 % )
I0410 12:01:08.055737  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.603102 % )
I0410 12:01:08.055742  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21654 % )
I0410 12:01:08.055745  7479 net.cpp:655]  Test time of norm2    0.947 ms ( 5.4394 % )
I0410 12:01:08.055749  7479 net.cpp:655]  Test time of conv3    1.589 ms ( 9.12694 % )
I0410 12:01:08.055753  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.201034 % )
I0410 12:01:08.055758  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94716 % )
I0410 12:01:08.055763  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.172315 % )
I0410 12:01:08.055766  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.055770  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.218265 % )
I0410 12:01:08.055775  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.241241 % )
I0410 12:01:08.055779  7479 caffe.cpp:330] Total forwarding time: 17.41 ms
I0410 12:01:08.058435  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230408 padding-time 0
I0410 12:01:08.058470  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.42141 avg 3.35912 mFlops-per-file 4.9152 GF/s 4307.3
I0410 12:01:08.069409  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00476599 padding-time 0
I0410 12:01:08.069447  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 6.00168 avg 5.71837 mFlops-per-file 13.1072 GF/s 6547.96
I0410 12:01:08.072641  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155902 padding-time 0
I0410 12:01:08.072671  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29335 avg 2.24963 mFlops-per-file 6.5536 GF/s 8567.99
I0410 12:01:08.073199  7479 net.cpp:655]  Test time of cifar    0.337 ms ( 1.94741 % )
I0410 12:01:08.073210  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00577868 % )
I0410 12:01:08.073225  7479 net.cpp:655]  Test time of conv1    2.339 ms ( 13.5163 % )
I0410 12:01:08.073240  7479 net.cpp:655]  Test time of pool1    3.085 ms ( 17.8272 % )
I0410 12:01:08.073246  7479 net.cpp:655]  Test time of relu1    0.057 ms ( 0.329385 % )
I0410 12:01:08.073251  7479 net.cpp:655]  Test time of norm1    2.993 ms ( 17.2956 % )
I0410 12:01:08.073254  7479 net.cpp:655]  Test time of conv2    4.805 ms ( 27.7665 % )
I0410 12:01:08.073258  7479 net.cpp:655]  Test time of relu2    0.106 ms ( 0.61254 % )
I0410 12:01:08.073263  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.23028 % )
I0410 12:01:08.073267  7479 net.cpp:655]  Test time of norm2    0.93 ms ( 5.37417 % )
I0410 12:01:08.073272  7479 net.cpp:655]  Test time of conv3    1.593 ms ( 9.20543 % )
I0410 12:01:08.073276  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.202254 % )
I0410 12:01:08.073281  7479 net.cpp:655]  Test time of pool3    0.34 ms ( 1.96475 % )
I0410 12:01:08.073284  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.17336 % )
I0410 12:01:08.073288  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00577868 % )
I0410 12:01:08.073293  7479 net.cpp:655]  Test time of accuracy 0.047 ms ( 0.271598 % )
I0410 12:01:08.073297  7479 net.cpp:655]  Test time of loss 0.047 ms ( 0.271598 % )
I0410 12:01:08.073302  7479 caffe.cpp:330] Total forwarding time: 17.305 ms
I0410 12:01:08.075961  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229216 padding-time 0
I0410 12:01:08.075995  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.47076 avg 3.3789 mFlops-per-file 4.9152 GF/s 4246.06
I0410 12:01:08.086992  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00475717 padding-time 0
I0410 12:01:08.087028  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.81643 avg 5.5942 mFlops-per-file 13.1072 GF/s 6756.51
I0410 12:01:08.090242  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00157785 padding-time 0
I0410 12:01:08.090273  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30511 avg 2.25218 mFlops-per-file 6.5536 GF/s 8524.28
I0410 12:01:08.090785  7479 net.cpp:655]  Test time of cifar    0.352 ms ( 2.02672 % )
I0410 12:01:08.090795  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00575772 % )
I0410 12:01:08.090801  7479 net.cpp:655]  Test time of conv1    2.327 ms ( 13.3982 % )
I0410 12:01:08.090806  7479 net.cpp:655]  Test time of pool1    3.134 ms ( 18.0447 % )
I0410 12:01:08.090811  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.322432 % )
I0410 12:01:08.090814  7479 net.cpp:655]  Test time of norm1    3.009 ms ( 17.325 % )
I0410 12:01:08.090819  7479 net.cpp:655]  Test time of conv2    4.796 ms ( 27.614 % )
I0410 12:01:08.090823  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.60456 % )
I0410 12:01:08.090828  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.21856 % )
I0410 12:01:08.090832  7479 net.cpp:655]  Test time of norm2    0.933 ms ( 5.37195 % )
I0410 12:01:08.090836  7479 net.cpp:655]  Test time of conv3    1.612 ms ( 9.28144 % )
I0410 12:01:08.090839  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.195762 % )
I0410 12:01:08.090844  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.95187 % )
I0410 12:01:08.090848  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.178489 % )
I0410 12:01:08.090852  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00575772 % )
I0410 12:01:08.090857  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.224551 % )
I0410 12:01:08.090862  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.230309 % )
I0410 12:01:08.090865  7479 caffe.cpp:330] Total forwarding time: 17.368 ms
I0410 12:01:08.093544  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230408 padding-time 0
I0410 12:01:08.093578  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40233 avg 3.36106 mFlops-per-file 4.9152 GF/s 4331.46
I0410 12:01:08.104696  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00475407 padding-time 0
I0410 12:01:08.104734  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.82858 avg 5.59836 mFlops-per-file 13.1072 GF/s 6742.43
I0410 12:01:08.107944  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155616 padding-time 0
I0410 12:01:08.107995  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.2932 avg 2.24996 mFlops-per-file 6.5536 GF/s 8568.55
I0410 12:01:08.108511  7479 net.cpp:655]  Test time of cifar    0.358 ms ( 2.04175 % )
I0410 12:01:08.108521  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00570321 % )
I0410 12:01:08.108526  7479 net.cpp:655]  Test time of conv1    2.342 ms ( 13.3569 % )
I0410 12:01:08.108530  7479 net.cpp:655]  Test time of pool1    3.197 ms ( 18.2331 % )
I0410 12:01:08.108536  7479 net.cpp:655]  Test time of relu1    0.057 ms ( 0.325083 % )
I0410 12:01:08.108539  7479 net.cpp:655]  Test time of norm1    3.072 ms ( 17.5202 % )
I0410 12:01:08.108544  7479 net.cpp:655]  Test time of conv2    4.793 ms ( 27.3355 % )
I0410 12:01:08.108548  7479 net.cpp:655]  Test time of relu2    0.108 ms ( 0.615946 % )
I0410 12:01:08.108553  7479 net.cpp:655]  Test time of pool2    0.576 ms ( 3.28505 % )
I0410 12:01:08.108556  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.30968 % )
I0410 12:01:08.108561  7479 net.cpp:655]  Test time of conv3    1.609 ms ( 9.17646 % )
I0410 12:01:08.108564  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.199612 % )
I0410 12:01:08.108569  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.93339 % )
I0410 12:01:08.108573  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171096 % )
I0410 12:01:08.108577  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00570321 % )
I0410 12:01:08.108582  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.216722 % )
I0410 12:01:08.108587  7479 net.cpp:655]  Test time of loss 0.047 ms ( 0.268051 % )
I0410 12:01:08.108590  7479 caffe.cpp:330] Total forwarding time: 17.534 ms
I0410 12:01:08.111249  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229788 padding-time 0
I0410 12:01:08.111286  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40407 avg 3.3602 mFlops-per-file 4.9152 GF/s 4329.24
I0410 12:01:08.122299  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00480103 padding-time 0
I0410 12:01:08.122337  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.77125 avg 5.58376 mFlops-per-file 13.1072 GF/s 6809.41
I0410 12:01:08.125533  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156403 padding-time 0
I0410 12:01:08.125566  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.2923 avg 2.2521 mFlops-per-file 6.5536 GF/s 8571.91
I0410 12:01:08.126086  7479 net.cpp:655]  Test time of cifar    0.347 ms ( 1.99586 % )
I0410 12:01:08.126096  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00575175 % )
I0410 12:01:08.126101  7479 net.cpp:655]  Test time of conv1    2.338 ms ( 13.4476 % )
I0410 12:01:08.126106  7479 net.cpp:655]  Test time of pool1    3.126 ms ( 17.98 % )
I0410 12:01:08.126111  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.322098 % )
I0410 12:01:08.126116  7479 net.cpp:655]  Test time of norm1    2.993 ms ( 17.215 % )
I0410 12:01:08.126121  7479 net.cpp:655]  Test time of conv2    4.841 ms ( 27.8442 % )
I0410 12:01:08.126124  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.615438 % )
I0410 12:01:08.126128  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.21523 % )
I0410 12:01:08.126132  7479 net.cpp:655]  Test time of norm2    0.928 ms ( 5.33763 % )
I0410 12:01:08.126137  7479 net.cpp:655]  Test time of conv3    1.599 ms ( 9.19706 % )
I0410 12:01:08.126140  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.19556 % )
I0410 12:01:08.126145  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94984 % )
I0410 12:01:08.126148  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.178304 % )
I0410 12:01:08.126153  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00575175 % )
I0410 12:01:08.126157  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.218567 % )
I0410 12:01:08.126161  7479 net.cpp:655]  Test time of loss 0.048 ms ( 0.276084 % )
I0410 12:01:08.126165  7479 caffe.cpp:330] Total forwarding time: 17.386 ms
I0410 12:01:08.128840  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229192 padding-time 0
I0410 12:01:08.128876  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.462 avg 3.37565 mFlops-per-file 4.9152 GF/s 4256.8
I0410 12:01:08.139940  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477505 padding-time 0
I0410 12:01:08.139979  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.82159 avg 5.58577 mFlops-per-file 13.1072 GF/s 6750.53
I0410 12:01:08.143193  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155902 padding-time 0
I0410 12:01:08.143225  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29152 avg 2.25301 mFlops-per-file 6.5536 GF/s 8574.83
I0410 12:01:08.143738  7479 net.cpp:655]  Test time of cifar    0.368 ms ( 2.10804 % )
I0410 12:01:08.143748  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00572836 % )
I0410 12:01:08.143752  7479 net.cpp:655]  Test time of conv1    2.347 ms ( 13.4445 % )
I0410 12:01:08.143757  7479 net.cpp:655]  Test time of pool1    3.09 ms ( 17.7006 % )
I0410 12:01:08.143762  7479 net.cpp:655]  Test time of relu1    0.075 ms ( 0.429627 % )
I0410 12:01:08.143767  7479 net.cpp:655]  Test time of norm1    3.065 ms ( 17.5574 % )
I0410 12:01:08.143771  7479 net.cpp:655]  Test time of conv2    4.816 ms ( 27.5878 % )
I0410 12:01:08.143775  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.59575 % )
I0410 12:01:08.143780  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.20215 % )
I0410 12:01:08.143784  7479 net.cpp:655]  Test time of norm2    0.953 ms ( 5.45913 % )
I0410 12:01:08.143788  7479 net.cpp:655]  Test time of conv3    1.595 ms ( 9.13674 % )
I0410 12:01:08.143792  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.200493 % )
I0410 12:01:08.143797  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94191 % )
I0410 12:01:08.143800  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166122 % )
I0410 12:01:08.143805  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00572836 % )
I0410 12:01:08.143810  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.217678 % )
I0410 12:01:08.143813  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.240591 % )
I0410 12:01:08.143817  7479 caffe.cpp:330] Total forwarding time: 17.457 ms
I0410 12:01:08.146493  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230312 padding-time 0
I0410 12:01:08.146530  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.50037 avg 3.37703 mFlops-per-file 4.9152 GF/s 4210.14
I0410 12:01:08.157678  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479984 padding-time 0
I0410 12:01:08.157719  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.85003 avg 5.59728 mFlops-per-file 13.1072 GF/s 6717.71
I0410 12:01:08.160905  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155687 padding-time 0
I0410 12:01:08.160933  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28966 avg 2.25572 mFlops-per-file 6.5536 GF/s 8581.8
I0410 12:01:08.161453  7479 net.cpp:655]  Test time of cifar    0.359 ms ( 2.04862 % )
I0410 12:01:08.161464  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.161469  7479 net.cpp:655]  Test time of conv1    2.341 ms ( 13.3588 % )
I0410 12:01:08.161474  7479 net.cpp:655]  Test time of pool1    3.203 ms ( 18.2778 % )
I0410 12:01:08.161479  7479 net.cpp:655]  Test time of relu1    0.057 ms ( 0.325268 % )
I0410 12:01:08.161484  7479 net.cpp:655]  Test time of norm1    3.051 ms ( 17.4104 % )
I0410 12:01:08.161489  7479 net.cpp:655]  Test time of conv2    4.84 ms ( 27.6193 % )
I0410 12:01:08.161494  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.593472 % )
I0410 12:01:08.161499  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.19562 % )
I0410 12:01:08.161502  7479 net.cpp:655]  Test time of norm2    0.927 ms ( 5.28989 % )
I0410 12:01:08.161506  7479 net.cpp:655]  Test time of conv3    1.589 ms ( 9.06756 % )
I0410 12:01:08.161510  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.199726 % )
I0410 12:01:08.161515  7479 net.cpp:655]  Test time of pool3    0.347 ms ( 1.98014 % )
I0410 12:01:08.161520  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.165487 % )
I0410 12:01:08.161523  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00570646 % )
I0410 12:01:08.161527  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.222552 % )
I0410 12:01:08.161545  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.239671 % )
I0410 12:01:08.161561  7479 caffe.cpp:330] Total forwarding time: 17.524 ms
I0410 12:01:08.164242  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229406 padding-time 0
I0410 12:01:08.164276  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.43512 avg 3.3654 mFlops-per-file 4.9152 GF/s 4290.11
I0410 12:01:08.175325  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00476503 padding-time 0
I0410 12:01:08.175364  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.83608 avg 5.5917 mFlops-per-file 13.1072 GF/s 6733.76
I0410 12:01:08.178557  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156093 padding-time 0
I0410 12:01:08.178587  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28915 avg 2.24772 mFlops-per-file 6.5536 GF/s 8583.71
I0410 12:01:08.179101  7479 net.cpp:655]  Test time of cifar    0.37 ms ( 2.12326 % )
I0410 12:01:08.179111  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.179116  7479 net.cpp:655]  Test time of conv1    2.33 ms ( 13.3708 % )
I0410 12:01:08.179121  7479 net.cpp:655]  Test time of pool1    3.122 ms ( 17.9158 % )
I0410 12:01:08.179126  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.321359 % )
I0410 12:01:08.179129  7479 net.cpp:655]  Test time of norm1    3.066 ms ( 17.5944 % )
I0410 12:01:08.179134  7479 net.cpp:655]  Test time of conv2    4.805 ms ( 27.5737 % )
I0410 12:01:08.179138  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.614025 % )
I0410 12:01:08.179143  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21359 % )
I0410 12:01:08.179147  7479 net.cpp:655]  Test time of norm2    0.928 ms ( 5.32538 % )
I0410 12:01:08.179152  7479 net.cpp:655]  Test time of conv3    1.595 ms ( 9.15299 % )
I0410 12:01:08.179155  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.200849 % )
I0410 12:01:08.179159  7479 net.cpp:655]  Test time of pool3    0.34 ms ( 1.95111 % )
I0410 12:01:08.179163  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166418 % )
I0410 12:01:08.179167  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573855 % )
I0410 12:01:08.179172  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.218065 % )
I0410 12:01:08.179177  7479 net.cpp:655]  Test time of loss 0.044 ms ( 0.252496 % )
I0410 12:01:08.179180  7479 caffe.cpp:330] Total forwarding time: 17.426 ms
I0410 12:01:08.181850  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230408 padding-time 0
I0410 12:01:08.181885  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.38085 avg 3.35102 mFlops-per-file 4.9152 GF/s 4358.98
I0410 12:01:08.192971  7479 conv_layer.cpp:114] conv2 wall clock-time 0.0047729 padding-time 0
I0410 12:01:08.193011  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.82747 avg 5.5893 mFlops-per-file 13.1072 GF/s 6743.71
I0410 12:01:08.196223  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156188 padding-time 0
I0410 12:01:08.196256  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29653 avg 2.25099 mFlops-per-file 6.5536 GF/s 8556.12
I0410 12:01:08.196768  7479 net.cpp:655]  Test time of cifar    0.35 ms ( 2.00298 % )
I0410 12:01:08.196777  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.196782  7479 net.cpp:655]  Test time of conv1    2.342 ms ( 13.4028 % )
I0410 12:01:08.196787  7479 net.cpp:655]  Test time of pool1    3.154 ms ( 18.0497 % )
I0410 12:01:08.196792  7479 net.cpp:655]  Test time of relu1    0.082 ms ( 0.469269 % )
I0410 12:01:08.196796  7479 net.cpp:655]  Test time of norm1    3.038 ms ( 17.3858 % )
I0410 12:01:08.196801  7479 net.cpp:655]  Test time of conv2    4.814 ms ( 27.5495 % )
I0410 12:01:08.196805  7479 net.cpp:655]  Test time of relu2    0.116 ms ( 0.663843 % )
I0410 12:01:08.196810  7479 net.cpp:655]  Test time of pool2    0.563 ms ( 3.22193 % )
I0410 12:01:08.196813  7479 net.cpp:655]  Test time of norm2    0.932 ms ( 5.33364 % )
I0410 12:01:08.196817  7479 net.cpp:655]  Test time of conv3    1.597 ms ( 9.13929 % )
I0410 12:01:08.196821  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194575 % )
I0410 12:01:08.196837  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94003 % )
I0410 12:01:08.196849  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171684 % )
I0410 12:01:08.196853  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00572279 % )
I0410 12:01:08.196858  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223189 % )
I0410 12:01:08.196862  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.24608 % )
I0410 12:01:08.196866  7479 caffe.cpp:330] Total forwarding time: 17.474 ms
I0410 12:01:08.199539  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229502 padding-time 0
I0410 12:01:08.199578  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.40893 avg 3.36399 mFlops-per-file 4.9152 GF/s 4323.07
I0410 12:01:08.210700  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478196 padding-time 0
I0410 12:01:08.210739  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.80107 avg 5.5858 mFlops-per-file 13.1072 GF/s 6774.4
I0410 12:01:08.213941  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156188 padding-time 0
I0410 12:01:08.213974  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.2878 avg 2.24748 mFlops-per-file 6.5536 GF/s 8588.77
I0410 12:01:08.214488  7479 net.cpp:655]  Test time of cifar    0.362 ms ( 2.06845 % )
I0410 12:01:08.214499  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00571396 % )
I0410 12:01:08.214504  7479 net.cpp:655]  Test time of conv1    2.334 ms ( 13.3364 % )
I0410 12:01:08.214509  7479 net.cpp:655]  Test time of pool1    3.181 ms ( 18.1761 % )
I0410 12:01:08.214514  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.319982 % )
I0410 12:01:08.214519  7479 net.cpp:655]  Test time of norm1    3.066 ms ( 17.519 % )
I0410 12:01:08.214524  7479 net.cpp:655]  Test time of conv2    4.821 ms ( 27.547 % )
I0410 12:01:08.214527  7479 net.cpp:655]  Test time of relu2    0.109 ms ( 0.622822 % )
I0410 12:01:08.214532  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.19982 % )
I0410 12:01:08.214536  7479 net.cpp:655]  Test time of norm2    0.93 ms ( 5.31398 % )
I0410 12:01:08.214540  7479 net.cpp:655]  Test time of conv3    1.599 ms ( 9.13662 % )
I0410 12:01:08.214545  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.188561 % )
I0410 12:01:08.214550  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.93132 % )
I0410 12:01:08.214553  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.177133 % )
I0410 12:01:08.214557  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.214561  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.21713 % )
I0410 12:01:08.214566  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.239986 % )
I0410 12:01:08.214570  7479 caffe.cpp:330] Total forwarding time: 17.501 ms
I0410 12:01:08.217257  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230694 padding-time 0
I0410 12:01:08.217293  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.71943 avg 3.68602 mFlops-per-file 4.9152 GF/s 3962.18
I0410 12:01:08.228389  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00476813 padding-time 0
I0410 12:01:08.228428  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.79231 avg 5.58136 mFlops-per-file 13.1072 GF/s 6784.65
I0410 12:01:08.231621  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00154686 padding-time 0
I0410 12:01:08.231652  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29638 avg 2.25218 mFlops-per-file 6.5536 GF/s 8556.68
I0410 12:01:08.232161  7479 net.cpp:655]  Test time of cifar    0.366 ms ( 2.09466 % )
I0410 12:01:08.232169  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00572312 % )
I0410 12:01:08.232174  7479 net.cpp:655]  Test time of conv1    2.346 ms ( 13.4264 % )
I0410 12:01:08.232179  7479 net.cpp:655]  Test time of pool1    3.104 ms ( 17.7646 % )
I0410 12:01:08.232184  7479 net.cpp:655]  Test time of relu1    0.074 ms ( 0.423511 % )
I0410 12:01:08.232188  7479 net.cpp:655]  Test time of norm1    3.107 ms ( 17.7817 % )
I0410 12:01:08.232193  7479 net.cpp:655]  Test time of conv2    4.81 ms ( 27.5282 % )
I0410 12:01:08.232197  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.612373 % )
I0410 12:01:08.232203  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.19922 % )
I0410 12:01:08.232223  7479 net.cpp:655]  Test time of norm2    0.939 ms ( 5.37401 % )
I0410 12:01:08.232228  7479 net.cpp:655]  Test time of conv3    1.581 ms ( 9.04825 % )
I0410 12:01:08.232233  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194586 % )
I0410 12:01:08.232237  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.93441 % )
I0410 12:01:08.232241  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171693 % )
I0410 12:01:08.232245  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.232249  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.217478 % )
I0410 12:01:08.232254  7479 net.cpp:655]  Test time of loss 0.039 ms ( 0.223202 % )
I0410 12:01:08.232257  7479 caffe.cpp:330] Total forwarding time: 17.473 ms
I0410 12:01:08.234908  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230694 padding-time 0
I0410 12:01:08.234947  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.4185 avg 3.36199 mFlops-per-file 4.9152 GF/s 4310.97
I0410 12:01:08.246027  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478983 padding-time 0
I0410 12:01:08.246064  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.75883 avg 5.5774 mFlops-per-file 13.1072 GF/s 6824.09
I0410 12:01:08.249256  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155807 padding-time 0
I0410 12:01:08.249287  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29581 avg 2.26138 mFlops-per-file 6.5536 GF/s 8558.81
I0410 12:01:08.249801  7479 net.cpp:655]  Test time of cifar    0.331 ms ( 1.8987 % )
I0410 12:01:08.249810  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.249815  7479 net.cpp:655]  Test time of conv1    2.345 ms ( 13.4515 % )
I0410 12:01:08.249820  7479 net.cpp:655]  Test time of pool1    3.162 ms ( 18.138 % )
I0410 12:01:08.249825  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.32123 % )
I0410 12:01:08.249830  7479 net.cpp:655]  Test time of norm1    3.036 ms ( 17.4152 % )
I0410 12:01:08.249835  7479 net.cpp:655]  Test time of conv2    4.828 ms ( 27.6946 % )
I0410 12:01:08.249838  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.602306 % )
I0410 12:01:08.249843  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.20656 % )
I0410 12:01:08.249847  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.34045 % )
I0410 12:01:08.249851  7479 net.cpp:655]  Test time of conv3    1.592 ms ( 9.13211 % )
I0410 12:01:08.249855  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.200769 % )
I0410 12:01:08.249860  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94459 % )
I0410 12:01:08.249863  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.177824 % )
I0410 12:01:08.249867  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573625 % )
I0410 12:01:08.249871  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223714 % )
I0410 12:01:08.249876  7479 net.cpp:655]  Test time of loss 0.043 ms ( 0.246659 % )
I0410 12:01:08.249881  7479 caffe.cpp:330] Total forwarding time: 17.433 ms
I0410 12:01:08.252538  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229883 padding-time 0
I0410 12:01:08.252573  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.4155 avg 3.35647 mFlops-per-file 4.9152 GF/s 4314.76
I0410 12:01:08.263674  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479603 padding-time 0
I0410 12:01:08.263712  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.74125 avg 5.58101 mFlops-per-file 13.1072 GF/s 6844.99
I0410 12:01:08.266921  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155592 padding-time 0
I0410 12:01:08.266950  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.2854 avg 2.25 mFlops-per-file 6.5536 GF/s 8597.79
I0410 12:01:08.267460  7479 net.cpp:655]  Test time of cifar    0.345 ms ( 1.97515 % )
I0410 12:01:08.267470  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.267474  7479 net.cpp:655]  Test time of conv1    2.335 ms ( 13.3681 % )
I0410 12:01:08.267479  7479 net.cpp:655]  Test time of pool1    3.128 ms ( 17.9081 % )
I0410 12:01:08.267484  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.320605 % )
I0410 12:01:08.267498  7479 net.cpp:655]  Test time of norm1    3.081 ms ( 17.639 % )
I0410 12:01:08.267513  7479 net.cpp:655]  Test time of conv2    4.837 ms ( 27.6922 % )
I0410 12:01:08.267518  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.601134 % )
I0410 12:01:08.267522  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.20032 % )
I0410 12:01:08.267526  7479 net.cpp:655]  Test time of norm2    0.951 ms ( 5.44455 % )
I0410 12:01:08.267530  7479 net.cpp:655]  Test time of conv3    1.588 ms ( 9.09143 % )
I0410 12:01:08.267534  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.188928 % )
I0410 12:01:08.267539  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.9408 % )
I0410 12:01:08.267542  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166027 % )
I0410 12:01:08.267546  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00572508 % )
I0410 12:01:08.267550  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.217553 % )
I0410 12:01:08.267554  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.240453 % )
I0410 12:01:08.267558  7479 caffe.cpp:330] Total forwarding time: 17.467 ms
I0410 12:01:08.270212  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230098 padding-time 0
I0410 12:01:08.270251  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.43755 avg 3.3552 mFlops-per-file 4.9152 GF/s 4287.08
I0410 12:01:08.281288  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478816 padding-time 0
I0410 12:01:08.281327  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 6.15957 avg 5.84954 mFlops-per-file 13.1072 GF/s 6380.12
I0410 12:01:08.284520  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155592 padding-time 0
I0410 12:01:08.284548  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28843 avg 2.24441 mFlops-per-file 6.5536 GF/s 8586.41
I0410 12:01:08.285054  7479 net.cpp:655]  Test time of cifar    0.338 ms ( 1.94465 % )
I0410 12:01:08.285064  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00575341 % )
I0410 12:01:08.285070  7479 net.cpp:655]  Test time of conv1    2.339 ms ( 13.4572 % )
I0410 12:01:08.285074  7479 net.cpp:655]  Test time of pool1    3.145 ms ( 18.0945 % )
I0410 12:01:08.285079  7479 net.cpp:655]  Test time of relu1    0.055 ms ( 0.316437 % )
I0410 12:01:08.285084  7479 net.cpp:655]  Test time of norm1    3.013 ms ( 17.335 % )
I0410 12:01:08.285089  7479 net.cpp:655]  Test time of conv2    4.826 ms ( 27.766 % )
I0410 12:01:08.285092  7479 net.cpp:655]  Test time of relu2    0.108 ms ( 0.621368 % )
I0410 12:01:08.285097  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.22191 % )
I0410 12:01:08.285101  7479 net.cpp:655]  Test time of norm2    0.931 ms ( 5.35642 % )
I0410 12:01:08.285105  7479 net.cpp:655]  Test time of conv3    1.586 ms ( 9.12491 % )
I0410 12:01:08.285109  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.189862 % )
I0410 12:01:08.285114  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.94465 % )
I0410 12:01:08.285117  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166849 % )
I0410 12:01:08.285121  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00575341 % )
I0410 12:01:08.285125  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.21863 % )
I0410 12:01:08.285130  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.230136 % )
I0410 12:01:08.285143  7479 caffe.cpp:330] Total forwarding time: 17.381 ms
I0410 12:01:08.287838  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229692 padding-time 0
I0410 12:01:08.287875  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.47067 avg 3.37146 mFlops-per-file 4.9152 GF/s 4246.17
I0410 12:01:08.298916  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00478411 padding-time 0
I0410 12:01:08.298955  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.79636 avg 5.59621 mFlops-per-file 13.1072 GF/s 6779.91
I0410 12:01:08.302160  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00156808 padding-time 0
I0410 12:01:08.302193  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28111 avg 2.25031 mFlops-per-file 6.5536 GF/s 8613.96
I0410 12:01:08.302700  7479 net.cpp:655]  Test time of cifar    0.381 ms ( 2.18438 % )
I0410 12:01:08.302721  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.302733  7479 net.cpp:655]  Test time of conv1    2.334 ms ( 13.3815 % )
I0410 12:01:08.302738  7479 net.cpp:655]  Test time of pool1    3.101 ms ( 17.7789 % )
I0410 12:01:08.302743  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.321064 % )
I0410 12:01:08.302748  7479 net.cpp:655]  Test time of norm1    3.063 ms ( 17.5611 % )
I0410 12:01:08.302752  7479 net.cpp:655]  Test time of conv2    4.825 ms ( 27.6631 % )
I0410 12:01:08.302757  7479 net.cpp:655]  Test time of relu2    0.108 ms ( 0.619195 % )
I0410 12:01:08.302762  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21064 % )
I0410 12:01:08.302765  7479 net.cpp:655]  Test time of norm2    0.93 ms ( 5.33196 % )
I0410 12:01:08.302769  7479 net.cpp:655]  Test time of conv3    1.604 ms ( 9.19619 % )
I0410 12:01:08.302772  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194932 % )
I0410 12:01:08.302778  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94358 % )
I0410 12:01:08.302781  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171999 % )
I0410 12:01:08.302785  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573329 % )
I0410 12:01:08.302789  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.217865 % )
I0410 12:01:08.302793  7479 net.cpp:655]  Test time of loss 0.038 ms ( 0.217865 % )
I0410 12:01:08.302798  7479 caffe.cpp:330] Total forwarding time: 17.442 ms
I0410 12:01:08.305513  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00233912 padding-time 0
I0410 12:01:08.305552  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41961 avg 3.34806 mFlops-per-file 4.9152 GF/s 4309.57
I0410 12:01:08.316577  7479 conv_layer.cpp:114] conv2 wall clock-time 0.0047729 padding-time 0
I0410 12:01:08.316613  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.81667 avg 5.59498 mFlops-per-file 13.1072 GF/s 6756.24
I0410 12:01:08.319816  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155306 padding-time 0
I0410 12:01:08.319847  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.2878 avg 2.25296 mFlops-per-file 6.5536 GF/s 8588.77
I0410 12:01:08.320358  7479 net.cpp:655]  Test time of cifar    0.362 ms ( 2.07569 % )
I0410 12:01:08.320366  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.320370  7479 net.cpp:655]  Test time of conv1    2.378 ms ( 13.6353 % )
I0410 12:01:08.320375  7479 net.cpp:655]  Test time of pool1    3.079 ms ( 17.6548 % )
I0410 12:01:08.320380  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.321101 % )
I0410 12:01:08.320385  7479 net.cpp:655]  Test time of norm1    3.075 ms ( 17.6319 % )
I0410 12:01:08.320389  7479 net.cpp:655]  Test time of conv2    4.812 ms ( 27.5917 % )
I0410 12:01:08.320394  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.59633 % )
I0410 12:01:08.320399  7479 net.cpp:655]  Test time of pool2    0.575 ms ( 3.29702 % )
I0410 12:01:08.320402  7479 net.cpp:655]  Test time of norm2    0.93 ms ( 5.33257 % )
I0410 12:01:08.320406  7479 net.cpp:655]  Test time of conv3    1.586 ms ( 9.09404 % )
I0410 12:01:08.320410  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194954 % )
I0410 12:01:08.320415  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94381 % )
I0410 12:01:08.320418  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.172018 % )
I0410 12:01:08.320422  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.320426  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223624 % )
I0410 12:01:08.320431  7479 net.cpp:655]  Test time of loss 0.041 ms ( 0.235092 % )
I0410 12:01:08.320436  7479 caffe.cpp:330] Total forwarding time: 17.44 ms
I0410 12:01:08.323102  7479 conv_layer.cpp:114] conv1 wall clock-time 0.0023191 padding-time 0
I0410 12:01:08.323141  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.39903 avg 3.34982 mFlops-per-file 4.9152 GF/s 4335.66
I0410 12:01:08.334218  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477004 padding-time 0
I0410 12:01:08.334255  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.81028 avg 5.6053 mFlops-per-file 13.1072 GF/s 6763.67
I0410 12:01:08.337471  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00157213 padding-time 0
I0410 12:01:08.337517  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.27523 avg 2.24935 mFlops-per-file 6.5536 GF/s 8636.22
I0410 12:01:08.338032  7479 net.cpp:655]  Test time of cifar    0.336 ms ( 1.92231 % )
I0410 12:01:08.338042  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00572115 % )
I0410 12:01:08.338047  7479 net.cpp:655]  Test time of conv1    2.357 ms ( 13.4848 % )
I0410 12:01:08.338052  7479 net.cpp:655]  Test time of pool1    3.177 ms ( 18.1761 % )
I0410 12:01:08.338057  7479 net.cpp:655]  Test time of relu1    0.074 ms ( 0.423365 % )
I0410 12:01:08.338060  7479 net.cpp:655]  Test time of norm1    3.014 ms ( 17.2435 % )
I0410 12:01:08.338065  7479 net.cpp:655]  Test time of conv2    4.82 ms ( 27.5759 % )
I0410 12:01:08.338069  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.600721 % )
I0410 12:01:08.338073  7479 net.cpp:655]  Test time of pool2    0.561 ms ( 3.20957 % )
I0410 12:01:08.338078  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.31495 % )
I0410 12:01:08.338081  7479 net.cpp:655]  Test time of conv3    1.62 ms ( 9.26826 % )
I0410 12:01:08.338085  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.20024 % )
I0410 12:01:08.338090  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.93375 % )
I0410 12:01:08.338094  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.165913 % )
I0410 12:01:08.338099  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00572115 % )
I0410 12:01:08.338102  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.217404 % )
I0410 12:01:08.338106  7479 net.cpp:655]  Test time of loss 0.044 ms ( 0.251731 % )
I0410 12:01:08.338111  7479 caffe.cpp:330] Total forwarding time: 17.479 ms
I0410 12:01:08.340775  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229812 padding-time 0
I0410 12:01:08.340811  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41436 avg 3.3674 mFlops-per-file 4.9152 GF/s 4316.2
I0410 12:01:08.351915  7479 conv_layer.cpp:114] conv2 wall clock-time 0.004776 padding-time 0
I0410 12:01:08.351955  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.75955 avg 5.58713 mFlops-per-file 13.1072 GF/s 6823.24
I0410 12:01:08.355166  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155616 padding-time 0
I0410 12:01:08.355197  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28918 avg 2.24623 mFlops-per-file 6.5536 GF/s 8583.6
I0410 12:01:08.355708  7479 net.cpp:655]  Test time of cifar    0.35 ms ( 2.00149 % )
I0410 12:01:08.355718  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00571853 % )
I0410 12:01:08.355725  7479 net.cpp:655]  Test time of conv1    2.337 ms ( 13.3642 % )
I0410 12:01:08.355729  7479 net.cpp:655]  Test time of pool1    3.168 ms ( 18.1163 % )
I0410 12:01:08.355734  7479 net.cpp:655]  Test time of relu1    0.056 ms ( 0.320238 % )
I0410 12:01:08.355738  7479 net.cpp:655]  Test time of norm1    3.067 ms ( 17.5387 % )
I0410 12:01:08.355742  7479 net.cpp:655]  Test time of conv2    4.816 ms ( 27.5405 % )
I0410 12:01:08.355746  7479 net.cpp:655]  Test time of relu2    0.107 ms ( 0.611883 % )
I0410 12:01:08.355751  7479 net.cpp:655]  Test time of pool2    0.561 ms ( 3.2081 % )
I0410 12:01:08.355756  7479 net.cpp:655]  Test time of norm2    0.948 ms ( 5.42117 % )
I0410 12:01:08.355759  7479 net.cpp:655]  Test time of conv3    1.592 ms ( 9.10391 % )
I0410 12:01:08.355763  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.200149 % )
I0410 12:01:08.355768  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.93858 % )
I0410 12:01:08.355772  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171556 % )
I0410 12:01:08.355777  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.355779  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223023 % )
I0410 12:01:08.355784  7479 net.cpp:655]  Test time of loss 0.041 ms ( 0.23446 % )
I0410 12:01:08.355788  7479 caffe.cpp:330] Total forwarding time: 17.487 ms
I0410 12:01:08.358471  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00231099 padding-time 0
I0410 12:01:08.358508  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.65862 avg 3.39874 mFlops-per-file 4.9152 GF/s 4028.03
I0410 12:01:08.369489  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479317 padding-time 0
I0410 12:01:08.369529  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.81934 avg 5.60785 mFlops-per-file 13.1072 GF/s 6753.14
I0410 12:01:08.372709  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00154996 padding-time 0
I0410 12:01:08.372735  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.30838 avg 2.25225 mFlops-per-file 6.5536 GF/s 8512.2
I0410 12:01:08.373258  7479 net.cpp:655]  Test time of cifar    0.358 ms ( 2.06281 % )
I0410 12:01:08.373268  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00576203 % )
I0410 12:01:08.373273  7479 net.cpp:655]  Test time of conv1    2.368 ms ( 13.6445 % )
I0410 12:01:08.373277  7479 net.cpp:655]  Test time of pool1    3.085 ms ( 17.7759 % )
I0410 12:01:08.373282  7479 net.cpp:655]  Test time of relu1    0.075 ms ( 0.432152 % )
I0410 12:01:08.373287  7479 net.cpp:655]  Test time of norm1    2.969 ms ( 17.1075 % )
I0410 12:01:08.373291  7479 net.cpp:655]  Test time of conv2    4.833 ms ( 27.8479 % )
I0410 12:01:08.373296  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.605013 % )
I0410 12:01:08.373301  7479 net.cpp:655]  Test time of pool2    0.561 ms ( 3.2325 % )
I0410 12:01:08.373304  7479 net.cpp:655]  Test time of norm2    0.926 ms ( 5.33564 % )
I0410 12:01:08.373308  7479 net.cpp:655]  Test time of conv3    1.581 ms ( 9.10977 % )
I0410 12:01:08.373312  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.201671 % )
I0410 12:01:08.373317  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.95333 % )
I0410 12:01:08.373320  7479 net.cpp:655]  Test time of ip1  0.036 ms ( 0.207433 % )
I0410 12:01:08.373324  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.373328  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.218957 % )
I0410 12:01:08.373332  7479 net.cpp:655]  Test time of loss 0.045 ms ( 0.259291 % )
I0410 12:01:08.373337  7479 caffe.cpp:330] Total forwarding time: 17.355 ms
I0410 12:01:08.376049  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00234485 padding-time 0
I0410 12:01:08.376086  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.42117 avg 3.36736 mFlops-per-file 4.9152 GF/s 4307.6
I0410 12:01:08.387161  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479507 padding-time 0
I0410 12:01:08.387198  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.74107 avg 5.59777 mFlops-per-file 13.1072 GF/s 6845.2
I0410 12:01:08.390398  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00157094 padding-time 0
I0410 12:01:08.390426  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.2833 avg 2.25119 mFlops-per-file 6.5536 GF/s 8605.7
I0410 12:01:08.390942  7479 net.cpp:655]  Test time of cifar    0.352 ms ( 2.01223 % )
I0410 12:01:08.390952  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00571657 % )
I0410 12:01:08.390957  7479 net.cpp:655]  Test time of conv1    2.385 ms ( 13.634 % )
I0410 12:01:08.390962  7479 net.cpp:655]  Test time of pool1    3.137 ms ( 17.9329 % )
I0410 12:01:08.390967  7479 net.cpp:655]  Test time of relu1    0.076 ms ( 0.434459 % )
I0410 12:01:08.390972  7479 net.cpp:655]  Test time of norm1    3.025 ms ( 17.2926 % )
I0410 12:01:08.390976  7479 net.cpp:655]  Test time of conv2    4.834 ms ( 27.6339 % )
I0410 12:01:08.390980  7479 net.cpp:655]  Test time of relu2    0.104 ms ( 0.594524 % )
I0410 12:01:08.390985  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.20128 % )
I0410 12:01:08.390990  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.3107 % )
I0410 12:01:08.390993  7479 net.cpp:655]  Test time of conv3    1.602 ms ( 9.15795 % )
I0410 12:01:08.390997  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.20008 % )
I0410 12:01:08.391001  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.93792 % )
I0410 12:01:08.391005  7479 net.cpp:655]  Test time of ip1  0.03 ms ( 0.171497 % )
I0410 12:01:08.391010  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00571657 % )
I0410 12:01:08.391013  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.21723 % )
I0410 12:01:08.391039  7479 net.cpp:655]  Test time of loss 0.045 ms ( 0.257246 % )
I0410 12:01:08.391044  7479 caffe.cpp:330] Total forwarding time: 17.493 ms
I0410 12:01:08.393718  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230002 padding-time 0
I0410 12:01:08.393756  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41574 avg 3.36461 mFlops-per-file 4.9152 GF/s 4314.45
I0410 12:01:08.404814  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00477409 padding-time 0
I0410 12:01:08.404851  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.76135 avg 5.58136 mFlops-per-file 13.1072 GF/s 6821.11
I0410 12:01:08.408058  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155902 padding-time 0
I0410 12:01:08.408092  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.29323 avg 2.25295 mFlops-per-file 6.5536 GF/s 8568.44
I0410 12:01:08.408603  7479 net.cpp:655]  Test time of cifar    0.361 ms ( 2.06912 % )
I0410 12:01:08.408613  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.408618  7479 net.cpp:655]  Test time of conv1    2.339 ms ( 13.4063 % )
I0410 12:01:08.408623  7479 net.cpp:655]  Test time of pool1    3.096 ms ( 17.7452 % )
I0410 12:01:08.408628  7479 net.cpp:655]  Test time of relu1    0.075 ms ( 0.429873 % )
I0410 12:01:08.408633  7479 net.cpp:655]  Test time of norm1    3.073 ms ( 17.6133 % )
I0410 12:01:08.408638  7479 net.cpp:655]  Test time of conv2    4.814 ms ( 27.5921 % )
I0410 12:01:08.408641  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.601823 % )
I0410 12:01:08.408646  7479 net.cpp:655]  Test time of pool2    0.576 ms ( 3.30143 % )
I0410 12:01:08.408650  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.3247 % )
I0410 12:01:08.408654  7479 net.cpp:655]  Test time of conv3    1.595 ms ( 9.14197 % )
I0410 12:01:08.408658  7479 net.cpp:655]  Test time of relu3    0.035 ms ( 0.200608 % )
I0410 12:01:08.408663  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.94303 % )
I0410 12:01:08.408666  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.166218 % )
I0410 12:01:08.408670  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00573164 % )
I0410 12:01:08.408674  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.223534 % )
I0410 12:01:08.408679  7479 net.cpp:655]  Test time of loss 0.041 ms ( 0.234997 % )
I0410 12:01:08.408684  7479 caffe.cpp:330] Total forwarding time: 17.447 ms
I0410 12:01:08.411355  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00230312 padding-time 0
I0410 12:01:08.411389  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.41346 avg 3.38516 mFlops-per-file 4.9152 GF/s 4317.33
I0410 12:01:08.422410  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479198 padding-time 0
I0410 12:01:08.422457  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.76717 avg 5.59493 mFlops-per-file 13.1072 GF/s 6814.22
I0410 12:01:08.425657  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155807 padding-time 0
I0410 12:01:08.425686  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.28879 avg 2.25307 mFlops-per-file 6.5536 GF/s 8585.06
I0410 12:01:08.426198  7479 net.cpp:655]  Test time of cifar    0.353 ms ( 2.02897 % )
I0410 12:01:08.426208  7479 net.cpp:655]  Test time of label_cifar_1_split  0.001 ms ( 0.00574779 % )
I0410 12:01:08.426213  7479 net.cpp:655]  Test time of conv1    2.34 ms ( 13.4498 % )
I0410 12:01:08.426218  7479 net.cpp:655]  Test time of pool1    3.141 ms ( 18.0538 % )
I0410 12:01:08.426223  7479 net.cpp:655]  Test time of relu1    0.074 ms ( 0.425336 % )
I0410 12:01:08.426228  7479 net.cpp:655]  Test time of norm1    2.975 ms ( 17.0997 % )
I0410 12:01:08.426231  7479 net.cpp:655]  Test time of conv2    4.845 ms ( 27.848 % )
I0410 12:01:08.426236  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.603518 % )
I0410 12:01:08.426241  7479 net.cpp:655]  Test time of pool2    0.56 ms ( 3.21876 % )
I0410 12:01:08.426245  7479 net.cpp:655]  Test time of norm2    0.929 ms ( 5.33969 % )
I0410 12:01:08.426249  7479 net.cpp:655]  Test time of conv3    1.592 ms ( 9.15048 % )
I0410 12:01:08.426252  7479 net.cpp:655]  Test time of relu3    0.033 ms ( 0.189677 % )
I0410 12:01:08.426276  7479 net.cpp:655]  Test time of pool3    0.338 ms ( 1.94275 % )
I0410 12:01:08.426281  7479 net.cpp:655]  Test time of ip1  0.031 ms ( 0.178181 % )
I0410 12:01:08.426285  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0 ms ( 0 % )
I0410 12:01:08.426290  7479 net.cpp:655]  Test time of accuracy 0.039 ms ( 0.224164 % )
I0410 12:01:08.426295  7479 net.cpp:655]  Test time of loss 0.042 ms ( 0.241407 % )
I0410 12:01:08.426298  7479 caffe.cpp:330] Total forwarding time: 17.398 ms
I0410 12:01:08.428973  7479 conv_layer.cpp:114] conv1 wall clock-time 0.00229692 padding-time 0
I0410 12:01:08.429008  7479 conv_layer.cpp:124] conv1 K-cycles-per-file max 3.42579 avg 3.37272 mFlops-per-file 4.9152 GF/s 4301.8
I0410 12:01:08.440127  7479 conv_layer.cpp:114] conv2 wall clock-time 0.00479412 padding-time 0
I0410 12:01:08.440165  7479 conv_layer.cpp:124] conv2 K-cycles-per-file max 5.73267 avg 5.57443 mFlops-per-file 13.1072 GF/s 6855.23
I0410 12:01:08.443370  7479 conv_layer.cpp:114] conv3 wall clock-time 0.00155401 padding-time 0
I0410 12:01:08.443401  7479 conv_layer.cpp:124] conv3 K-cycles-per-file max 2.32794 avg 2.25358 mFlops-per-file 6.5536 GF/s 8440.68
I0410 12:01:08.443912  7479 net.cpp:655]  Test time of cifar    0.363 ms ( 2.0744 % )
I0410 12:01:08.443922  7479 net.cpp:655]  Test time of label_cifar_1_split  0 ms ( 0 % )
I0410 12:01:08.443927  7479 net.cpp:655]  Test time of conv1    2.335 ms ( 13.3436 % )
I0410 12:01:08.443931  7479 net.cpp:655]  Test time of pool1    3.154 ms ( 18.0239 % )
I0410 12:01:08.443936  7479 net.cpp:655]  Test time of relu1    0.057 ms ( 0.325733 % )
I0410 12:01:08.443941  7479 net.cpp:655]  Test time of norm1    3.076 ms ( 17.5781 % )
I0410 12:01:08.443945  7479 net.cpp:655]  Test time of conv2    4.834 ms ( 27.6244 % )
I0410 12:01:08.443949  7479 net.cpp:655]  Test time of relu2    0.105 ms ( 0.600034 % )
I0410 12:01:08.443954  7479 net.cpp:655]  Test time of pool2    0.559 ms ( 3.19447 % )
I0410 12:01:08.443958  7479 net.cpp:655]  Test time of norm2    0.946 ms ( 5.40602 % )
I0410 12:01:08.443962  7479 net.cpp:655]  Test time of conv3    1.589 ms ( 9.08052 % )
I0410 12:01:08.443966  7479 net.cpp:655]  Test time of relu3    0.034 ms ( 0.194297 % )
I0410 12:01:08.443970  7479 net.cpp:655]  Test time of pool3    0.339 ms ( 1.93725 % )
I0410 12:01:08.443974  7479 net.cpp:655]  Test time of ip1  0.029 ms ( 0.165724 % )
I0410 12:01:08.443979  7479 net.cpp:655]  Test time of ip1_ip1_0_split  0.001 ms ( 0.00571461 % )
I0410 12:01:08.443982  7479 net.cpp:655]  Test time of accuracy 0.038 ms ( 0.217155 % )
I0410 12:01:08.443987  7479 net.cpp:655]  Test time of loss 0.04 ms ( 0.228584 % )
I0410 12:01:08.443991  7479 caffe.cpp:330] Total forwarding time: 17.499 ms
I0410 12:01:08.443996  7479 caffe.cpp:333] Loss: 0.534945
I0410 12:01:08.444015  7479 caffe.cpp:345] accuracy = 0.8152
I0410 12:01:08.444031  7479 caffe.cpp:345] loss = 0.534945 (* 1 = 0.534945 loss)
I0410 12:01:08.444036  7479 caffe.cpp:350] Total-images-processed: 5000
I0410 12:01:08.444041  7479 caffe.cpp:353] conv1 K-cycles-per-file 3.454 mFlops-per-file 4.9152 GF/s 4265.49
I0410 12:01:08.444048  7479 caffe.cpp:353] conv2 K-cycles-per-file 5.828 mFlops-per-file 13.1072 GF/s 6742.74
I0410 12:01:08.444054  7479 caffe.cpp:353] conv3 K-cycles-per-file 2.313 mFlops-per-file 6.5536 GF/s 8492.29
freq = 2.99826e+09
*** Aborted at 1523332868 (unix time) try "date -d @1523332868" if you are using GNU date ***
PC: @     0x7f6a1e12d428 gsignal
*** SIGABRT (@0x3ec00001d37) received by PID 7479 (TID 0x7f6a33f93e80) from PID 7479; stack trace: ***
    @     0x7f6a1e4d3390 (unknown)
    @     0x7f6a1e12d428 gsignal
    @     0x7f6a1e12f02a abort
    @     0x7f6a1e16f7ea (unknown)
    @     0x7f6a1e17c698 cfree
    @     0x7f6a28e248af google::protobuf::internal::DestroyDefaultRepeatedFields()
    @     0x7f6a28e23b3b google::protobuf::ShutdownProtobufLibrary()
    @     0x7f6a0fcd43b9 (unknown)
    @     0x7f6a33e61de7 (unknown)
    @     0x7f6a1e131ff8 (unknown)
    @     0x7f6a1e132045 exit
    @     0x7f6a1e118837 __libc_start_main
    @           0x409929 _start
    @                0x0 (unknown)

Steps to reproduce

build/tools/caffe.bin test -model examples/cifar10/cifar10_full_train_test.prototxt -weights /home/public/caffe/examples/cifar10/cifar10_full_iter_70000.caffemodel

Your system configuration

Operating system: Ubuntu 16.04 Compiler: ICPC CUDA version (if applicable):8.0 CUDNN version (if applicable):5.1.5 BLAS:MKL Python or MATLAB version (for pycaffe and matcaffe respectively):No