pyvpmr 241217__cp310-cp310-macosx_14_0_arm64.whl → 250523__cp310-cp310-macosx_14_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
pyvpmr/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2024 Theodore Chang
1
+ # Copyright (C) 2024-2025 Theodore Chang
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pyvpmr
3
- Version: 241217
3
+ Version: 250523
4
4
  Summary: The VPMR Algorithm
5
5
  Author-email: Theodore Chang <tlcfem@gmail.com>
6
6
  Maintainer-email: Theodore Chang <tlcfem@gmail.com>
@@ -701,6 +701,9 @@ Description-Content-Type: text/markdown
701
701
  License-File: LICENSE
702
702
  Requires-Dist: numpy
703
703
  Requires-Dist: matplotlib
704
+ Dynamic: description
705
+ Dynamic: description-content-type
706
+ Dynamic: license-file
704
707
 
705
708
  # VPMR C++ Implementation
706
709
 
@@ -746,10 +749,9 @@ The following libraries are required:
746
749
  The following libraries are included:
747
750
 
748
751
  1. [mpreal](http://www.holoborodko.com/pavel/mpfr/) `mpreal` type C++ wrapper, included
749
- 2. [BigInt](https://github.com/faheel/BigInt) `BigInt` arbitrary large integer for combinatorial number, included
750
- 3. [Eigen](https://eigen.tuxfamily.org/) for matrix decomposition, included
751
- 4. [exprtk](https://github.com/ArashPartow/exprtk.git) for expression parsing, included
752
- 5. [exprtk-custom-types](https://github.com/ArashPartow/exprtk-custom-types.git) for `mpreal` support, included
752
+ 2. [Eigen](https://eigen.tuxfamily.org/) for matrix decomposition, included
753
+ 3. [exprtk](https://github.com/ArashPartow/exprtk.git) for expression parsing, included
754
+ 4. [exprtk-custom-types](https://github.com/ArashPartow/exprtk-custom-types.git) for `mpreal` support, included
753
755
 
754
756
  ## How To
755
757
 
@@ -943,10 +945,8 @@ WSL.
943
945
  # install necessary packages
944
946
  pacman -S git mingw-w64-x86_64-cmake mingw-w64-x86_64-tbb mingw-w64-x86_64-gcc mingw-w64-x86_64-ninja mingw-w64-x86_64-gmp mingw-w64-x86_64-mpfr
945
947
  # clone the repository
946
- git clone --depth 1 https://github.com/TLCFEM/vpmr.git
947
- # initialise submodules
948
+ git clone --recurse-submodules --depth 1 https://github.com/TLCFEM/vpmr.git
948
949
  cd vpmr
949
- git submodule update --init --recursive
950
950
  # apply patch to enable parallel evaluation of some loops in SVD
951
951
  cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
952
952
  # configure and compile
@@ -961,9 +961,8 @@ The following is based on Fedora.
961
961
  ```bash
962
962
  sudo dnf install gcc g++ gfortran cmake git -y
963
963
  sudo dnf install tbb-devel mpfr-devel gmp-devel -y
964
- git clone --depth 1 https://github.com/TLCFEM/vpmr.git
964
+ git clone --recurse-submodules --depth 1 https://github.com/TLCFEM/vpmr.git
965
965
  cd vpmr
966
- git submodule update --init --recursive
967
966
  cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
968
967
  cmake -DCMAKE_BUILD_TYPE=Release .
969
968
  make
@@ -975,15 +974,15 @@ The binary requires available `gmp`, `mpfr` and `tbb` libraries.
975
974
 
976
975
  ```bash
977
976
  ❯ ldd vpmr
978
- linux-vdso.so.1 (0x00007ffcf3121000)
979
- libgmp.so.10 => /lib64/libgmp.so.10 (0x00007f72087e8000)
980
- libmpfr.so.6 => /lib64/libmpfr.so.6 (0x00007f7208736000)
981
- libtbb.so.2 => /lib64/libtbb.so.2 (0x00007f72086f2000)
982
- libstdc++.so.6 => /lib64/libstdc++.so.6 (0x00007f7208400000)
983
- libm.so.6 => /lib64/libm.so.6 (0x00007f7208320000)
984
- libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f72086d0000)
985
- libc.so.6 => /lib64/libc.so.6 (0x00007f7208143000)
986
- /lib64/ld-linux-x86-64.so.2 (0x00007f72088a1000)
977
+ linux-vdso.so.1 (0x00007ffec2fa0000)
978
+ libtbb.so.12 => /lib/x86_64-linux-gnu/libtbb.so.12 (0x00007fd1dcb13000)
979
+ libgmp.so.10 => /lib/x86_64-linux-gnu/libgmp.so.10 (0x00007fd1dca92000)
980
+ libmpfr.so.6 => /lib/x86_64-linux-gnu/libmpfr.so.6 (0x00007fd1dc9d8000)
981
+ libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fd1dac00000)
982
+ libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fd1daf20000)
983
+ libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fd1daf00000)
984
+ libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fd1daa1f000)
985
+ /lib64/ld-linux-x86-64.so.2 (0x00007fd1dcb78000)
987
986
  ```
988
987
 
989
988
  The distributed `appimage` is portable.
@@ -0,0 +1,12 @@
1
+ _pyvpmr.cpython-310-darwin.so,sha256=mTahk74Il6FeXRl551zWIrTls8B-47LAhjyJm08Syo4,12767328
2
+ pyvpmr-250523.dist-info/RECORD,,
3
+ pyvpmr-250523.dist-info/WHEEL,sha256=6mz6m0Y71NS71YGa4iT9wHVtfG2BF51p6sDWnz2r4I8,136
4
+ pyvpmr-250523.dist-info/top_level.txt,sha256=Eg1XIUGMpHxqPFJiuE5mRh-LSacMJfhz3QoVoApXeQY,15
5
+ pyvpmr-250523.dist-info/METADATA,sha256=y-pnEke6weMI55Yg-wC1MC6UPJPTqeKHmcp11QqBJ1I,51557
6
+ pyvpmr-250523.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
7
+ pyvpmr/__init__.py,sha256=WaGuN2SMeM-uktVC8bI72m24JZDqGpeeSEjf5RnZ7uk,4834
8
+ pyvpmr/.dylibs/libstdc++.6.dylib,sha256=95Xgj-wWrZqFveFBIhk8eSBgsTIRVGpy19fAeQk_imU,3371040
9
+ pyvpmr/.dylibs/libtbb.12.15.dylib,sha256=qvM-tgmjygDS_IGuTY75cPugsgxgkWQBvK38GsckG9Y,338816
10
+ pyvpmr/.dylibs/libgcc_s.1.1.dylib,sha256=UFd9rarNTDe-odlHg6YqBWjuSedl_enFnBqcWzl3D3g,183168
11
+ pyvpmr/.dylibs/libgmp.10.dylib,sha256=XgNl9xsFt1VGpFDJv-Bo2InSP_4SM7MuMkt7Nz1sgd0,452816
12
+ pyvpmr/.dylibs/libmpfr.6.dylib,sha256=HlSKXrk4gR0FCrv1nspkodY5oKV_kswJoyHHJuaeGMc,453104
@@ -1,5 +1,6 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (80.8.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp310-cp310-macosx_14_0_arm64
5
+ Generator: delocate 0.13.0
5
6
 
@@ -1,12 +0,0 @@
1
- _pyvpmr.cpython-310-darwin.so,sha256=f0jqglX5YLt761cXETkz5J0n4RZvh5alCIT2BggicOc,11776144
2
- pyvpmr/__init__.py,sha256=Bi-DREXwct7QQutAWxBFY8y-nW2qto9JHaG_6pGsA-w,4829
3
- pyvpmr/.dylibs/libstdc++.6.dylib,sha256=95Xgj-wWrZqFveFBIhk8eSBgsTIRVGpy19fAeQk_imU,3371040
4
- pyvpmr/.dylibs/libtbb.12.14.dylib,sha256=jp6GhQfhmedX-ukq-73fjtXpEJaiI3hOnTg-mNRk_ZE,338336
5
- pyvpmr/.dylibs/libgcc_s.1.1.dylib,sha256=UFd9rarNTDe-odlHg6YqBWjuSedl_enFnBqcWzl3D3g,183168
6
- pyvpmr/.dylibs/libgmp.10.dylib,sha256=XgNl9xsFt1VGpFDJv-Bo2InSP_4SM7MuMkt7Nz1sgd0,452816
7
- pyvpmr/.dylibs/libmpfr.6.dylib,sha256=2x9vZ9ZXt20YBdgV0lITege_gkHKnHQL6J907LAmhug,453248
8
- pyvpmr-241217.dist-info/RECORD,,
9
- pyvpmr-241217.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
10
- pyvpmr-241217.dist-info/WHEEL,sha256=IckoTiEyZ7jOzifXmxHZ8WzPuH9GI7kmmJS0Q083CA4,109
11
- pyvpmr-241217.dist-info/top_level.txt,sha256=Eg1XIUGMpHxqPFJiuE5mRh-LSacMJfhz3QoVoApXeQY,15
12
- pyvpmr-241217.dist-info/METADATA,sha256=hkpCJA0kte9yhW2NDH0WxlPcseBK_ytO7ZsGUy_dQU4,51558