sbrunk / storch

GPU accelerated deep learning and numeric computing for Scala 3.
https://storch.dev
Apache License 2.0
113 stars 7 forks source link

New snapshot - CUDA error: the provided PTX was compiled with an unsupported toolchain. #62

Closed hmf closed 9 months ago

hmf commented 10 months ago

While working on #61, I rebuilt my dev container. The build failed. Upon investigations I see that the old snapshot does not exist. We now have:

12.3-8.9-1.5.10-SNAPSHOT/ Wed Oct 25 13:34:15 UTC 2023
maven-metadata.xml Wed Oct 25 14:13:45 UTC 2023 393
maven-metadata.xml.md5 Wed Oct 25 14:13:45 UTC 2023 32
maven-metadata.xml.sha1 Wed Oct 25 14:13:45 UTC 2023 40
maven-metadata.xml.sha256 Wed Oct 25 14:13:45 UTC 2023 64
maven-metadata.xml.sha512 Wed Oct 25 14:13:45 UTC 2023 128

I changed the library (Ivy dependencies). Now the build is ok, but execution fails. I suspect the problem may be due to the use of the CUDA 12.3 version. I now get the following message when running an app:

vscode ➜ /workspaces/storch (explore_1) $ ./mill examples.runMain LeNetApp2
[109/116] examples.compile 
[info] compiling 1 Scala source to /workspaces/storch/out/examples/compile.dest/classes ...
[info] done compiling
[116/116] examples.runMain 
[W interface.cpp:47] Warning: Loading nvfuser library failed with: Error in dlopen: libtorch.so: cannot open shared object file: No such file or directory (function LoadingNvfuserLibrary)
Using device: Device(CUDA,-1)
Exception in thread "main" java.lang.ExceptionInInitializerError
        at LeNetApp2.main(LeNet2.scala)
Caused by: java.lang.RuntimeException: CUDA error: the provided PTX was compiled with an unsupported toolchain.
CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect.
For debugging consider passing CUDA_LAUNCH_BLOCKING=1.
Compile with `TORCH_USE_CUDA_DSA` to enable device-side assertions.

Exception raised from c10_cuda_check_implementation at /home/runner/work/javacpp-presets/javacpp-presets/pytorch/cppbuild/linux-x86_64-gpu/pytorch/c10/cuda/CUDAException.cpp:44 (most recent call first):
frame #0: c10::Error::Error(c10::SourceLocation, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) + 0x6c (0x7fc0e40b1d8c in /home/vscode/.javacpp/cache/pytorch-2.0.1-1.5.10-20231025.021128-64-linux-x86_64-gpu.jar/org/bytedeco/pytorch/linux-x86_64-gpu/libc10.so)

Can anyone confirm this is the most probable cause? Of course the issue now is installing the CUDA libraries in the dev-container. Only 12.2 is currently supported. Is installing 12.3 the only way forward?

TIA

sbrunk commented 10 months ago

Yes the native bindings have been updated to CUDA 12.3 as of https://github.com/bytedeco/javacpp-presets/commit/7d56a2cf9badfe9798a59358397f45f3f125894d. Could you check if you have a recent Nvidia driver installed? At least 535. I ran into this issue too with a 530 driver but after updating it started working again.

You can check with nvidia-smi. Even though a 535 driver is CUDA 12.2 it should work with libraries compiled against 12.3.

See also this thread and the CUDA Compatibility docs.

There's some discussion about using upstream libtorch in https://github.com/bytedeco/javacpp-presets/pull/1426 which is compiled against CUDA 12.1 but it's unclear if this is feasible.

Welcome to CUDA depency hell πŸ™ˆ

hmf commented 10 months ago

@sbrunk Thanks for the help.

I have checked the compatibility matrix. Command nvidia-smireports:

 Driver Version: 535.104.05   CUDA Version: 12.2 

nvcc --version reports:

nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2023 NVIDIA Corporation
Built on Tue_Aug_15_22:02:13_PDT_2023
Cuda compilation tools, release 12.2, V12.2.140
Build cuda_12.2.r12.2/compiler.33191640_0

All seems to be good. I also have:

vscode ➜ /workspaces/storch (explore_1) $ locate -i libtorch.so
/home/vscode/.javacpp/cache/pytorch-2.0.1-1.5.10-20231025.021128-64-linux-x86_64-gpu.jar/org/bytedeco/pytorch/linux-x86_64-gpu/libtorch.so

Could this be an issue of simply not finding libtorch.so as opposed to getting an incorrect version? Any other diagnostics I could try out?

hmf commented 10 months ago

Strange. I made an update & upgrade. Did a reboot. Now I get (no libtorch warning):

vscode ➜ /workspaces/storch (explore_1) $ ./mill examples.runMain LeNetApp2
[116/116] examples.runMain 
Using device: Device(CUDA,-1)
Exception in thread "main" java.lang.ExceptionInInitializerError
        at LeNetApp2.main(LeNet2.scala)
Caused by: java.lang.RuntimeException: CUDA error: the provided PTX was compiled with an unsupported toolchain.
CUDA kernel errors might be asynchronously reported at some other API call, so the stacktrace below might be incorrect.
For debugging consider passing CUDA_LAUNCH_BLOCKING=1.
Compile with `TORCH_USE_CUDA_DSA` to enable device-side assertions.

Exception raised from c10_cuda_check_implementation at /home/runner/work/javacpp-presets/javacpp-presets/pytorch/cppbuild/linux-x86_64-gpu/pytorch/c10/cuda/CUDAException.cpp:44 (most recent call first):
frame #0: c10::Error::Error(c10::SourceLocation, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >) + 0x6c (0x7f9fe2a58d8c in /home/vscode/.javacpp/cache/pytorch-2.0.1-1.5.10-20231025.021128-64-linux-x86_64-gpu.jar/org/bytedeco/pytorch/linux-x86_64-gpu/libc10.so)
frame #1: c10::detail::torchCheckFail(char const*, char const*, unsigned int, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) + 0xfa (0x7f9fe2a1ef6a in /home/vscode/.javacpp/cache/pytorch-2.0.1-1.5.10-20231025.021128-64-linux-x86_64-gpu.jar/org/bytedeco/pytorch/linux-x86_64-gpu/libc10.so)
sbrunk commented 10 months ago

Hmm my assumption about the driver might have been wrong (it might be needed too, but not perhaps it's not enough).

While testing an update to PyTorch 2.1, I just compiled libtorch from source using CUDA 12.3. I tried to run some tests on the GPU then, and ran into the error you're seeing: CUDA error: the provided PTX was compiled with an unsupported toolchain.

I went back to main and the error still occurs. This is a machine with an A 6000 ADA GPU (ampere 86). On my laptop with an older GPU it's working fine though, so I suspect that the issue could be missing support for that 86 arch in our libtorch build in javacpp-presets.

export TORCH_CUDA_ARCH_LIST="5.0;6.0;7.0+PTX"

@hmf what's the GPU you're testing this on?

hmf commented 10 months ago

@sbrunk I have a NVIDIA GeForce RTX 3090 in the VM

EDIT: I assume you are saying that TORCH_CUDA_ARCH_LIST="8.6" should also be included. However, this did run before. I still have the 12.1-8.9 in the VM (not the dev container). So I ran that again. Tests on both 12.1and 12.3 execute correctly.

Now I get he same error in the VM as the dev container for both 12.1and 12.3 versions. I suspect some update might have messed this up.

sbrunk commented 10 months ago

According to https://developer.nvidia.com/cuda-gpus, the RTX 3090 has compute capability 8.6 just like the RTX A6000, supporting my assumption that we might need to update the ARCH_LIST of the libtorch build in JavaCPP.

@HGuillemet do you think this makes sense?

sbrunk commented 10 months ago

EDIT: I assume you are saying that TORCH_CUDA_ARCH_LIST="8.6" should also be included. However, this did run before. I still have the 12.1-8.9 in the VM (not the dev container). So I ran that again. Tests on both 12.1and 12.3 execute correctly.

Now I get he same error in the VM as the dev container for both 12.1and 12.3 versions. I suspect some update might have messed this up.

Hmm yeah that's a bit weird. If I recall correctly I've seen the error too and then it did work again (after upgrading the driver) until I tested again today. Perhaps check your ~/.javacpp/cache folder. In the pytorch folder there, some shared libs are symlinks to the cuda folder and I don't know if it updates them and how that mechanism interacts with snapshots.

I changed the issue title BTW because the other message is just a warning and is not causing issues here.

hmf commented 10 months ago

I figured I would try to install CUDA Toolkit 12.3 in a Dev container just to see what happens. So I get this error when I try it out:

[2023-10-28T15:44:07.599Z] 59.40 Reading state information...
59.40 Package libcudnn8 is not available, but is referred to by another package.
59.40 This may mean that the package is missing, has been obsoleted, or
59.40 is only available from another source
59.40 
59.40 E: Version '8.9.5.29-1+cuda12.3' for 'libcudnn8' was not found
[2023-10-28T15:44:07.599Z] 59.40 ERROR: Feature "NVIDIA CUDA" (ghcr.io/devcontainers/features/nvidia-cuda) failed to install! Look at the documentation at https://github.com/devcontainers/features/tree/main/src/nvidia-cuda for help troubleshooting this error.
------
[2023-10-28T15:44:07.599Z] Dockerfile.extended:80

If I looked at the cuDNN support matrix, I see that the latest version for the CUDA Toolkit Version is 12.2.

I am assuming that libTorch compilation requires and links to CUDA and CuDNN. So how were the JavaCPP binaries created? In the build script I see variables pointing to a CuDNN installation.

Maybe 12.3 is not ready for use? Maybe step back for a 12.2 snapshot first?

sbrunk commented 10 months ago

I am assuming that libTorch compilation requires and links to CUDA and CuDNN. So how were the JavaCPP binaries created? In the build script I see variables pointing to a CuDNN installation.

https://github.com/bytedeco/javacpp-presets/blob/master/.github/actions/deploy-ubuntu/action.yml

I built libtorch from source against CUDA 12.3 and with added support for compute capability 8.0 and 8.6 but I'm still running into the same issue. I didn't check CuDNN before but now I'm seeing that my version is also for 12.2, not sure if this an issue though.

I'll try to compile libtorch against CUDA 12.1 next.

For these tests, I'm using the Ubuntu CUDA/CuDNN packages whose installation is described here: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#ubuntu

hmf commented 10 months ago

https://github.com/bytedeco/javacpp-presets/blob/master/.github/actions/deploy-ubuntu/action.yml

So CuDNN version is 8.9.5.29-1.cuda12.2, which is the the one I tested with CUDA 12.2.

I built libtorch from source against CUDA 12.3 and with added support for compute capability 8.0 and 8.6

I have a hunch this might not be the issue. I think that if you don't add the capability, you simple don't take advantage of the hardware but it should still execute without problems. As I said, this seemed to work with CUDA 11.8 (and respective CuDNN).

I'll try to compile libtorch against CUDA 12.1 next.

Hope that works. But then 12.2 is also a possible candidate, right?

For these tests, I'm using the Ubuntu CUDA/CuDNN packages whose installation is described

Used the same instructions in the bare VM with the same negative results.

HGuillemet commented 10 months ago

I would also say that the "CUDA error: the provided PTX was compiled with an unsupported toolchain" is related to the CUDA driver version. But with version 535 it should not happen.

You can try running with libtorch binary downloadable from pytorch.org instead of the libraries in JavaCPP (using -Dorg.bytedeco.javacpp.pathsFirst). It will not need PTX.

It's sure that we'd better avoid all problems related to PTX (this error, long startup time when compiling PTX, features lacking, size of cuda cache...) and provide cubins for all major architectures, but we are limited to only 1 or 2 architecture when compiling Pytorch presets because of the compilation time it requires and GitHub actions limits.

That's why I'd like to include the libtorch binaries provided by pytorch.org in JavaCPP presets. But I still need to test what is doable.

sbrunk commented 10 months ago

I've done some tests. I've put the results into the 2.1.0 update PR thread https://github.com/bytedeco/javacpp-presets/pull/1426#issuecomment-1783933140

hmf commented 9 months ago

@sbrunk Can you tell me what the status of this is? Bytedeco snapshot seem to be the same version. I have a CUDA driver 12.2 on the bare metal machine. Tests with Toolkit 11.8, 12.2, 12.1 and 12.3 on the dev container don't seem to work (they use the 12.2 driver). What is the plan for Storch? Move all CUDA to 12.3 (drivers 545.XX.YY)? At this moment, can I assume that the current snapshot won't woprk with the CUDA 12.2 + 535.XXX.YY drivers?

sbrunk commented 9 months ago

Yes but it should start working again once we update to PyTorch 2.1 https://github.com/sbrunk/storch/pull/64 which brings in fixes on the JavaCPP bindings. See https://github.com/bytedeco/javacpp-presets/pull/1426#issuecomment-1786998372.

The main reason why I haven't pushed the update yet is that PyTorch 2.1 adds new data types which we need to add as well.

hmf commented 9 months ago

@sbrunk Thanks for the information.

The main reason why I haven't pushed the update yet is that PyTorch 2.1 adds new data types which we need to add as well.

Hope that does not entail too many changes on my side.

sbrunk commented 9 months ago

I don't think so. The upgrade seems to be quite smooth so far. I've started working on integrating the datatypes and hopefully we'll be able to get it ready in the next few days.

sbrunk commented 9 months ago

Hey @hmf I finally had the bandwidth to get the update to PyTorch 2.1 https://github.com/sbrunk/storch/pull/64 done. Could you give it a try with the latest snapshot to check if the CUDA issues are solved for you?

hmf commented 9 months ago

@sbrunk I was able to compile and run the LeNet example. I did this in both Mill and SBT using a clone of the latest master. Unfortunately the GPU does not seem to be detected. Here is what I get with SBT on a second run:

sbt:root> examples/runMain LeNetApp
[info] running (fork) LeNetApp 
[info] Using device: Device(CPU,-1)
[info] Epoch: 1 | Batch:    0 | Training loss: 2.2934 | Eval loss: 2.3007 | Eval accuracy: 0.1028
[info] Epoch: 1 | Batch:  200 | Training loss: 0.7505 | Eval loss: 0.7085 | Eval accuracy: 0.7803
[info] Epoch: 1 | Batch:  400 | Training loss: 0.3910 | Eval loss: 0.4682 | Eval accuracy: 0.8660
[info] Epoch: 1 | Batch:  600 | Training loss: 0.2330 | Eval loss: 0.3810 | Eval accuracy: 0.8841
[info] Epoch: 1 | Batch:  800 | Training loss: 0.5794 | Eval loss: 0.3249 | Eval accuracy: 0.9006
[info] Epoch: 1 | Batch: 1000 | Training loss: 0.3650 | Eval loss: 0.2753 | Eval accuracy: 0.9142
[info] Epoch: 1 | Batch: 1200 | Training loss: 0.3777 | Eval loss: 0.2485 | Eval accuracy: 0.9245
[info] Epoch: 1 | Batch: 1400 | Training loss: 0.3084 | Eval loss: 0.2167 | Eval accuracy: 0.9312
[info] Epoch: 1 | Batch: 1600 | Training loss: 0.2847 | Eval loss: 0.2006 | Eval accuracy: 0.9381
[info] Epoch: 1 | Batch: 1800 | Training loss: 0.1045 | Eval loss: 0.1804 | Eval accuracy: 0.9414
[info] Epoch: 2 | Batch:    0 | Training loss: 0.1411 | Eval loss: 0.1729 | Eval accuracy: 0.9434
[info] Epoch: 2 | Batch:  200 | Training loss: 0.2209 | Eval loss: 0.1674 | Eval accuracy: 0.9449
[info] Epoch: 2 | Batch:  400 | Training loss: 0.2056 | Eval loss: 0.1520 | Eval accuracy: 0.9509
[info] Epoch: 2 | Batch:  600 | Training loss: 0.2192 | Eval loss: 0.1472 | Eval accuracy: 0.9538
[info] Epoch: 2 | Batch:  800 | Training loss: 0.0281 | Eval loss: 0.1298 | Eval accuracy: 0.9568
[info] Epoch: 2 | Batch: 1000 | Training loss: 0.1213 | Eval loss: 0.1239 | Eval accuracy: 0.9595
[info] Epoch: 2 | Batch: 1200 | Training loss: 0.1853 | Eval loss: 0.1166 | Eval accuracy: 0.9628
[info] Epoch: 2 | Batch: 1400 | Training loss: 0.0517 | Eval loss: 0.1129 | Eval accuracy: 0.9659
[info] Epoch: 2 | Batch: 1600 | Training loss: 0.0980 | Eval loss: 0.1028 | Eval accuracy: 0.9671
[info] Epoch: 2 | Batch: 1800 | Training loss: 0.1265 | Eval loss: 0.0968 | Eval accuracy: 0.9693
[info] Epoch: 3 | Batch:    0 | Training loss: 0.1374 | Eval loss: 0.0927 | Eval accuracy: 0.9706
[info] Epoch: 3 | Batch:  200 | Training loss: 0.2114 | Eval loss: 0.0883 | Eval accuracy: 0.9722
[info] Epoch: 3 | Batch:  400 | Training loss: 0.0732 | Eval loss: 0.0893 | Eval accuracy: 0.9711
[info] Epoch: 3 | Batch:  600 | Training loss: 0.1169 | Eval loss: 0.0814 | Eval accuracy: 0.9743
[info] Epoch: 3 | Batch:  800 | Training loss: 0.1020 | Eval loss: 0.0783 | Eval accuracy: 0.9752
[info] Epoch: 3 | Batch: 1000 | Training loss: 0.0209 | Eval loss: 0.0789 | Eval accuracy: 0.9751
[info] Epoch: 3 | Batch: 1200 | Training loss: 0.0231 | Eval loss: 0.0762 | Eval accuracy: 0.9756
[info] Epoch: 3 | Batch: 1400 | Training loss: 0.0405 | Eval loss: 0.0747 | Eval accuracy: 0.9762
[info] Epoch: 3 | Batch: 1600 | Training loss: 0.0203 | Eval loss: 0.0704 | Eval accuracy: 0.9773
[info] Epoch: 3 | Batch: 1800 | Training loss: 0.0165 | Eval loss: 0.0651 | Eval accuracy: 0.9800
[info] Epoch: 4 | Batch:    0 | Training loss: 0.0210 | Eval loss: 0.0682 | Eval accuracy: 0.9789
[info] Epoch: 4 | Batch:  200 | Training loss: 0.1051 | Eval loss: 0.0620 | Eval accuracy: 0.9812
[info] Epoch: 4 | Batch:  400 | Training loss: 0.1084 | Eval loss: 0.0628 | Eval accuracy: 0.9801
[info] Epoch: 4 | Batch:  600 | Training loss: 0.0055 | Eval loss: 0.0624 | Eval accuracy: 0.9802
[info] Epoch: 4 | Batch:  800 | Training loss: 0.0484 | Eval loss: 0.0593 | Eval accuracy: 0.9820
[info] Epoch: 4 | Batch: 1000 | Training loss: 0.0068 | Eval loss: 0.0591 | Eval accuracy: 0.9820
[info] Epoch: 4 | Batch: 1200 | Training loss: 0.1645 | Eval loss: 0.0563 | Eval accuracy: 0.9829
[info] Epoch: 4 | Batch: 1400 | Training loss: 0.0205 | Eval loss: 0.0565 | Eval accuracy: 0.9827
[info] Epoch: 4 | Batch: 1600 | Training loss: 0.0576 | Eval loss: 0.0536 | Eval accuracy: 0.9836
[info] Epoch: 4 | Batch: 1800 | Training loss: 0.0070 | Eval loss: 0.0540 | Eval accuracy: 0.9835
[info] Epoch: 5 | Batch:    0 | Training loss: 0.0614 | Eval loss: 0.0535 | Eval accuracy: 0.9833
[info] Epoch: 5 | Batch:  200 | Training loss: 0.0102 | Eval loss: 0.0514 | Eval accuracy: 0.9846
[info] Epoch: 5 | Batch:  400 | Training loss: 0.1576 | Eval loss: 0.0535 | Eval accuracy: 0.9819
[info] Epoch: 5 | Batch:  600 | Training loss: 0.1332 | Eval loss: 0.0520 | Eval accuracy: 0.9837
[info] Epoch: 5 | Batch:  800 | Training loss: 0.0251 | Eval loss: 0.0537 | Eval accuracy: 0.9820
[info] Epoch: 5 | Batch: 1000 | Training loss: 0.2369 | Eval loss: 0.0542 | Eval accuracy: 0.9835
[info] Epoch: 5 | Batch: 1200 | Training loss: 0.3197 | Eval loss: 0.0494 | Eval accuracy: 0.9856
[info] Epoch: 5 | Batch: 1400 | Training loss: 0.0147 | Eval loss: 0.0529 | Eval accuracy: 0.9831
[info] Epoch: 5 | Batch: 1600 | Training loss: 0.0183 | Eval loss: 0.0539 | Eval accuracy: 0.9832
[info] Epoch: 5 | Batch: 1800 | Training loss: 0.1724 | Eval loss: 0.0500 | Eval accuracy: 0.9844
[success] Total time: 41 s, completed Nov 27, 2023, 8:59:31 AM

Here is what nvidia-smi reports:

Mon Nov 27 09:05:07 2023       
+---------------------------------------------------------------------------------------+
| NVIDIA-SMI 535.104.05             Driver Version: 535.104.05   CUDA Version: 12.2     |
|-----------------------------------------+----------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |         Memory-Usage | GPU-Util  Compute M. |
|                                         |                      |               MIG M. |
|=========================================+======================+======================|
|   0  NVIDIA GeForce RTX 3090        On  | 00000000:00:06.0 Off |                  N/A |
| 30%   32C    P8              25W / 350W |      3MiB / 24576MiB |      0%      Default |
|                                         |                      |                  N/A |
+-----------------------------------------+----------------------+----------------------+

+---------------------------------------------------------------------------------------+
| Processes:                                                                            |
|  GPU   GI   CI        PID   Type   Process name                            GPU Memory |
|        ID   ID                                                             Usage      |
|=======================================================================================|
|  No running processes found                                                           |

The above was tested on a clean dev container. Are the versions of CUDA and the NVIDIA driver ok?

EDIT: Same tests and results on my laptop on bare metal (has about the same setup).

sbrunk commented 9 months ago

@hmf just to be sure when trying to run with sbt did you enable GPU in the sbt build? I.e.

set ThisBuild / enableGPU := true

It defaults to false currently. If I set it to true, the build switches to GPU-enabled LibTorch and adds cuda-redist as dependency. With that, the LeNet example works on the machines I've tried so far.

The example checks torch.cuda.isAvailable and falls back to CPU otherwise.

It doesn't hurt to also delete your .javacpp/cache directory and start fresh.

hmf commented 9 months ago

@sbrunk You are correct that I did not set the GPU in sbt. I then set the GPU and that failed. So as per your suggestion, I removed the .javacpp/cache and tried again. Unfortunately I still get a Using device: Device(CUDA,-1). Maybe I have some problem when downloading the JavaCPP libs or OS CUDA installation.

Could you confirm that the javaCPP libraries are correct? I have the following results:

EDIT: think there is something wrong with my OS. Will have to dig into it.

sbt:root> set ThisBuild / enableGPU := true
[info] Defining ThisBuild / enableGPU
[info] The new value will be used by core / javaCppPresetLibs
[info] Reapplying settings...
[info] set scmInfo to https://github.com/hmf/storch
[info] set current project to root (in build file:/workspaces/storch/)
sbt:root> examples/runMain LeNetApp
[info] Updating 
https://repo1.maven.org/maven2/org/typelevel/shapeless3-typeable_3/3.3.0/shapeless3-typeable_3-3.3.0.pom
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/lihaoyi/os-lib_3/0.9.1/os-lib_3-0.9.1.pom
  100.0% [##########] 1.6 KiB (52.5 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.3.1/scala3-library_3-3.3.1.pom
  100.0% [##########] 3.7 KiB (121.8 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/shapeless3-typeable_3/3.3.0/shapeless3-typeable_3-3.3.0.pom
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_3/0.3.0/sourcecode_3-0.3.0.pom
  100.0% [##########] 1.4 KiB (27.7 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/shapeless3-typeable_3/3.3.0/shapeless3-typeable_3-3.3.0.pom
  100.0% [##########] 2.6 KiB (50.3 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire_3/0.18.0/spire_3-0.18.0.pom
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/org/typelevel/spire_3/0.18.0/spire_3-0.18.0.pom
  100.0% [##########] 2.5 KiB (19.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/cuda/12.3-8.9-1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 3.0 KiB (7.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 3.4 KiB (7.9 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 2.6 KiB (6.0 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.23-1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 3.4 KiB (8.2 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 2.3 KiB (5.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/cuda/12.3-8.9-1.5.10-SNAPSHOT/cuda-12.3-8.9-1.5.10-20231115.112…
  100.0% [##########] 4.2 KiB (28.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
  100.0% [##########] 5.5 KiB (37.2 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.23-1.5.10-SNAPSHOT/openblas-0.3.23-1.5.10-20230608…
  100.0% [##########] 3.6 KiB (24.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
  100.0% [##########] 6.7 KiB (42.3 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.pom
  100.0% [##########] 23.5 KiB (82.0 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp-presets/1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 610B (4.3 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp-presets/1.5.10-SNAPSHOT/javacpp-presets-1.5.10-20231127…
  100.0% [##########] 89.5 KiB (217.7 KiB / s)
https://repo1.maven.org/maven2/com/lihaoyi/geny_3/1.0.0/geny_3-1.0.0.pom
  100.0% [##########] 1.5 KiB (91.5 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire-macros_3/0.18.0/spire-macros_3-0.18.0.pom
  100.0% [##########] 2.6 KiB (146.6 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.pom
  100.0% [##########] 1.6 KiB (67.8 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire-platform_3/0.18.0/spire-platform_3-0.18.0.pom
  100.0% [##########] 2.4 KiB (67.9 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire-util_3/0.18.0/spire-util_3-0.18.0.pom
  100.0% [##########] 2.2 KiB (60.8 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/algebra_3/2.8.0/algebra_3-2.8.0.pom
  100.0% [##########] 5.8 KiB (29.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/maven-metadata.xml
  100.0% [##########] 3.4 KiB (8.0 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
  100.0% [##########] 3.6 KiB (23.5 KiB / s)
[info] Resolved  dependencies
[info] Updating 
https://repo1.maven.org/maven2/org/scalameta/munit-scalacheck_3/0.7.29/munit-scalacheck_3-0.7.29.pom
  100.0% [##########] 1.9 KiB (107.0 KiB / s)
https://repo1.maven.org/maven2/org/scalacheck/scalacheck_3/1.15.4/scalacheck_3-1.15.4.pom
  100.0% [##########] 1.9 KiB (142.8 KiB / s)
https://repo1.maven.org/maven2/org/scalameta/munit_3/0.7.29/munit_3-0.7.29.pom
  100.0% [##########] 2.1 KiB (36.2 KiB / s)
https://repo1.maven.org/maven2/junit/junit/4.13.1/junit-4.13.1.pom
  100.0% [##########] 24.5 KiB (741.7 KiB / s)
https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29.pom
  100.0% [##########] 1.8 KiB (53.6 KiB / s)
https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.pom
  100.0% [##########] 26.4 KiB (1.5 MiB / s)
https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom
  100.0% [##########] 766B (44.0 KiB / s)
[info] Resolved  dependencies
[info] Updating 
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.pom
  100.0% [##########] 5.0 KiB (262.7 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.5.0-scala-1/scala-asm-9.5.0-scala-1.pom
  100.0% [##########] 1.5 KiB (80.7 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.3.1/scala3-interfaces-3.3.1.pom
  100.0% [##########] 3.5 KiB (192.3 KiB / s)
https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.5/compiler-interface-1.3.5.pom
  100.0% [##########] 2.8 KiB (156.0 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.3.1/tasty-core_3-3.3.1.pom
  100.0% [##########] 3.6 KiB (98.5 KiB / s)
https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.pom
  100.0% [##########] 5.2 KiB (235.7 KiB / s)
https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1.pom
  100.0% [##########] 1.5 KiB (70.1 KiB / s)
https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.pom
  100.0% [##########] 2.7 KiB (117.8 KiB / s)
https://repo1.maven.org/maven2/com/google/protobuf/protobuf-parent/3.7.0/protobuf-parent-3.7.0.pom
  100.0% [##########] 7.1 KiB (261.8 KiB / s)
[info] Resolved  dependencies
[info] Updating 
https://repo1.maven.org/maven2/org/scala-lang/scaladoc_3/3.3.1/scaladoc_3-3.3.1.pom
  100.0% [##########] 6.5 KiB (323.5 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.1/jackson-dataformat-yaml-2.15.1.pom
  100.0% [##########] 2.6 KiB (197.6 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.62.2/flexmark-ext-autolink-0.62.2.pom
  100.0% [##########] 1.8 KiB (137.2 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.62.2/flexmark-ext-autolink-0.62.2.pom
  100.0% [##########] 1.8 KiB (54.1 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.62.2/flexmark-ext-tables-0.62.2.pom
  100.0% [##########] 1.5 KiB (46.6 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.62.2/flexmark-ext-wikilink-0.62.2.pom
  100.0% [##########] 1.5 KiB (45.5 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.62.2/flexmark-ext-yaml-front-matter-0.62.2.pom
  100.0% [##########] 1.3 KiB (54.9 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-ast/0.62.2/flexmark-util-ast-0.62.2.pom
  100.0% [##########] 1.9 KiB (57.3 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-data/0.62.2/flexmark-util-data-0.62.2.pom
  100.0% [##########] 1.2 KiB (33.9 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-html/0.62.2/flexmark-util-html-0.62.2.pom
  100.0% [##########] 1.3 KiB (66.0 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark/0.62.2/flexmark-0.62.2.pom
  100.0% [##########] 4.0 KiB (200.6 KiB / s)
https://repo1.maven.org/maven2/nl/big-o/liqp/0.8.2/liqp-0.8.2.pom
  100.0% [##########] 7.8 KiB (408.5 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-tasty-inspector_3/3.3.1/scala3-tasty-inspector_3-3.3.1.pom
  100.0% [##########] 3.6 KiB (222.5 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.62.2/flexmark-ext-anchorlink-0.62.2.pom
  100.0% [##########] 1.6 KiB (55.1 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.62.2/flexmark-ext-emoji-0.62.2.pom
  100.0% [##########] 1.5 KiB (58.3 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.62.2/flexmark-ext-gfm-strikethrough-0.62.2.pom
  100.0% [##########] 1.3 KiB (61.3 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.62.2/flexmark-ext-gfm-tasklist-0.62.2.pom
  100.0% [##########] 1.4 KiB (53.2 KiB / s)
https://repo1.maven.org/maven2/org/jsoup/jsoup/1.14.3/jsoup-1.14.3.pom
  100.0% [##########] 11.4 KiB (439.7 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.1/jackson-dataformats-text-2.15.1.pom
  100.0% [##########] 3.4 KiB (117.1 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-java/0.62.2/flexmark-java-0.62.2.pom
  100.0% [##########] 23.4 KiB (807.5 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-base/2.15.1/jackson-base-2.15.1.pom
  100.0% [##########] 11.0 KiB (355.2 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom/2.15.1/jackson-bom-2.15.1.pom
  100.0% [##########] 17.6 KiB (1.3 MiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.1/jackson-datatype-jsr310-2.12.1.pom
  100.0% [##########] 4.8 KiB (239.6 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.62.2/flexmark-jira-converter-0.62.2.pom
  100.0% [##########] 2.1 KiB (102.8 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-builder/0.62.2/flexmark-util-builder-0.62.2.pom
  100.0% [##########] 1.3 KiB (130.9 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-dependency/0.62.2/flexmark-util-dependency-0.62.2.pom
  100.0% [##########] 1.5 KiB (122.6 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-visitor/0.62.2/flexmark-util-visitor-0.62.2.pom
  100.0% [##########] 988B (48.2 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util/0.62.2/flexmark-util-0.62.2.pom
  100.0% [##########] 3.9 KiB (192.8 KiB / s)
https://repo1.maven.org/maven2/org/yaml/snakeyaml/2.0/snakeyaml-2.0.pom
  100.0% [##########] 20.3 KiB (1016.7 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-format/0.62.2/flexmark-util-format-0.62.2.pom
  100.0% [##########] 2.1 KiB (238.7 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.12.1/jackson-annotations-2.12.1.pom
  100.0% [##########] 5.9 KiB (235.9 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-format/0.62.2/flexmark-util-format-0.62.2.pom
  100.0% [##########] 2.1 KiB (63.2 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-sequence/0.62.2/flexmark-util-sequence-0.62.2.pom
  100.0% [##########] 1.4 KiB (40.5 KiB / s)
https://repo1.maven.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.pom
  100.0% [##########] 9.0 KiB (271.3 KiB / s)
https://repo1.maven.org/maven2/ua/co/k/strftime4j/1.0.5/strftime4j-1.0.5.pom
  100.0% [##########] 8.9 KiB (287.4 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-collection/0.62.2/flexmark-util-collection-0.62.2.pom
  100.0% [##########] 1.1 KiB (48.7 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.1/jackson-core-2.15.1.pom
  100.0% [##########] 9.2 KiB (243.0 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.1/jackson-databind-2.15.1.pom
  100.0% [##########] 18.9 KiB (571.5 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-collection/0.62.2/flexmark-util-collection-0.62.2.pom
  100.0% [##########] 1.1 KiB (29.5 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-misc/0.62.2/flexmark-util-misc-0.62.2.pom
  100.0% [##########] 979B (15.9 KiB / s)
https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.pom
  100.0% [##########] 3.5 KiB (88.3 KiB / s)
https://repo1.maven.org/maven2/org/jetbrains/annotations/15.0/annotations-15.0.pom
  100.0% [##########] 5.4 KiB (148.9 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-parent/2.12/jackson-parent-2.12.pom
  100.0% [##########] 7.3 KiB (319.2 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.12.1/jackson-modules-java8-2.12.1.pom
  100.0% [##########] 3.3 KiB (143.7 KiB / s)
https://repo1.maven.org/maven2/org/antlr/antlr4-master/4.7.2/antlr4-master-4.7.2.pom
  100.0% [##########] 4.3 KiB (179.2 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-base/2.12.1/jackson-base-2.12.1.pom
  100.0% [##########] 9.1 KiB (378.0 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/oss-parent/41/oss-parent-41.pom
  100.0% [##########] 22.8 KiB (951.3 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/jackson-bom/2.12.1/jackson-bom-2.12.1.pom
  100.0% [##########] 14.2 KiB (526.7 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.62.2/flexmark-ext-ins-0.62.2.pom
  100.0% [##########] 1.3 KiB (58.0 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.62.2/flexmark-ext-superscript-0.62.2.pom
  100.0% [##########] 1.3 KiB (59.0 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-options/0.62.2/flexmark-util-options-0.62.2.pom
  100.0% [##########] 1.3 KiB (57.4 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.1/jackson-annotations-2.15.1.pom
  100.0% [##########] 6.9 KiB (164.1 KiB / s)
[info] Resolved  dependencies
[info] Fetching artifacts of 
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.62.2/flexmark-ext-gfm-strikethrough-0.62.2.jar
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-strikethrough/0.62.2/flexmark-ext-gfm-strikethrough-0.62.2.jar
  100.0% [##########] 22.7 KiB (755.0 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/tasty-core_3/3.3.1/tasty-core_3-3.3.1.jar
  100.0% [##########] 72.3 KiB (3.9 MiB / s)
https://repo1.maven.org/maven2/org/scalameta/munit_3/0.7.29/munit_3-0.7.29.jar
  100.0% [##########] 253.5 KiB (8.5 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire-platform_3/0.18.0/spire-platform_3-0.18.0.jar
  100.0% [##########] 2.2 KiB (77.1 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/algebra_3/2.8.0/algebra_3-2.8.0.jar
   19.0% [#         ] 159.4 KiB (5.4 MiB / s)
https://repo1.maven.org/maven2/org/antlr/antlr4-runtime/4.7.2/antlr4-runtime-4.7.2.jar
  100.0% [##########] 330.0 KiB (15.3 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/algebra_3/2.8.0/algebra_3-2.8.0.jar
  100.0% [##########] 839.7 KiB (16.4 MiB / s)
https://repo1.maven.org/maven2/ua/co/k/strftime4j/1.0.5/strftime4j-1.0.5.jar
  100.0% [##########] 30.7 KiB (1.3 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.3.1/scala3-library_3-3.3.1.jar
   76.1% [#######   ] 939.0 KiB (18.3 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-gfm-tasklist/0.62.2/flexmark-ext-gfm-tasklist-0.62.2.jar
  100.0% [##########] 22.2 KiB (2.0 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-superscript/0.62.2/flexmark-ext-superscript-0.62.2.jar
  100.0% [##########] 11.8 KiB (534.5 KiB / s)
https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.3.1/jna-5.3.1.jar
  100.0% [##########] 1.4 MiB (46.3 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/modules/scala-asm/9.5.0-scala-1/scala-asm-9.5.0-scala-1.jar
  100.0% [##########] 312.8 KiB (19.1 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-library_3/3.3.1/scala3-library_3-3.3.1.jar
  100.0% [##########] 1.2 MiB (17.5 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-sequence/0.62.2/flexmark-util-sequence-0.62.2.jar
  100.0% [##########] 217.6 KiB (23.6 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-emoji/0.62.2/flexmark-ext-emoji-0.62.2.jar
  100.0% [##########] 70.3 KiB (5.7 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-options/0.62.2/flexmark-util-options-0.62.2.jar
  100.0% [##########] 11.6 KiB (611.5 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-sequence/0.62.2/flexmark-util-sequence-0.62.2.jar
  100.0% [##########] 217.6 KiB (7.6 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire-macros_3/0.18.0/spire-macros_3-0.18.0.jar
  100.0% [##########] 25.3 KiB (1.2 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar
   97.5% [######### ] 5.5 MiB (62.1 MiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.1/jackson-core-2.15.1.jar
  100.0% [##########] 533.3 KiB (18.6 MiB / s)
https://repo1.maven.org/maven2/com/lihaoyi/geny_3/1.0.0/geny_3-1.0.0.jar
  100.0% [##########] 93.0 KiB (4.1 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-collection/0.62.2/flexmark-util-collection-0.62.2.jar
  100.0% [##########] 65.1 KiB (3.2 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala-library/2.13.10/scala-library-2.13.10.jar
  100.0% [##########] 5.7 MiB (51.6 MiB / s)
https://repo1.maven.org/maven2/com/lihaoyi/os-lib_3/0.9.1/os-lib_3-0.9.1.jar
   28.9% [##        ] 128.0 KiB (10.4 MiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.12.1/jackson-datatype-jsr310-2.12.1.jar
  100.0% [##########] 117.5 KiB (4.2 MiB / s)
https://repo1.maven.org/maven2/com/lihaoyi/os-lib_3/0.9.1/os-lib_3-0.9.1.jar
  100.0% [##########] 442.6 KiB (13.9 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-yaml-front-matter/0.62.2/flexmark-ext-yaml-front-matter-0.62.2.jar
  100.0% [##########] 16.3 KiB (628.4 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-jira-converter/0.62.2/flexmark-jira-converter-0.62.2.jar
  100.0% [##########] 11.7 KiB (900.6 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire-util_3/0.18.0/spire-util_3-0.18.0.jar
  100.0% [##########] 18.7 KiB (158.9 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-misc/0.62.2/flexmark-util-misc-0.62.2.jar
   55.3% [#####     ] 32.0 KiB (1.8 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-misc/0.62.2/flexmark-util-misc-0.62.2.jar
  100.0% [##########] 57.8 KiB (1.6 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util/0.62.2/flexmark-util-0.62.2.jar
  100.0% [##########] 1.9 KiB (88.8 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/shapeless3-typeable_3/3.3.0/shapeless3-typeable_3-3.3.0.jar
  100.0% [##########] 80.6 KiB (775.4 KiB / s)
https://repo1.maven.org/maven2/org/scalacheck/scalacheck_3/1.15.4/scalacheck_3-1.15.4.jar
    7.5% [          ] 64.0 KiB (3.3 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-ast/0.62.2/flexmark-util-ast-0.62.2.jar
  100.0% [##########] 63.9 KiB (2.1 MiB / s)
https://repo1.maven.org/maven2/org/jetbrains/annotations/15.0/annotations-15.0.jar
  100.0% [##########] 18.2 KiB (1.0 MiB / s)
https://repo1.maven.org/maven2/org/scalacheck/scalacheck_3/1.15.4/scalacheck_3-1.15.4.jar
  100.0% [##########] 855.0 KiB (21.4 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/cats-kernel_3/2.8.0/cats-kernel_3-2.8.0.jar
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-format/0.62.2/flexmark-util-format-0.62.2.jar
  100.0% [##########] 106.5 KiB (6.5 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-tasty-inspector_3/3.3.1/scala3-tasty-inspector_3-3.3.1.jar
  100.0% [##########] 17.8 KiB (385.9 KiB / s)
https://repo1.maven.org/maven2/org/typelevel/cats-kernel_3/2.8.0/cats-kernel_3-2.8.0.jar
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/org/yaml/snakeyaml/2.0/snakeyaml-2.0.jar
  100.0% [##########] 327.0 KiB (15.2 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/cats-kernel_3/2.8.0/cats-kernel_3-2.8.0.jar
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-wikilink/0.62.2/flexmark-ext-wikilink-0.62.2.jar
  100.0% [##########] 29.2 KiB (1.1 MiB / s)
https://repo1.maven.org/maven2/org/nibor/autolink/autolink/0.6.0/autolink-0.6.0.jar
  100.0% [##########] 15.7 KiB (1.1 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/cats-kernel_3/2.8.0/cats-kernel_3-2.8.0.jar
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.1/jackson-dataformat-yaml-2.15.1.jar
  100.0% [##########] 53.4 KiB (3.7 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-data/0.62.2/flexmark-util-data-0.62.2.jar
  100.0% [##########] 24.4 KiB (1.0 MiB / s)
https://repo1.maven.org/maven2/org/scalameta/munit-scalacheck_3/0.7.29/munit-scalacheck_3-0.7.29.jar
  100.0% [##########] 11.5 KiB (103.1 KiB / s)
https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29.jar
   68.9% [######    ] 32.0 KiB (2.8 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-tables/0.62.2/flexmark-ext-tables-0.62.2.jar
  100.0% [##########] 46.0 KiB (2.0 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-dependency/0.62.2/flexmark-util-dependency-0.62.2.jar
  100.0% [##########] 16.0 KiB (843.9 KiB / s)
https://repo1.maven.org/maven2/org/scalameta/junit-interface/0.7.29/junit-interface-0.7.29.jar
  100.0% [##########] 46.4 KiB (1.5 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/cats-kernel_3/2.8.0/cats-kernel_3-2.8.0.jar
  100.0% [##########] 2.5 MiB (11.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-ins/0.62.2/flexmark-ext-ins-0.62.2.jar
  100.0% [##########] 11.3 KiB (451.9 KiB / s)
https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar
  100.0% [##########] 44.0 KiB (1.5 MiB / s)
https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar
   60.6% [######    ] 843.0 KiB (45.7 MiB / s)
https://repo1.maven.org/maven2/com/google/protobuf/protobuf-java/3.7.0/protobuf-java-3.7.0.jar
  100.0% [##########] 1.4 MiB (35.8 MiB / s)
https://repo1.maven.org/maven2/nl/big-o/liqp/0.8.2/liqp-0.8.2.jar
  100.0% [##########] 291.4 KiB (7.9 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-html/0.62.2/flexmark-util-html-0.62.2.jar
  100.0% [##########] 53.3 KiB (3.7 MiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.1/jackson-annotations-2.15.1.jar
  100.0% [##########] 73.8 KiB (6.6 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-html/0.62.2/flexmark-util-html-0.62.2.jar
  100.0% [##########] 53.3 KiB (1.5 MiB / s)
https://repo1.maven.org/maven2/org/scala-sbt/compiler-interface/1.3.5/compiler-interface-1.3.5.jar
  100.0% [##########] 90.3 KiB (4.4 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.jar
    2.3% [          ] 444.7 KiB (22.9 MiB / s)
https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar
  100.0% [##########] 375.6 KiB (15.9 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.jar
   17.4% [#         ] 3.2 MiB (82.7 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scaladoc_3/3.3.1/scaladoc_3-3.3.1.jar
   73.5% [#######   ] 3.4 MiB (102.3 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scaladoc_3/3.3.1/scaladoc_3-3.3.1.jar
  100.0% [##########] 4.6 MiB (86.7 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.jar
   43.3% [####      ] 8.0 MiB (101.6 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-anchorlink/0.62.2/flexmark-ext-anchorlink-0.62.2.jar
  100.0% [##########] 11.8 KiB (905.4 KiB / s)
https://repo1.maven.org/maven2/org/jsoup/jsoup/1.14.3/jsoup-1.14.3.jar
  100.0% [##########] 413.5 KiB (12.2 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.jar
   63.1% [######    ] 11.7 MiB (118.1 MiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-builder/0.62.2/flexmark-util-builder-0.62.2.jar
  100.0% [##########] 5.1 KiB (302.8 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-interfaces/3.3.1/scala3-interfaces-3.3.1.jar
  100.0% [##########] 3.9 KiB (161.4 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.jar
   83.0% [########  ] 15.4 MiB (129.3 MiB / s)
https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.3.1/scala3-compiler_3-3.3.1.jar
  100.0% [##########] 18.5 MiB (133.2 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
   18.9% [#         ] 32.0 KiB (89.9 KiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.1/jackson-databind-2.15.1.jar
   20.2% [##        ] 320.0 KiB (13.6 MiB / s)
https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.1/jackson-databind-2.15.1.jar
  100.0% [##########] 1.5 MiB (35.9 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire_3/0.18.0/spire_3-0.18.0.jar
   42.4% [####      ] 2.1 MiB (9.2 MiB / s)
https://repo1.maven.org/maven2/org/typelevel/spire_3/0.18.0/spire_3-0.18.0.jar
  100.0% [##########] 5.1 MiB (20.0 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
   47.2% [####      ] 80.0 KiB (192.3 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-util-visitor/0.62.2/flexmark-util-visitor-0.62.2.jar
  100.0% [##########] 6.6 KiB (366.5 KiB / s)
https://repo1.maven.org/maven2/org/scala-sbt/util-interface/1.3.0/util-interface-1.3.0.jar
  100.0% [##########] 2.5 KiB (57.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
   47.2% [####      ] 80.0 KiB (175.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
  100.0% [##########] 169.5 KiB (304.8 KiB / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark-ext-autolink/0.62.2/flexmark-ext-autolink-0.62.2.jar
  100.0% [##########] 9.5 KiB (633.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
    0.0% [          ] 0B (0B / s)
https://repo1.maven.org/maven2/com/vladsch/flexmark/flexmark/0.62.2/flexmark-0.62.2.jar
  100.0% [##########] 433.8 KiB (16.9 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
    6.6% [          ] 32.0 KiB (58.7 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
    6.6% [          ] 32.0 KiB (48.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148-linu…
  100.0% [##########] 25.9 KiB (176.2 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   16.5% [#         ] 80.0 KiB (116.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   19.8% [#         ] 96.0 KiB (132.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   19.8% [#         ] 96.0 KiB (119.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   39.6% [###       ] 192.0 KiB (232.7 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   39.6% [###       ] 192.0 KiB (223.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   42.9% [####      ] 208.0 KiB (240.5 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   42.9% [####      ] 208.0 KiB (229.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   79.2% [#######   ] 384.0 KiB (406.3 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   82.5% [########  ] 400.0 KiB (414.5 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   89.1% [########  ] 432.0 KiB (438.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   89.1% [########  ] 432.0 KiB (413.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
   89.1% [########  ] 432.0 KiB (405.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/javacpp/1.5.10-SNAPSHOT/javacpp-1.5.10-20231115.080306-148.jar
  100.0% [##########] 485.1 KiB (447.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/cuda/12.3-8.9-1.5.10-SNAPSHOT/cuda-12.3-8.9-1.5.10-20231115.112…
   62.3% [######    ] 544.7 KiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/cuda/12.3-8.9-1.5.10-SNAPSHOT/cuda-12.3-8.9-1.5.10-20231115.112…
  100.0% [##########] 874.3 KiB (2.0 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   34.3% [###       ] 191.9 KiB (236.9 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   34.3% [###       ] 191.9 KiB (220.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   34.3% [###       ] 191.9 KiB (215.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   34.3% [###       ] 191.9 KiB (210.9 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   34.3% [###       ] 191.9 KiB (206.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   74.2% [#######   ] 415.9 KiB (437.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   74.2% [#######   ] 415.9 KiB (428.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   74.2% [#######   ] 415.9 KiB (411.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   74.2% [#######   ] 415.9 KiB (403.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   74.2% [#######   ] 415.9 KiB (396.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
  100.0% [##########] 560.2 KiB (523.6 KiB / s)
https://repo1.maven.org/maven2/com/lihaoyi/sourcecode_3/0.3.0/sourcecode_3-0.3.0.jar
  100.0% [##########] 107.3 KiB (5.5 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   22.4% [##        ] 419.0 KiB (407.5 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   22.4% [##        ] 419.0 KiB (399.8 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   22.4% [##        ] 419.0 KiB (392.3 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   45.5% [####      ] 851.0 KiB (782.1 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   45.5% [####      ] 851.0 KiB (768.0 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   45.5% [####      ] 851.0 KiB (754.4 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   45.5% [####      ] 851.0 KiB (741.3 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   45.5% [####      ] 851.0 KiB (728.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   45.5% [####      ] 851.0 KiB (716.3 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   53.2% [#####     ] 995.0 KiB (823.6 KiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   89.1% [########  ] 1.6 MiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   89.1% [########  ] 1.6 MiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   93.4% [######### ] 1.7 MiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   93.4% [######### ] 1.7 MiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   93.4% [######### ] 1.7 MiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
   93.4% [######### ] 1.7 MiB (1.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
  100.0% [##########] 1.8 MiB (1.4 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   45.6% [####      ] 10.1 MiB (5.6 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   49.4% [####      ] 10.9 MiB (6.0 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   53.9% [#####     ] 11.9 MiB (6.4 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   53.9% [#####     ] 11.9 MiB (6.4 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   57.0% [#####     ] 12.6 MiB (6.7 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   57.0% [#####     ] 12.6 MiB (6.6 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   57.0% [#####     ] 12.6 MiB (6.5 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   62.3% [######    ] 13.8 MiB (7.1 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   66.4% [######    ] 14.7 MiB (7.5 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   66.4% [######    ] 14.7 MiB (7.4 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   66.4% [######    ] 14.7 MiB (7.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   70.1% [#######   ] 15.5 MiB (7.6 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   70.1% [#######   ] 15.5 MiB (7.6 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
   72.9% [#######   ] 16.2 MiB (7.8 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/openblas/0.3.24-1.5.10-SNAPSHOT/openblas-0.3.24-1.5.10-20230923…
  100.0% [##########] 14.4 MiB (7.7 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/mkl/2023.1-1.5.10-SNAPSHOT/mkl-2023.1-1.5.10-20230718.130152-23…
  100.0% [##########] 22.2 MiB (9.3 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/pytorch/2.1.0-1.5.10-SNAPSHOT/pytorch-2.1.0-1.5.10-20231111.041…
  100.0% [##########] 591.1 MiB (21.5 MiB / s)
https://oss.sonatype.org/content/repositories/snapshots/org/bytedeco/cuda/12.3-8.9-1.5.10-SNAPSHOT/cuda-12.3-8.9-1.5.10-20231115.112…
  100.0% [##########] 1.9 GiB (21.9 MiB / s)
[info] Fetched artifacts of 
[info] Updating 
[info] Resolved  dependencies
[info] Updating 
https://repo1.maven.org/maven2/com/sksamuel/scrimage/scrimage-core/4.0.34/scrimage-core-4.0.34.pom
  100.0% [##########] 2.5 KiB (69.4 KiB / s)
https://repo1.maven.org/maven2/com/sksamuel/scrimage/scrimage-webp/4.0.34/scrimage-webp-4.0.34.pom
  100.0% [##########] 2.0 KiB (16.8 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio-core/3.9.4/imageio-core-3.9.4.pom
  100.0% [##########] 1.1 KiB (157.9 KiB / s)
https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.pom
  100.0% [##########] 29.9 KiB (1.9 MiB / s)
https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.pom
  100.0% [##########] 1.6 KiB (104.9 KiB / s)
https://repo1.maven.org/maven2/com/drewnoakes/metadata-extractor/2.18.0/metadata-extractor-2.18.0.pom
  100.0% [##########] 8.6 KiB (259.3 KiB / s)
https://repo1.maven.org/maven2/com/github/zh79325/open-gif/1.0.4/open-gif-1.0.4.pom
  100.0% [##########] 4.5 KiB (195.9 KiB / s)
https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.pom
  100.0% [##########] 19.3 KiB (583.8 KiB / s)
https://repo1.maven.org/maven2/ar/com/hjg/pngj/2.1.0/pngj-2.1.0.pom
  100.0% [##########] 3.6 KiB (68.5 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio-jpeg/3.9.4/imageio-jpeg-3.9.4.pom
  100.0% [##########] 1.3 KiB (9.6 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio/3.9.4/imageio-3.9.4.pom
  100.0% [##########] 5.9 KiB (281.1 KiB / s)
https://repo1.maven.org/maven2/org/apache/commons/commons-parent/52/commons-parent-52.pom
  100.0% [##########] 77.4 KiB (3.6 MiB / s)
https://repo1.maven.org/maven2/org/slf4j/slf4j-parent/2.0.6/slf4j-parent-2.0.6.pom
  100.0% [##########] 16.2 KiB (769.3 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/twelvemonkeys/3.9.4/twelvemonkeys-3.9.4.pom
  100.0% [##########] 12.4 KiB (824.7 KiB / s)
https://repo1.maven.org/maven2/org/junit/junit-bom/5.7.2/junit-bom-5.7.2.pom
  100.0% [##########] 5.0 KiB (383.0 KiB / s)
https://repo1.maven.org/maven2/org/junit/junit-bom/5.7.1/junit-bom-5.7.1.pom
  100.0% [##########] 5.0 KiB (226.3 KiB / s)
https://repo1.maven.org/maven2/com/adobe/xmp/xmpcore/6.1.11/xmpcore-6.1.11.pom
  100.0% [##########] 6.2 KiB (519.5 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common-io/3.9.4/common-io-3.9.4.pom
  100.0% [##########] 1.1 KiB (92.9 KiB / s)
https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.pom
  100.0% [##########] 11.6 KiB (503.9 KiB / s)
https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.pom
  100.0% [##########] 4.9 KiB (158.0 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common-lang/3.9.4/common-lang-3.9.4.pom
  100.0% [##########] 774B (23.6 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio-metadata/3.9.4/imageio-metadata-3.9.4.pom
  100.0% [##########] 1.1 KiB (9.9 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common-image/3.9.4/common-image-3.9.4.pom
  100.0% [##########] 1.3 KiB (9.8 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common/3.9.4/common-3.9.4.pom
  100.0% [##########] 1.8 KiB (131.1 KiB / s)
https://repo1.maven.org/maven2/ch/qos/logback/logback-parent/1.1.2/logback-parent-1.1.2.pom
  100.0% [##########] 14.6 KiB (428.0 KiB / s)
[info] Resolved  dependencies
[info] Fetching artifacts of 
https://repo1.maven.org/maven2/com/sksamuel/scrimage/scrimage-core/4.0.34/scrimage-core-4.0.34.jar
   48.6% [####      ] 112.0 KiB (7.8 MiB / s)
https://repo1.maven.org/maven2/com/adobe/xmp/xmpcore/6.1.11/xmpcore-6.1.11.jar
  100.0% [##########] 139.6 KiB (4.1 MiB / s)
https://repo1.maven.org/maven2/com/github/zh79325/open-gif/1.0.4/open-gif-1.0.4.jar
  100.0% [##########] 13.5 KiB (408.6 KiB / s)
https://repo1.maven.org/maven2/com/sksamuel/scrimage/scrimage-core/4.0.34/scrimage-core-4.0.34.jar
  100.0% [##########] 230.2 KiB (6.8 MiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common-image/3.9.4/common-image-3.9.4.jar
  100.0% [##########] 83.5 KiB (2.5 MiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio-core/3.9.4/imageio-core-3.9.4.jar
  100.0% [##########] 113.7 KiB (8.5 MiB / s)
https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
   33.5% [###       ] 192.0 KiB (12.5 MiB / s)
https://repo1.maven.org/maven2/ch/qos/logback/logback-core/1.1.2/logback-core-1.1.2.jar
  100.0% [##########] 417.7 KiB (7.7 MiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio-metadata/3.9.4/imageio-metadata-3.9.4.jar
  100.0% [##########] 79.9 KiB (6.5 MiB / s)
https://repo1.maven.org/maven2/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar
  100.0% [##########] 319.5 KiB (13.6 MiB / s)
https://repo1.maven.org/maven2/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
  100.0% [##########] 573.6 KiB (16.0 MiB / s)
https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.jar
   30.3% [###       ] 80.0 KiB (3.3 MiB / s)
https://repo1.maven.org/maven2/ar/com/hjg/pngj/2.1.0/pngj-2.1.0.jar
  100.0% [##########] 163.5 KiB (6.7 MiB / s)
https://repo1.maven.org/maven2/ch/qos/logback/logback-classic/1.1.2/logback-classic-1.1.2.jar
  100.0% [##########] 264.4 KiB (5.9 MiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/imageio/imageio-jpeg/3.9.4/imageio-jpeg-3.9.4.jar
  100.0% [##########] 90.1 KiB (5.9 MiB / s)
https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.6/slf4j-api-2.0.6.jar
  100.0% [##########] 61.1 KiB (2.1 MiB / s)
https://repo1.maven.org/maven2/com/drewnoakes/metadata-extractor/2.18.0/metadata-extractor-2.18.0.jar
  100.0% [##########] 715.4 KiB (11.1 MiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common-io/3.9.4/common-io-3.9.4.jar
  100.0% [##########] 87.9 KiB (574.4 KiB / s)
https://repo1.maven.org/maven2/com/twelvemonkeys/common/common-lang/3.9.4/common-lang-3.9.4.jar
  100.0% [##########] 116.8 KiB (1.0 MiB / s)
https://repo1.maven.org/maven2/com/sksamuel/scrimage/scrimage-webp/4.0.34/scrimage-webp-4.0.34.jar
  100.0% [##########] 6.3 MiB (7.7 MiB / s)
[info] Fetched artifacts of 
[info] Updating 
https://repo1.maven.org/maven2/me/tongfei/progressbar/0.9.5/progressbar-0.9.5.pom
  100.0% [##########] 8.2 KiB (454.4 KiB / s)
https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parallel-collections_3/1.0.4/scala-parallel-collections_3-1.0.4.pom
  100.0% [##########] 1.9 KiB (102.8 KiB / s)
https://repo1.maven.org/maven2/com/github/alexarchambault/case-app_3/2.1.0-M24/case-app_3-2.1.0-M24.pom
  100.0% [##########] 2.2 KiB (18.5 KiB / s)
https://repo1.maven.org/maven2/com/github/alexarchambault/case-app-annotations_3/2.1.0-M24/case-app-annotations_3-2.1.0-M24.pom
  100.0% [##########] 1.6 KiB (86.7 KiB / s)
https://repo1.maven.org/maven2/com/github/alexarchambault/case-app-util_3/2.1.0-M24/case-app-util_3-2.1.0-M24.pom
  100.0% [##########] 1.6 KiB (13.7 KiB / s)
[info] Resolved  dependencies
[info] Fetching artifacts of 
https://repo1.maven.org/maven2/com/github/alexarchambault/case-app-util_3/2.1.0-M24/case-app-util_3-2.1.0-M24.jar
  100.0% [##########] 1.6 KiB (111.2 KiB / s)
https://repo1.maven.org/maven2/com/github/alexarchambault/case-app_3/2.1.0-M24/case-app_3-2.1.0-M24.jar
  100.0% [##########] 761.1 KiB (14.0 MiB / s)
https://repo1.maven.org/maven2/com/github/alexarchambault/case-app-annotations_3/2.1.0-M24/case-app-annotations_3-2.1.0-M24.jar
  100.0% [##########] 43.0 KiB (377.3 KiB / s)
https://repo1.maven.org/maven2/me/tongfei/progressbar/0.9.5/progressbar-0.9.5.jar
  100.0% [##########] 34.8 KiB (302.9 KiB / s)
[info] Fetched artifacts of 
[info] running (fork) LeNetApp 
[info] Using device: Device(CUDA,-1)
[info] Epoch: 1 | Batch:    0 | Training loss: 2.2985 | Eval loss: 2.3009 | Eval accuracy: 0.0982
[info] Epoch: 1 | Batch:  200 | Training loss: 0.7635 | Eval loss: 0.6964 | Eval accuracy: 0.7784
[info] Epoch: 1 | Batch:  400 | Training loss: 0.3220 | Eval loss: 0.5431 | Eval accuracy: 0.8443
[info] Epoch: 1 | Batch:  600 | Training loss: 0.2631 | Eval loss: 0.4036 | Eval accuracy: 0.8808
[info] Epoch: 1 | Batch:  800 | Training loss: 0.4482 | Eval loss: 0.3480 | Eval accuracy: 0.9002
[info] Epoch: 1 | Batch: 1000 | Training loss: 0.3911 | Eval loss: 0.2999 | Eval accuracy: 0.9098
[info] Epoch: 1 | Batch: 1200 | Training loss: 0.4641 | Eval loss: 0.2577 | Eval accuracy: 0.9199
[info] Epoch: 1 | Batch: 1400 | Training loss: 0.1988 | Eval loss: 0.2169 | Eval accuracy: 0.9333
[info] Epoch: 1 | Batch: 1600 | Training loss: 0.3342 | Eval loss: 0.2088 | Eval accuracy: 0.9335
[info] Epoch: 1 | Batch: 1800 | Training loss: 0.1122 | Eval loss: 0.1937 | Eval accuracy: 0.9377
[info] Epoch: 2 | Batch:    0 | Training loss: 0.1189 | Eval loss: 0.1761 | Eval accuracy: 0.9433
[info] Epoch: 2 | Batch:  200 | Training loss: 0.1690 | Eval loss: 0.1740 | Eval accuracy: 0.9428
[info] Epoch: 2 | Batch:  400 | Training loss: 0.2788 | Eval loss: 0.1584 | Eval accuracy: 0.9489
[info] Epoch: 2 | Batch:  600 | Training loss: 0.1793 | Eval loss: 0.1357 | Eval accuracy: 0.9555
[info] Epoch: 2 | Batch:  800 | Training loss: 0.0234 | Eval loss: 0.1325 | Eval accuracy: 0.9563
[info] Epoch: 2 | Batch: 1000 | Training loss: 0.0983 | Eval loss: 0.1197 | Eval accuracy: 0.9618
[info] Epoch: 2 | Batch: 1200 | Training loss: 0.1890 | Eval loss: 0.1091 | Eval accuracy: 0.9631
[info] Epoch: 2 | Batch: 1400 | Training loss: 0.1181 | Eval loss: 0.1126 | Eval accuracy: 0.9658
[info] Epoch: 2 | Batch: 1600 | Training loss: 0.0675 | Eval loss: 0.1088 | Eval accuracy: 0.9640
[info] Epoch: 2 | Batch: 1800 | Training loss: 0.0593 | Eval loss: 0.0967 | Eval accuracy: 0.9683
[info] Epoch: 3 | Batch:    0 | Training loss: 0.1260 | Eval loss: 0.0933 | Eval accuracy: 0.9690
[info] Epoch: 3 | Batch:  200 | Training loss: 0.0845 | Eval loss: 0.0911 | Eval accuracy: 0.9707
[info] Epoch: 3 | Batch:  400 | Training loss: 0.0881 | Eval loss: 0.0850 | Eval accuracy: 0.9719
[info] Epoch: 3 | Batch:  600 | Training loss: 0.0913 | Eval loss: 0.0823 | Eval accuracy: 0.9730
[info] Epoch: 3 | Batch:  800 | Training loss: 0.1504 | Eval loss: 0.0784 | Eval accuracy: 0.9736
[info] Epoch: 3 | Batch: 1000 | Training loss: 0.0099 | Eval loss: 0.0750 | Eval accuracy: 0.9765
[info] Epoch: 3 | Batch: 1200 | Training loss: 0.0184 | Eval loss: 0.0721 | Eval accuracy: 0.9759
[info] Epoch: 3 | Batch: 1400 | Training loss: 0.0969 | Eval loss: 0.0724 | Eval accuracy: 0.9758
[info] Epoch: 3 | Batch: 1600 | Training loss: 0.0418 | Eval loss: 0.0704 | Eval accuracy: 0.9763
[info] Epoch: 3 | Batch: 1800 | Training loss: 0.0084 | Eval loss: 0.0689 | Eval accuracy: 0.9770
[info] Epoch: 4 | Batch:    0 | Training loss: 0.0108 | Eval loss: 0.0659 | Eval accuracy: 0.9780
[info] Epoch: 4 | Batch:  200 | Training loss: 0.0330 | Eval loss: 0.0670 | Eval accuracy: 0.9782
[info] Epoch: 4 | Batch:  400 | Training loss: 0.0547 | Eval loss: 0.0626 | Eval accuracy: 0.9796
[info] Epoch: 4 | Batch:  600 | Training loss: 0.0192 | Eval loss: 0.0617 | Eval accuracy: 0.9799
[info] Epoch: 4 | Batch:  800 | Training loss: 0.0445 | Eval loss: 0.0620 | Eval accuracy: 0.9794
[info] Epoch: 4 | Batch: 1000 | Training loss: 0.0091 | Eval loss: 0.0596 | Eval accuracy: 0.9802
[info] Epoch: 4 | Batch: 1200 | Training loss: 0.1867 | Eval loss: 0.0592 | Eval accuracy: 0.9806
[info] Epoch: 4 | Batch: 1400 | Training loss: 0.0501 | Eval loss: 0.0580 | Eval accuracy: 0.9810
[info] Epoch: 4 | Batch: 1600 | Training loss: 0.0252 | Eval loss: 0.0564 | Eval accuracy: 0.9828
[info] Epoch: 4 | Batch: 1800 | Training loss: 0.0509 | Eval loss: 0.0581 | Eval accuracy: 0.9805
[info] Epoch: 5 | Batch:    0 | Training loss: 0.0419 | Eval loss: 0.0580 | Eval accuracy: 0.9811
[info] Epoch: 5 | Batch:  200 | Training loss: 0.0306 | Eval loss: 0.0533 | Eval accuracy: 0.9826
[info] Epoch: 5 | Batch:  400 | Training loss: 0.0983 | Eval loss: 0.0555 | Eval accuracy: 0.9816
[info] Epoch: 5 | Batch:  600 | Training loss: 0.0867 | Eval loss: 0.0544 | Eval accuracy: 0.9816
[info] Epoch: 5 | Batch:  800 | Training loss: 0.1454 | Eval loss: 0.0527 | Eval accuracy: 0.9817
[info] Epoch: 5 | Batch: 1000 | Training loss: 0.2604 | Eval loss: 0.0519 | Eval accuracy: 0.9821
[info] Epoch: 5 | Batch: 1200 | Training loss: 0.2010 | Eval loss: 0.0502 | Eval accuracy: 0.9833
[info] Epoch: 5 | Batch: 1400 | Training loss: 0.0247 | Eval loss: 0.0495 | Eval accuracy: 0.9827
[info] Epoch: 5 | Batch: 1600 | Training loss: 0.0443 | Eval loss: 0.0525 | Eval accuracy: 0.9830
[info] Epoch: 5 | Batch: 1800 | Training loss: 0.0868 | Eval loss: 0.0533 | Eval accuracy: 0.9822
[success] Total time: 154 s (02:34), completed Nov 30, 2023, 1:06:24 PM
sbt:root> 

TIA

sbrunk commented 9 months ago

Using device: Device(CUDA,-1) seems fine I get that too. In contrast to PyTorch LibTorch returns -1 when you don't explicitly enumerate a GPU I think.

Could you check the output of nvidia-smi or nvtop to see if it is actually using the GPU?

hmf commented 9 months ago

@sbrunk You are correct. nvidia-smi shows the GPU is being used. I will merge this into my latest and see how that goes. Thank you.