pyvpmr 250420__cp38-cp38-musllinux_1_2_x86_64.whl → 250526__cp38-cp38-musllinux_1_2_x86_64.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-38-x86_64-linux-gnu.so +0 -0
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/METADATA +15 -19
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/RECORD +6 -6
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/LICENSE +0 -0
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/WHEEL +0 -0
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/top_level.txt +0 -0
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyvpmr
|
3
|
-
Version:
|
3
|
+
Version: 250526
|
4
4
|
Summary: The VPMR Algorithm
|
5
5
|
Author-email: Theodore Chang <tlcfem@gmail.com>
|
6
6
|
Maintainer-email: Theodore Chang <tlcfem@gmail.com>
|
@@ -746,10 +746,9 @@ The following libraries are required:
|
|
746
746
|
The following libraries are included:
|
747
747
|
|
748
748
|
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
|
749
|
+
2. [Eigen](https://eigen.tuxfamily.org/) for matrix decomposition, included
|
750
|
+
3. [exprtk](https://github.com/ArashPartow/exprtk.git) for expression parsing, included
|
751
|
+
4. [exprtk-custom-types](https://github.com/ArashPartow/exprtk-custom-types.git) for `mpreal` support, included
|
753
752
|
|
754
753
|
## How To
|
755
754
|
|
@@ -943,10 +942,8 @@ WSL.
|
|
943
942
|
# install necessary packages
|
944
943
|
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
944
|
# clone the repository
|
946
|
-
git clone --depth 1 https://github.com/TLCFEM/vpmr.git
|
947
|
-
# initialise submodules
|
945
|
+
git clone --recurse-submodules --depth 1 https://github.com/TLCFEM/vpmr.git
|
948
946
|
cd vpmr
|
949
|
-
git submodule update --init --recursive
|
950
947
|
# apply patch to enable parallel evaluation of some loops in SVD
|
951
948
|
cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
|
952
949
|
# configure and compile
|
@@ -961,9 +958,8 @@ The following is based on Fedora.
|
|
961
958
|
```bash
|
962
959
|
sudo dnf install gcc g++ gfortran cmake git -y
|
963
960
|
sudo dnf install tbb-devel mpfr-devel gmp-devel -y
|
964
|
-
git clone --depth 1 https://github.com/TLCFEM/vpmr.git
|
961
|
+
git clone --recurse-submodules --depth 1 https://github.com/TLCFEM/vpmr.git
|
965
962
|
cd vpmr
|
966
|
-
git submodule update --init --recursive
|
967
963
|
cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
|
968
964
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
969
965
|
make
|
@@ -975,15 +971,15 @@ The binary requires available `gmp`, `mpfr` and `tbb` libraries.
|
|
975
971
|
|
976
972
|
```bash
|
977
973
|
❯ ldd vpmr
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
974
|
+
linux-vdso.so.1 (0x00007ffec2fa0000)
|
975
|
+
libtbb.so.12 => /lib/x86_64-linux-gnu/libtbb.so.12 (0x00007fd1dcb13000)
|
976
|
+
libgmp.so.10 => /lib/x86_64-linux-gnu/libgmp.so.10 (0x00007fd1dca92000)
|
977
|
+
libmpfr.so.6 => /lib/x86_64-linux-gnu/libmpfr.so.6 (0x00007fd1dc9d8000)
|
978
|
+
libstdc++.so.6 => /lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007fd1dac00000)
|
979
|
+
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007fd1daf20000)
|
980
|
+
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007fd1daf00000)
|
981
|
+
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fd1daa1f000)
|
982
|
+
/lib64/ld-linux-x86-64.so.2 (0x00007fd1dcb78000)
|
987
983
|
```
|
988
984
|
|
989
985
|
The distributed `appimage` is portable.
|
@@ -1,12 +1,12 @@
|
|
1
|
-
_pyvpmr.cpython-38-x86_64-linux-gnu.so,sha256=
|
1
|
+
_pyvpmr.cpython-38-x86_64-linux-gnu.so,sha256=W2Fxj8hmcbFT5oApkfdQDfnEn7l9KdXut8qeHYdcpOA,12901921
|
2
2
|
pyvpmr/__init__.py,sha256=WaGuN2SMeM-uktVC8bI72m24JZDqGpeeSEjf5RnZ7uk,4834
|
3
3
|
pyvpmr.libs/libgcc_s-2298274a.so.1,sha256=V2IJwfUuwSSQhJqB29JtMx8hH79dCRjAvTQIGWShH-s,181737
|
4
4
|
pyvpmr.libs/libgmp-eefb79ef.so.10.5.0,sha256=sqMZbUSOxnNCKDhqvBhgKY2zF6y0S9Dz9C8P0qC4p7o,448009
|
5
5
|
pyvpmr.libs/libmpfr-465c6433.so.6.2.1,sha256=zmwWMcPW49baiJvVdrE3tdELgbP-H_1tvBqd5v49y2s,717257
|
6
6
|
pyvpmr.libs/libstdc++-08d5c7eb.so.6.0.33,sha256=k0S_imrCh_IE6WpvxrLoVPYiRyMVf15RDWRiXPIywV8,3562401
|
7
7
|
pyvpmr.libs/libtbb-f2920726.so.12.14,sha256=Z5jfi8srr_PIT55FQ3XV_380FY-vg1lgELm7G6m8LNk,259321
|
8
|
-
pyvpmr-
|
9
|
-
pyvpmr-
|
10
|
-
pyvpmr-
|
11
|
-
pyvpmr-
|
12
|
-
pyvpmr-
|
8
|
+
pyvpmr-250526.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
9
|
+
pyvpmr-250526.dist-info/METADATA,sha256=EwhJU5sw8wMHyggYzQ7esuoRbAeKRMn8OaRFvStVUJA,51460
|
10
|
+
pyvpmr-250526.dist-info/WHEEL,sha256=AtKzrIIwO6LyEQPNa-CKogjoLSeXFnST8-hqmpwwZQA,110
|
11
|
+
pyvpmr-250526.dist-info/top_level.txt,sha256=Eg1XIUGMpHxqPFJiuE5mRh-LSacMJfhz3QoVoApXeQY,15
|
12
|
+
pyvpmr-250526.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|