pyvpmr 241217__cp313-cp313-macosx_14_0_arm64.whl → 250523__cp313-cp313-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.
- _pyvpmr.cpython-313-darwin.so +0 -0
- pyvpmr/.dylibs/libmpfr.6.dylib +0 -0
- pyvpmr/.dylibs/{libtbb.12.14.dylib → libtbb.12.15.dylib} +0 -0
- pyvpmr/__init__.py +1 -1
- {pyvpmr-241217.dist-info → pyvpmr-250523.dist-info}/METADATA +19 -20
- pyvpmr-250523.dist-info/RECORD +12 -0
- {pyvpmr-241217.dist-info → pyvpmr-250523.dist-info}/WHEEL +2 -1
- pyvpmr-241217.dist-info/RECORD +0 -12
- {pyvpmr-241217.dist-info → pyvpmr-250523.dist-info/licenses}/LICENSE +0 -0
- {pyvpmr-241217.dist-info → pyvpmr-250523.dist-info}/top_level.txt +0 -0
_pyvpmr.cpython-313-darwin.so
CHANGED
Binary file
|
pyvpmr/.dylibs/libmpfr.6.dylib
CHANGED
Binary file
|
Binary file
|
pyvpmr/__init__.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: pyvpmr
|
3
|
-
Version:
|
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. [
|
750
|
-
3. [
|
751
|
-
4. [exprtk](https://github.com/ArashPartow/exprtk.git) for
|
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
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
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-313-darwin.so,sha256=KWmf_A6rxn2qzN5bwFGxVs0B4Wa6CzCTMvQQztFtrVA,12766976
|
2
|
+
pyvpmr-250523.dist-info/RECORD,,
|
3
|
+
pyvpmr-250523.dist-info/WHEEL,sha256=TtdMwq5Rxv7yGMx303f2GfeyeGccWwMuRF46HNDT3Vo,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
|
pyvpmr-241217.dist-info/RECORD
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
_pyvpmr.cpython-313-darwin.so,sha256=BeNt_e1RcWhTO6-ZBO28QOd3I8eZGyXMcWzJ1z4bi8Y,11792288
|
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=HUI-unlNkX4xbVGkBkC44DQcZzZFHqobhVDIpEE_DTA,109
|
11
|
-
pyvpmr-241217.dist-info/top_level.txt,sha256=Eg1XIUGMpHxqPFJiuE5mRh-LSacMJfhz3QoVoApXeQY,15
|
12
|
-
pyvpmr-241217.dist-info/METADATA,sha256=hkpCJA0kte9yhW2NDH0WxlPcseBK_ytO7ZsGUy_dQU4,51558
|
File without changes
|
File without changes
|