deeplearning4j: Deconvolution2D failure

I am trying to create a simple FCN using dl4j:

ComputationGraphConfiguration.GraphBuilder graph = new NeuralNetConfiguration.Builder().seed(seed)
                .optimizationAlgo(OptimizationAlgorithm.STOCHASTIC_GRADIENT_DESCENT)
                .updater(updater)
                .weightInit(weightInit)
                .dist(new TruncatedNormalDistribution(0.0, 0.5))
                .l2(5e-5)
                .miniBatch(true)
                .cacheMode(cacheMode)
                .trainingWorkspaceMode(workspaceMode)
                .inferenceWorkspaceMode(workspaceMode)
                .graphBuilder();
        
        graph.allowDisconnected(true);
        
	graph
		  .addLayer("conv1-1", new ConvolutionLayer.Builder(3,3).stride(1,1).nOut(10)
		      .convolutionMode(ConvolutionMode.Strict)
		      .cudnnAlgoMode(cudnnAlgoMode)
		      .activation(Activation.RELU).build(), "input")
		  
		  .addLayer("pool1", new SubsamplingLayer.Builder(PoolingType.MAX).kernelSize(2,2)
		      .build(), "conv1-1")
		.addLayer("conv2-1", new ConvolutionLayer.Builder(3,3).stride(1,1).nOut(10)
		      .convolutionMode(ConvolutionMode.Same).cudnnAlgoMode(cudnnAlgoMode)
		      .activation(Activation.RELU).build(), "pool1")
		  .addLayer("up2-1", new Upsampling2D.Builder(2).build(), "conv2-1")
		  .addLayer("conv3", new Deconvolution2D.Builder(3,3).stride(1,1).nOut(1)
			      .cudnnAlgoMode(cudnnAlgoMode)
			      .activation(Activation.RELU).build(), "up2-1")
		  .addLayer("output", new CnnLossLayer.Builder(LossFunctions.LossFunction.MCXENT).build(), "conv3")
        
                .setOutputs("output").backprop(true).pretrain(false);

        return graph;

The network gives system fatal error:

15:48:12.441 [main] DEBUG o.n.j.handler.impl.CudaZeroHandler - Creating bucketID: 5
15:48:12.482 [main] DEBUG o.n.j.handler.impl.CudaZeroHandler - Creating bucketID: 3
15:48:13.821 [main] WARN  application - application.conf @ jar:file:/C:/Users/JensenSun/.m2/repository/org/deeplearning4j/deeplearning4j-play_2.11/1.0.0-alpha/deeplearning4j-play_2.11-1.0.0-alpha.jar!/application.conf: 348: parsers.text.maxLength is deprecated, use play.http.parser.maxMemoryBuffer instead
15:48:14.830 [main] DEBUG p.a.l.concurrent.ActorSystemProvider - Starting application default Akka system: application
15:48:15.122 [main] INFO  play.api.Play - Application started (Prod)
15:48:15.533 [main] INFO  play.core.server.NettyServer - Listening for HTTP on /0:0:0:0:0:0:0:0:9000
15:48:15.536 [main] INFO  o.d.ui.play.PlayUIServer - DL4J UI Server started at http://localhost:9000
15:48:15.538 [Thread-13] DEBUG o.d.ui.play.PlayUIServer - PlayUIServer.StatsEventRouterRunnable started
15:48:15.651 [main] INFO  o.d.ui.play.PlayUIServer - StatsStorage instance attached to UI: InMemoryStatsStorage(uid=4b143f12)
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffbd88828b0, pid=18320, tid=0x0000000000003938
#
# JRE version: Java(TM) SE Runtime Environment (8.0_171-b11) (build 1.8.0_171-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.171-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  [nd4jcuda.dll+0x5028b0]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# D:\work\MyWorkspace\ec-deep-dl4j\hs_err_pid18320.log
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

hs_err_pid18320.log:

#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffbd88828b0, pid=18320, tid=0x0000000000003938
#
# JRE version: Java(TM) SE Runtime Environment (8.0_171-b11) (build 1.8.0_171-b11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.171-b11 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# C  [nd4jcuda.dll+0x5028b0]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#

---------------  T H R E A D  ---------------

Current thread (0x00000000023bd000):  JavaThread "main" [_thread_in_native, id=14648, stack(0x00000000022b0000,0x00000000023b0000)]

siginfo: ExceptionCode=0xc0000005, reading address 0x000000080c7b3478

Registers:
RAX=0x000000080c200000, RBX=0x00000000661ec880, RCX=0x000000000016cd1e, RDX=0x000000008776e7cc
RSP=0x00000000023adea0, RBP=0x00000000023ae5e9, RSI=0x0000000000000000, RDI=0x0000000000000000
R8 =0x0000000000000000, R9 =0x0000000000000001, R10=0x000000005547e670, R11=0x000000005547e170
R12=0x0000000000000000, R13=0xffffffff99e13790, R14=0x0000000000000001, R15=0x0000000021bb7060
RIP=0x00007ffbd88828b0, EFLAGS=0x0000000000010206

Top of Stack: (sp=0x00000000023adea0)
0x00000000023adea0:   0000000049d68100 0000000000000000
0x00000000023adeb0:   0000000000000000 00007ffbd83ed143
0x00000000023adec0:   000000005547e4f0 0000000100000000
0x00000000023aded0:   0000000000000000 0000000000000001
0x00000000023adee0:   000091e300000004 000000020016cd1e
0x00000000023adef0:   00000002000000d3 0000000200000002
0x00000000023adf00:   0000000000000003 0000000049d68100
0x00000000023adf10:   0000000a00000001 00000000000000b1
0x00000000023adf20:   00000000000091e3 00007ffb0016cb78
0x00000000023adf30:   000000008776e7cc 0000000000000000
0x00000000023adf40:   0000000000000004 0000000000000008
0x00000000023adf50:   000000000000000c 0000000100000000
0x00000000023adf60:   0000000000000001 0000000100000000
0x00000000023adf70:   0000000000000000 00001e206c267085
0x00000000023adf80:   000000005f4d8bb0 00007ffbd89b99cb
0x00000000023adf90:   0000000021bb7060 00000000023ae170 

Instructions: (pc=0x00007ffbd88828b0)
0x00007ffbd8882890:   24 90 00 00 00 48 8b 4c 24 68 e8 81 93 13 00 48
0x00007ffbd88828a0:   63 4c 24 48 48 8b 94 24 90 00 00 00 f3 0f 10 02
0x00007ffbd88828b0:   f3 0f 58 04 88 48 8b 84 24 90 00 00 00 f3 0f 11
0x00007ffbd88828c0:   00 e9 37 fe ff ff e9 10 fe ff ff e9 18 fd ff ff 


Register to memory mapping:

RAX=0x000000080c200000 is an unknown value
RBX=0x00000000661ec880 is an unknown value
RCX=0x000000000016cd1e is an unknown value
RDX=0x000000008776e7cc is an unknown value
RSP=0x00000000023adea0 is pointing into the stack for thread: 0x00000000023bd000
RBP=0x00000000023ae5e9 is pointing into the stack for thread: 0x00000000023bd000
RSI=0x0000000000000000 is an unknown value
RDI=0x0000000000000000 is an unknown value
R8 =0x0000000000000000 is an unknown value
R9 =0x0000000000000001 is an unknown value
R10=0x000000005547e670 is an unknown value
R11=0x000000005547e170 is an unknown value
R12=0x0000000000000000 is an unknown value
R13=0xffffffff99e13790 is an unknown value
R14=0x0000000000000001 is an unknown value
R15=0x0000000021bb7060 is an unknown value


Stack: [0x00000000022b0000,0x00000000023b0000],  sp=0x00000000023adea0,  free space=1015k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C  [nd4jcuda.dll+0x5028b0]
C  [nd4jcuda.dll+0x6399cb]
C  [nd4jcuda.dll+0x6394cd]
C  [nd4jcuda.dll+0x6d6691]
C  [jnind4jcuda.dll+0xd27d8]
C  0x00000000024c8c67

Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j  org.nd4j.nativeblas.Nd4jCuda$NativeOps.execCustomOpFloat(Lorg/bytedeco/javacpp/PointerPointer;JLorg/bytedeco/javacpp/PointerPointer;Lorg/bytedeco/javacpp/PointerPointer;ILorg/bytedeco/javacpp/PointerPointer;Lorg/bytedeco/javacpp/PointerPointer;ILorg/bytedeco/javacpp/FloatPointer;ILorg/bytedeco/javacpp/IntPointer;IZ)I+0
j  org.nd4j.linalg.jcublas.ops.executioner.CudaExecutioner.exec(Lorg/nd4j/linalg/api/ops/CustomOp;)V+2399
j  org.deeplearning4j.nn.layers.convolution.upsampling.Upsampling2D.backpropGradient(Lorg/nd4j/linalg/api/ndarray/INDArray;)Lorg/nd4j/linalg/primitives/Pair;+167
j  org.deeplearning4j.nn.graph.vertex.impl.LayerVertex.doBackward(Z)Lorg/nd4j/linalg/primitives/Pair;+206
j  org.deeplearning4j.nn.graph.ComputationGraph.calcBackpropGradients(Z[Lorg/nd4j/linalg/api/ndarray/INDArray;)V+488
j  org.deeplearning4j.nn.graph.ComputationGraph.computeGradientAndScore()V+434
j  org.deeplearning4j.optimize.solvers.BaseOptimizer.gradientAndScore()Lorg/nd4j/linalg/primitives/Pair;+12
j  org.deeplearning4j.optimize.solvers.StochasticGradientDescent.optimize()Z+1
j  org.deeplearning4j.optimize.Solver.optimize()V+8
j  org.deeplearning4j.nn.graph.ComputationGraph.fit([Lorg/nd4j/linalg/api/ndarray/INDArray;[Lorg/nd4j/linalg/api/ndarray/INDArray;[Lorg/nd4j/linalg/api/ndarray/INDArray;[Lorg/nd4j/linalg/api/ndarray/INDArray;)V+368
j  org.deeplearning4j.nn.graph.ComputationGraph.fit([Lorg/nd4j/linalg/api/ndarray/INDArray;[Lorg/nd4j/linalg/api/ndarray/INDArray;)V+5
j  org.deeplearning4j.nn.graph.ComputationGraph.fit(Lorg/nd4j/linalg/dataset/api/DataSet;)V+155
J 2468% C1 com.evercounting.deep.ec_deep_dl4j.CNNCDL.main([Ljava/lang/String;)V (1489 bytes) @ 0x0000000002ba7524 [0x0000000002b9e260+0x92c4]
v  ~StubRoutines::call_stub

---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x0000000020ff0000 JavaThread "application-akka.actor.default-dispatcher-10" [_thread_blocked, id=14292, stack(0x0000000085390000,0x0000000085490000)]
  0x0000000020ff4800 JavaThread "application-akka.actor.default-dispatcher-14" [_thread_blocked, id=13392, stack(0x0000000085290000,0x0000000085390000)]
  0x0000000020ff3800 JavaThread "application-akka.actor.default-dispatcher-13" [_thread_blocked, id=16976, stack(0x0000000085190000,0x0000000085290000)]
  0x0000000020fef000 JavaThread "application-akka.actor.default-dispatcher-11" [_thread_blocked, id=17388, stack(0x0000000085090000,0x0000000085190000)]
  0x0000000020ff0800 JavaThread "application-akka.actor.default-dispatcher-12" [_thread_blocked, id=9100, stack(0x0000000084f90000,0x0000000085090000)]
  0x0000000020ff3000 JavaThread "application-akka.actor.default-dispatcher-15" [_thread_blocked, id=14904, stack(0x0000000084e90000,0x0000000084f90000)]
  0x00000000200c5800 JavaThread "application-akka.actor.default-dispatcher-9" [_thread_blocked, id=16796, stack(0x0000000084d90000,0x0000000084e90000)]
  0x00000000200c4800 JavaThread "application-akka.actor.default-dispatcher-7" [_thread_blocked, id=17728, stack(0x0000000084c90000,0x0000000084d90000)]
  0x00000000200ca000 JavaThread "application-akka.actor.default-dispatcher-8" [_thread_blocked, id=14408, stack(0x0000000084b90000,0x0000000084c90000)]
  0x00000000200c9000 JavaThread "application-akka.actor.default-dispatcher-6" [_thread_blocked, id=16672, stack(0x0000000084a90000,0x0000000084b90000)]
  0x00000000200c8800 JavaThread "application-akka.actor.default-dispatcher-5" [_thread_blocked, id=12712, stack(0x0000000084990000,0x0000000084a90000)]
  0x00000000200c7800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=7672, stack(0x0000000084690000,0x0000000084790000)]
  0x00000000200c6000 JavaThread "Thread-13" daemon [_thread_blocked, id=18140, stack(0x00000000841f0000,0x00000000842f0000)]
  0x00000000200c7000 JavaThread "New I/O server boss #17" [_thread_in_native, id=16908, stack(0x00000000840f0000,0x00000000841f0000)]
  0x00000000200bd000 JavaThread "New I/O worker #16" [_thread_in_native, id=11352, stack(0x0000000083ff0000,0x00000000840f0000)]
  0x00000000200c4000 JavaThread "New I/O worker #15" [_thread_in_native, id=14056, stack(0x000000007fee0000,0x000000007ffe0000)]
  0x00000000200bc800 JavaThread "New I/O worker #14" [_thread_in_native, id=12344, stack(0x000000007fde0000,0x000000007fee0000)]
  0x00000000200c3000 JavaThread "New I/O worker #13" [_thread_in_native, id=6292, stack(0x000000007fce0000,0x000000007fde0000)]
  0x00000000200bb800 JavaThread "New I/O worker #12" [_thread_in_native, id=16884, stack(0x000000007fbe0000,0x000000007fce0000)]
  0x00000000200c2800 JavaThread "New I/O worker #11" [_thread_in_native, id=17348, stack(0x000000007fae0000,0x000000007fbe0000)]
  0x00000000200bf800 JavaThread "New I/O worker #10" [_thread_in_native, id=13388, stack(0x000000007f9e0000,0x000000007fae0000)]
  0x00000000200bb000 JavaThread "New I/O worker #9" [_thread_in_native, id=17932, stack(0x000000007f8e0000,0x000000007f9e0000)]
  0x00000000200be800 JavaThread "New I/O worker #8" [_thread_in_native, id=15612, stack(0x000000007f7e0000,0x000000007f8e0000)]
  0x00000000200c0000 JavaThread "New I/O worker #7" [_thread_in_native, id=2468, stack(0x000000007f6e0000,0x000000007f7e0000)]
  0x00000000200c1800 JavaThread "New I/O worker #6" [_thread_in_native, id=16388, stack(0x000000007f3e0000,0x000000007f4e0000)]
  0x00000000200be000 JavaThread "New I/O worker #5" [_thread_in_native, id=16500, stack(0x000000007f2e0000,0x000000007f3e0000)]
  0x00000000200c1000 JavaThread "New I/O worker #4" [_thread_in_native, id=17184, stack(0x000000007efc0000,0x000000007f0c0000)]
  0x0000000020554000 JavaThread "New I/O worker #3" [_thread_in_native, id=14968, stack(0x000000007eec0000,0x000000007efc0000)]
  0x0000000020553800 JavaThread "New I/O worker #2" [_thread_in_native, id=17632, stack(0x000000007edc0000,0x000000007eec0000)]
  0x0000000020551000 JavaThread "New I/O worker #1" [_thread_in_native, id=13832, stack(0x000000007ecc0000,0x000000007edc0000)]
  0x0000000020552800 JavaThread "application-akka.actor.default-dispatcher-4" [_thread_blocked, id=13732, stack(0x000000007ebc0000,0x000000007ecc0000)]
  0x0000000020557000 JavaThread "application-akka.actor.default-dispatcher-3" [_thread_blocked, id=3840, stack(0x000000007eac0000,0x000000007ebc0000)]
  0x0000000020555800 JavaThread "application-akka.actor.default-dispatcher-2" [_thread_blocked, id=12924, stack(0x000000007cfb0000,0x000000007d0b0000)]
  0x0000000020552000 JavaThread "application-scheduler-1" [_thread_blocked, id=5616, stack(0x0000000063c40000,0x0000000063d40000)]
  0x0000000020555000 JavaThread "NativeRandomDeallocator thread 0" daemon [_thread_blocked, id=17732, stack(0x0000000060d80000,0x0000000060e80000)]
  0x0000000020550800 JavaThread "UniGC thread 5" daemon [_thread_blocked, id=15080, stack(0x0000000060c80000,0x0000000060d80000)]
  0x0000000020556800 JavaThread "UniGC thread 4" daemon [_thread_blocked, id=16680, stack(0x00000000602f0000,0x00000000603f0000)]
  0x000000001f6a2000 JavaThread "UniGC thread 3" daemon [_thread_blocked, id=6192, stack(0x00000000601f0000,0x00000000602f0000)]
  0x000000001f69b800 JavaThread "UniGC thread 2" daemon [_thread_blocked, id=5476, stack(0x00000000600f0000,0x00000000601f0000)]
  0x000000001f699000 JavaThread "UniGC thread 1" daemon [_thread_blocked, id=4548, stack(0x000000005fff0000,0x00000000600f0000)]
  0x000000001f6f3800 JavaThread "UniGC thread 0" daemon [_thread_blocked, id=16792, stack(0x00000000555d0000,0x00000000556d0000)]
  0x000000001ff46800 JavaThread "ResourceGC thread 3" daemon [_thread_blocked, id=14688, stack(0x0000000032430000,0x0000000032530000)]
  0x000000001ff46000 JavaThread "ResourceGC thread 2" daemon [_thread_blocked, id=11524, stack(0x000000002cbd0000,0x000000002ccd0000)]
  0x000000002001c800 JavaThread "ResourceGC thread 1" daemon [_thread_blocked, id=9976, stack(0x000000002cad0000,0x000000002cbd0000)]
  0x000000001f100000 JavaThread "ResourceGC thread 0" daemon [_thread_blocked, id=18332, stack(0x000000002c9d0000,0x000000002cad0000)]
  0x000000001f0ff800 JavaThread "Workspace deallocator thread" daemon [_thread_blocked, id=2036, stack(0x000000002c8d0000,0x000000002c9d0000)]
  0x000000002009a000 JavaThread "JavaCPP Deallocator" daemon [_thread_blocked, id=17372, stack(0x0000000021550000,0x0000000021650000)]
  0x000000001dde5000 JavaThread "Service Thread" daemon [_thread_blocked, id=17364, stack(0x000000001e960000,0x000000001ea60000)]
  0x000000001ddbd800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=13632, stack(0x000000001e860000,0x000000001e960000)]
  0x000000001ddad000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=18196, stack(0x000000001e760000,0x000000001e860000)]
  0x000000001ddab800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=16564, stack(0x000000001e660000,0x000000001e760000)]
  0x000000001ddaa000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=10584, stack(0x000000001e560000,0x000000001e660000)]
  0x000000001dda8000 JavaThread "Attach Listener" daemon [_thread_blocked, id=17432, stack(0x000000001e460000,0x000000001e560000)]
  0x000000001dda7000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=16020, stack(0x000000001e360000,0x000000001e460000)]
  0x000000001dd90800 JavaThread "Finalizer" daemon [_thread_blocked, id=17552, stack(0x000000001e170000,0x000000001e270000)]
  0x000000001bea3800 JavaThread "Reference Handler" daemon [_thread_blocked, id=10976, stack(0x000000001dc70000,0x000000001dd70000)]
=>0x00000000023bd000 JavaThread "main" [_thread_in_native, id=14648, stack(0x00000000022b0000,0x00000000023b0000)]

Other Threads:
  0x000000001be9a800 VMThread [stack: 0x000000001db70000,0x000000001dc70000] [id=16380]
  0x000000001dde7000 WatcherThread [stack: 0x000000001ea60000,0x000000001eb60000] [id=17400]

VM state:not at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread: None

Heap:
 PSYoungGen      total 1376256K, used 53983K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 3% used [0x000000076b580000,0x000000076ea37c68,0x00000007bf080000)
  from space 5120K, 0% used [0x00000007bf580000,0x00000007bf580000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 7860K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27ad1a8,0x00000006cc980000)
 Metaspace       used 38381K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K

Card table byte_map: [0x0000000011870000,0x0000000012070000] byte_map_base: 0x000000000e260000

Marking Bits: (ParMarkBitMap*) 0x0000000061b408c0
 Begin Bits: [0x0000000012dc0000, 0x0000000016d40000)
 End Bits:   [0x0000000016d40000, 0x000000001acc0000)

Polling page: 0x0000000000ac0000

CodeCache: size=245760Kb used=8101Kb max_used=8116Kb free=237658Kb
 bounds [0x00000000024b0000, 0x0000000002cb0000, 0x00000000114b0000]
 total_blobs=3178 nmethods=2372 adapters=718
 compilation: enabled

Compilation events (10 events):
Event: 13.079 Thread 0x000000001ddbd800 2890       1       org.jboss.netty.handler.codec.http.DefaultHttpHeaders$HeaderEntry::getKey (5 bytes)
Event: 13.079 Thread 0x000000001ddbd800 nmethod 2890 0x0000000002c91ed0 code [0x0000000002c92020, 0x0000000002c92130]
Event: 13.325 Thread 0x000000001ddbd800 2893   !   3       org.nd4j.jita.handler.impl.CudaZeroHandler::alloc (752 bytes)
Event: 13.328 Thread 0x000000001ddaa000 2895       4       org.nd4j.linalg.jcublas.buffer.BaseCudaDataBuffer::getInt (13 bytes)
Event: 13.331 Thread 0x000000001ddbd800 nmethod 2893 0x0000000002c92190 code [0x0000000002c92ca0, 0x0000000002c9ac38]
Event: 13.331 Thread 0x000000001ddbd800 2894       3       org.nd4j.jita.allocator.pointers.PointersPair::setHostPointer (6 bytes)
Event: 13.331 Thread 0x000000001ddbd800 nmethod 2894 0x0000000002ca0810 code [0x0000000002ca0960, 0x0000000002ca0ad0]
Event: 13.331 Thread 0x000000001ddbd800 2892       1       org.nd4j.jita.handler.impl.CudaZeroHandler::getInitialLocation (5 bytes)
Event: 13.331 Thread 0x000000001ddbd800 nmethod 2892 0x0000000002ca0b50 code [0x0000000002ca0ca0, 0x0000000002ca0db0]
Event: 13.344 Thread 0x000000001ddaa000 nmethod 2895 0x0000000002ca4a10 code [0x0000000002ca4ca0, 0x0000000002ca5c30]

GC Heap History (10 events):
Event: 13.121 GC heap before
{Heap before GC invocations=125 (full 57):
 PSYoungGen      total 1375744K, used 384K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 4608K, 8% used [0x00000007bf600000,0x00000007bf660000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 8229K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c2809450,0x00000006cc980000)
 Metaspace       used 38372K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
Event: 13.152 GC heap after
Heap after GC invocations=125 (full 57):
 PSYoungGen      total 1375744K, used 0K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 4608K, 0% used [0x00000007bf600000,0x00000007bf600000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 7968K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27c83e0,0x00000006cc980000)
 Metaspace       used 38372K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
}
Event: 13.252 GC heap before
{Heap before GC invocations=126 (full 57):
 PSYoungGen      total 1375744K, used 54845K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 4% used [0x000000076b580000,0x000000076eb0f600,0x00000007bf080000)
  from space 4608K, 0% used [0x00000007bf600000,0x00000007bf600000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 7968K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27c83e0,0x00000006cc980000)
 Metaspace       used 38372K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
Event: 13.253 GC heap after
Heap after GC invocations=126 (full 57):
 PSYoungGen      total 1376256K, used 96K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 5120K, 1% used [0x00000007bf080000,0x00000007bf098000,0x00000007bf580000)
  to   space 5120K, 0% used [0x00000007bf580000,0x00000007bf580000,0x00000007bfa80000)
 ParOldGen       total 173568K, used 7968K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27c83e0,0x00000006cc980000)
 Metaspace       used 38372K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
}
Event: 13.253 GC heap before
{Heap before GC invocations=127 (full 58):
 PSYoungGen      total 1376256K, used 96K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 5120K, 1% used [0x00000007bf080000,0x00000007bf098000,0x00000007bf580000)
  to   space 5120K, 0% used [0x00000007bf580000,0x00000007bf580000,0x00000007bfa80000)
 ParOldGen       total 173568K, used 7968K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27c83e0,0x00000006cc980000)
 Metaspace       used 38372K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
Event: 13.275 GC heap after
Heap after GC invocations=127 (full 58):
 PSYoungGen      total 1376256K, used 0K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
  to   space 5120K, 0% used [0x00000007bf580000,0x00000007bf580000,0x00000007bfa80000)
 ParOldGen       total 173568K, used 7855K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27abe90,0x00000006cc980000)
 Metaspace       used 38372K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
}
Event: 13.377 GC heap before
{Heap before GC invocations=128 (full 58):
 PSYoungGen      total 1376256K, used 191096K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 13% used [0x000000076b580000,0x000000077701e2f8,0x00000007bf080000)
  from space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
  to   space 5120K, 0% used [0x00000007bf580000,0x00000007bf580000,0x00000007bfa80000)
 ParOldGen       total 173568K, used 7855K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27abe90,0x00000006cc980000)
 Metaspace       used 38381K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
Event: 13.378 GC heap after
Heap after GC invocations=128 (full 58):
 PSYoungGen      total 1376256K, used 224K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 5120K, 4% used [0x00000007bf580000,0x00000007bf5b8000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 7855K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27abe90,0x00000006cc980000)
 Metaspace       used 38381K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
}
Event: 13.378 GC heap before
{Heap before GC invocations=129 (full 59):
 PSYoungGen      total 1376256K, used 224K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 5120K, 4% used [0x00000007bf580000,0x00000007bf5b8000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 7855K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27abe90,0x00000006cc980000)
 Metaspace       used 38381K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
Event: 13.403 GC heap after
Heap after GC invocations=129 (full 59):
 PSYoungGen      total 1376256K, used 0K [0x000000076b580000, 0x00000007bfa80000, 0x00000007c0000000)
  eden space 1371136K, 0% used [0x000000076b580000,0x000000076b580000,0x00000007bf080000)
  from space 5120K, 0% used [0x00000007bf580000,0x00000007bf580000,0x00000007bfa80000)
  to   space 5120K, 0% used [0x00000007bf080000,0x00000007bf080000,0x00000007bf580000)
 ParOldGen       total 173568K, used 7860K [0x00000006c2000000, 0x00000006cc980000, 0x000000076b580000)
  object space 173568K, 4% used [0x00000006c2000000,0x00000006c27ad1a8,0x00000006cc980000)
 Metaspace       used 38381K, capacity 38630K, committed 39040K, reserved 1083392K
  class space    used 4814K, capacity 4901K, committed 4992K, reserved 1048576K
}

Deoptimization events (10 events):
Event: 12.262 Thread 0x0000000020ff0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000025ce19c method=java.io.DataInputStream.readFully([BII)V @ 34
Event: 12.262 Thread 0x0000000020ff0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000028f9488 method=java.io.DataInputStream.readUnsignedByte()I @ 4
Event: 12.262 Thread 0x0000000020ff0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000028f9488 method=java.io.DataInputStream.readUnsignedByte()I @ 4
Event: 12.265 Thread 0x0000000020ff0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000026c3ffc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
Event: 12.265 Thread 0x0000000020ff0000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000289dce4 method=java.io.DataInputStream.readInt()I @ 4
Event: 12.266 Thread 0x0000000020ff0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000026c3ffc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
Event: 12.266 Thread 0x0000000020ff0000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000289dce4 method=java.io.DataInputStream.readInt()I @ 4
Event: 12.266 Thread 0x0000000020ff0000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000026c3ffc method=java.lang.String.equals(Ljava/lang/Object;)Z @ 8
Event: 12.267 Thread 0x0000000020ff0000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000289dce4 method=java.io.DataInputStream.readInt()I @ 4
Event: 12.591 Thread 0x000000001f6f3800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000027fd4d4 method=java.lang.ref.ReferenceQueue.poll()Ljava/lang/ref/Reference; @ 4

Classes redefined (0 events):
No events

Internal exceptions (10 events):
Event: 9.123 Thread 0x00000000023bd000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException': 0> (0x000000076be01878) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 366]
Event: 9.165 Thread 0x00000000023bd000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException': 0> (0x000000076b6df218) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\interpreter\interpreterRuntime.cpp, line 366]
Event: 9.407 Thread 0x00000000023bd000 Implicit null exception at 0x0000000002661956 to 0x0000000002661cf9
Event: 9.741 Thread 0x00000000023bd000 Implicit null exception at 0x0000000002927f8d to 0x000000000292816d
Event: 9.747 Thread 0x00000000023bd000 Implicit null exception at 0x0000000002a161f5 to 0x0000000002a16319
Event: 11.394 Thread 0x00000000200c7000 Implicit null exception at 0x00000000026d3ecc to 0x00000000026d453d
Event: 11.530 Thread 0x00000000023bd000 Exception <a 'java/io/FileNotFoundException'> (0x000000076d2b61e8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 12.028 Thread 0x0000000020ff0800 Implicit null exception at 0x000000000297fe54 to 0x00000000029800a5
Event: 12.028 Thread 0x0000000020ff0800 Implicit null exception at 0x000000000291dc56 to 0x000000000291deb5
Event: 12.934 Thread 0x0000000020ff0800 Exception <a 'java/lang/IncompatibleClassChangeError': Found class java.lang.Object, but interface was expected> (0x000000076f1aa4a0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u171\10807\hotspot\src\share\vm\interpreter\linkResolver.cp

Events (10 events):
Event: 13.078 Executing VM operation: RevokeBias
Event: 13.078 Executing VM operation: RevokeBias done
Event: 13.078 Executing VM operation: RevokeBias
Event: 13.078 Executing VM operation: RevokeBias done
Event: 13.119 Executing VM operation: ParallelGCSystemGC
Event: 13.152 Executing VM operation: ParallelGCSystemGC done
Event: 13.252 Executing VM operation: ParallelGCSystemGC
Event: 13.275 Executing VM operation: ParallelGCSystemGC done
Event: 13.377 Executing VM operation: ParallelGCSystemGC
Event: 13.403 Executing VM operation: ParallelGCSystemGC done


Dynamic libraries:
0x00007ff771010000 - 0x00007ff771047000 	D:\Program Files\Java\jdk1.8.0_171\bin\javaw.exe
0x00007ffc3f810000 - 0x00007ffc3f9f1000 	C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffc3d1f0000 - 0x00007ffc3d2a2000 	C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffc3bc00000 - 0x00007ffc3be73000 	C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffc3cd60000 - 0x00007ffc3ce01000 	C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffc3ef10000 - 0x00007ffc3efae000 	C:\WINDOWS\System32\msvcrt.dll
0x00007ffc3f780000 - 0x00007ffc3f7db000 	C:\WINDOWS\System32\sechost.dll
0x00007ffc3cf90000 - 0x00007ffc3d0b4000 	C:\WINDOWS\System32\RPCRT4.dll
0x00007ffc3d6a0000 - 0x00007ffc3d830000 	C:\WINDOWS\System32\USER32.dll
0x00007ffc3bbe0000 - 0x00007ffc3bc00000 	C:\WINDOWS\System32\win32u.dll
0x00007ffc3d660000 - 0x00007ffc3d688000 	C:\WINDOWS\System32\GDI32.dll
0x00007ffc3cab0000 - 0x00007ffc3cc42000 	C:\WINDOWS\System32\gdi32full.dll
0x00007ffc3c590000 - 0x00007ffc3c62f000 	C:\WINDOWS\System32\msvcp_win.dll
0x00007ffc3c950000 - 0x00007ffc3ca4a000 	C:\WINDOWS\System32\ucrtbase.dll
0x00007ffc2f000000 - 0x00007ffc2f269000 	C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17134.112_none_fb3f961b30681c12\COMCTL32.dll
0x00007ffc3d2b0000 - 0x00007ffc3d5d3000 	C:\WINDOWS\System32\combase.dll
0x00007ffc3c630000 - 0x00007ffc3c6aa000 	C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffc3ce10000 - 0x00007ffc3ce3d000 	C:\WINDOWS\System32\IMM32.DLL
0x0000000061bc0000 - 0x0000000061c92000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\msvcr100.dll
0x0000000061320000 - 0x0000000061bc0000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\server\jvm.dll
0x00007ffc3d5e0000 - 0x00007ffc3d5e8000 	C:\WINDOWS\System32\PSAPI.DLL
0x00007ffc34120000 - 0x00007ffc34143000 	C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffc339a0000 - 0x00007ffc339aa000 	C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffc2bae0000 - 0x00007ffc2bae9000 	C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffc3d5f0000 - 0x00007ffc3d65c000 	C:\WINDOWS\System32\WS2_32.dll
0x00007ffc340f0000 - 0x00007ffc3411a000 	C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007ffc3cc50000 - 0x00007ffc3cc99000 	C:\WINDOWS\System32\cfgmgr32.dll
0x0000000063dd0000 - 0x0000000063ddf000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\verify.dll
0x0000000063da0000 - 0x0000000063dc9000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\java.dll
0x0000000061300000 - 0x0000000061316000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\zip.dll
0x00007ffc3d9b0000 - 0x00007ffc3edf0000 	C:\WINDOWS\System32\SHELL32.dll
0x00007ffc3cca0000 - 0x00007ffc3cd49000 	C:\WINDOWS\System32\shcore.dll
0x00007ffc3be80000 - 0x00007ffc3c58d000 	C:\WINDOWS\System32\windows.storage.dll
0x00007ffc3ce40000 - 0x00007ffc3ce91000 	C:\WINDOWS\System32\shlwapi.dll
0x00007ffc3bba0000 - 0x00007ffc3bbb1000 	C:\WINDOWS\System32\kernel.appcore.dll
0x00007ffc3bb80000 - 0x00007ffc3bb9f000 	C:\WINDOWS\System32\profapi.dll
0x00007ffc3bb30000 - 0x00007ffc3bb7c000 	C:\WINDOWS\System32\powrprof.dll
0x00007ffc3bb20000 - 0x00007ffc3bb2a000 	C:\WINDOWS\System32\FLTLIB.DLL
0x00007ffc17330000 - 0x00007ffc173cc000 	C:\Users\JensenSun\.javacpp\cache\cuda-8.0-6.0-1.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnicuda.dll
0x00007ffc01770000 - 0x00007ffc023bb000 	C:\WINDOWS\SYSTEM32\nvcuda.dll
0x00007ffc3f110000 - 0x00007ffc3f55b000 	C:\WINDOWS\System32\SETUPAPI.dll
0x00007ffc12a80000 - 0x00007ffc12adb000 	C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin\cudart64_80.dll
0x00007ffc057f0000 - 0x00007ffc0590f000 	C:\WINDOWS\SYSTEM32\nvfatbinaryLoader.dll
0x00000000612e0000 - 0x00000000612fa000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\net.dll
0x00007ffc3b3a0000 - 0x00007ffc3b406000 	C:\WINDOWS\system32\mswsock.dll
0x00000000612c0000 - 0x00000000612d1000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\nio.dll
0x00007ffc39cd0000 - 0x00007ffc39d68000 	C:\WINDOWS\system32\uxtheme.dll
0x00007ffc3b930000 - 0x00007ffc3b957000 	C:\WINDOWS\SYSTEM32\DEVOBJ.dll
0x00007ffc3ca50000 - 0x00007ffc3caa7000 	C:\WINDOWS\System32\WINTRUST.dll
0x00007ffc3bbc0000 - 0x00007ffc3bbd2000 	C:\WINDOWS\System32\MSASN1.dll
0x00007ffc3c760000 - 0x00007ffc3c942000 	C:\WINDOWS\System32\CRYPT32.dll
0x00007ffc20c00000 - 0x00007ffc21099000 	C:\WINDOWS\system32\nvapi64.dll
0x00007ffc3efb0000 - 0x00007ffc3f101000 	C:\WINDOWS\System32\ole32.dll
0x00007ffc3a8e0000 - 0x00007ffc3a99b000 	C:\WINDOWS\SYSTEM32\dxgi.dll
0x00007ffc08060000 - 0x00007ffc08121000 	C:\Users\JensenSun\.javacpp\cache\cuda-8.0-6.0-1.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnicublas.dll
0x00007ffbeb380000 - 0x00007ffbedb57000 	C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin\cublas64_80.dll
0x00007ffbd8380000 - 0x00007ffbe855f000 	C:\Users\JensenSun\.javacpp\cache\nd4j-cuda-8.0-1.0.0-alpha-windows-x86_64.jar\org\nd4j\nativeblas\windows-x86_64\nd4jcuda.dll
0x00007ffc031c0000 - 0x00007ffc03474000 	C:\Users\JensenSun\.javacpp\cache\nd4j-cuda-8.0-1.0.0-alpha-windows-x86_64.jar\org\nd4j\nativeblas\windows-x86_64\jnind4jcuda.dll
0x00007ffc03060000 - 0x00007ffc031bc000 	C:\Users\JensenSun\.javacpp\cache\cuda-8.0-6.0-1.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnicusparse.dll
0x00007ffbd5b70000 - 0x00007ffbd8374000 	C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin\cusparse64_80.dll
0x00007ffc04630000 - 0x00007ffc046d2000 	C:\Users\JensenSun\.javacpp\cache\cuda-8.0-6.0-1.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnicusolver.dll
0x00007ffbd29d0000 - 0x00007ffbd5b6b000 	C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin\cusolver64_80.dll
0x00007ffc3b550000 - 0x00007ffc3b567000 	C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffc3af80000 - 0x00007ffc3afb3000 	C:\WINDOWS\system32\rsaenh.dll
0x00007ffc3b680000 - 0x00007ffc3b6a5000 	C:\WINDOWS\SYSTEM32\bcrypt.dll
0x00007ffc3ba50000 - 0x00007ffc3ba78000 	C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffc3b570000 - 0x00007ffc3b57b000 	C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffc3b120000 - 0x00007ffc3b158000 	C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffc3cd50000 - 0x00007ffc3cd58000 	C:\WINDOWS\System32\NSI.dll
0x00007ffc37570000 - 0x00007ffc37586000 	C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007ffc36ec0000 - 0x00007ffc36eda000 	C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
0x00000000842f0000 - 0x0000000084488000 	D:\Program Files\Java\jdk1.8.0_171\jre\bin\awt.dll
0x00007ffc3d0c0000 - 0x00007ffc3d182000 	C:\WINDOWS\System32\OLEAUT32.dll
0x00007ffc395c0000 - 0x00007ffc3964b000 	C:\WINDOWS\SYSTEM32\apphelp.dll
0x00007ffc3a570000 - 0x00007ffc3a739000 	C:\WINDOWS\SYSTEM32\dbghelp.dll

VM Arguments:
jvm_args: -Dfile.encoding=UTF-8 
java_command: com.evercounting.deep.ec_deep_dl4j.CNNCDL
java_class_path (initial): D:\Program Files\Java\jdk1.8.0_171\jre\lib\resources.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\rt.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\jsse.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\jce.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\charsets.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\jfr.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\access-bridge-64.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\cldrdata.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\dnsns.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\jaccess.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\jfxrt.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\localedata.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\nashorn.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\sunec.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\sunjce_provider.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\sunmscapi.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\sunpkcs11.jar;D:\Program Files\Java\jdk1.8.0_171\jre\lib\ext\zipfs.jar;D:\work\MyWorkspace\ec-deep-dl4j\target\classes;C:\Users\JensenSun\.m2\repository\org\nd4j\nd4j-cuda-8.0-platform\1.0.0-alpha\nd4j-cuda-8.0-platform-1.0.0-alpha.jar;C:\Users\JensenSun\.m2\repository\org\bytedeco\javacpp-presets\cuda-platform\8.0-6.0-1.3\cuda-platform-8.0-6.0-1.3.jar;C:\Users\JensenSun\.m2\repository\org\bytedeco\javacpp-presets\cuda\8.0-6.0-1.3\cuda-8.0-6.0-1.3.jar;C:\Users\JensenSun\.m2\repository\org\bytedeco\javacpp-presets\cuda\8.0-6.0-1.3\cuda-8.0-6.0-1.3-linux-x86_64.jar;C:\Users\JensenSun\.m2\repository\org\bytedeco\javacpp-presets\cuda\8.0-6.0-1.3\cuda-8.0-6.0-1.3-linux-ppc64le.jar;C:\Users\JensenSun\.m2\repository\org\bytedeco\javacpp-presets\cuda\8.0-6.0-1.3\cuda-8.0-6.0-1.3-macosx-x86_64.jar;C:\Users\JensenSun\.m2\repository\org\bytedeco\javacpp-presets\cuda\8.0-6.0-1.3\cuda-8.0-6.0-1.3-windows-x86_64.jar;C:\Users\JensenSun\.m2\repository\org\nd4j\nd4j-cuda-8.0\1.0.0-alpha\nd4j-cuda-8.0-1
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=D:/Program Files/Java/jre1.9.0_171/bin/server;D:/Program Files/Java/jre1.9.0_171/bin;D:/Program Files/Java/jre1.9.0_171/lib/amd64;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\libnvvp;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;D:\Program Files\PuTTY\;D:\Program Files\Git\cmd;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Users\JensenSun\AppData\Local\Microsoft\WindowsApps;C:\Users\JensenSun\AppData\Local\GitHubDesktop\bin;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;;C:\Users\JensenSun\Desktop;
USERNAME=JensenSun
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 9, GenuineIntel



---------------  S Y S T E M  ---------------

OS: Windows 10.0 , 64 bit Build 17134 (10.0.17134.1)

CPU:total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 158 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx

Memory: 4k page, physical 16639132k(7590336k free), swap 21603348k(4079124k free)

vm_info: Java HotSpot(TM) 64-Bit Server VM (25.171-b11) for windows-amd64 JRE (1.8.0_171-b11), built on Mar 28 2018 16:06:12 by "java_re" with MS VC++ 10.0 (VS2010)

time: Mon Jun 18 15:48:17 2018
elapsed time: 13 seconds (0d 0h 0m 13s)

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Comments: 17 (11 by maintainers)

Most upvoted comments

Thanks