pyvpmr 250420__cp310-cp310-macosx_13_0_x86_64.whl → 250526__cp310-cp310-macosx_13_0_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-310-darwin.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}/WHEEL +1 -1
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/licenses/LICENSE +0 -0
- {pyvpmr-250420.dist-info → pyvpmr-250526.dist-info}/top_level.txt +0 -0
_pyvpmr.cpython-310-darwin.so
CHANGED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
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>
|
@@ -749,10 +749,9 @@ The following libraries are required:
|
|
749
749
|
The following libraries are included:
|
750
750
|
|
751
751
|
1. [mpreal](http://www.holoborodko.com/pavel/mpfr/) `mpreal` type C++ wrapper, included
|
752
|
-
2. [
|
753
|
-
3. [
|
754
|
-
4. [exprtk](https://github.com/ArashPartow/exprtk.git) for
|
755
|
-
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
|
756
755
|
|
757
756
|
## How To
|
758
757
|
|
@@ -946,10 +945,8 @@ WSL.
|
|
946
945
|
# install necessary packages
|
947
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
|
948
947
|
# clone the repository
|
949
|
-
git clone --depth 1 https://github.com/TLCFEM/vpmr.git
|
950
|
-
# initialise submodules
|
948
|
+
git clone --recurse-submodules --depth 1 https://github.com/TLCFEM/vpmr.git
|
951
949
|
cd vpmr
|
952
|
-
git submodule update --init --recursive
|
953
950
|
# apply patch to enable parallel evaluation of some loops in SVD
|
954
951
|
cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
|
955
952
|
# configure and compile
|
@@ -964,9 +961,8 @@ The following is based on Fedora.
|
|
964
961
|
```bash
|
965
962
|
sudo dnf install gcc g++ gfortran cmake git -y
|
966
963
|
sudo dnf install tbb-devel mpfr-devel gmp-devel -y
|
967
|
-
git clone --depth 1 https://github.com/TLCFEM/vpmr.git
|
964
|
+
git clone --recurse-submodules --depth 1 https://github.com/TLCFEM/vpmr.git
|
968
965
|
cd vpmr
|
969
|
-
git submodule update --init --recursive
|
970
966
|
cd eigen && git apply --ignore-space-change --ignore-whitespace ../patch_size.patch && cd ..
|
971
967
|
cmake -DCMAKE_BUILD_TYPE=Release .
|
972
968
|
make
|
@@ -978,15 +974,15 @@ The binary requires available `gmp`, `mpfr` and `tbb` libraries.
|
|
978
974
|
|
979
975
|
```bash
|
980
976
|
❯ ldd vpmr
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
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)
|
990
986
|
```
|
991
987
|
|
992
988
|
The distributed `appimage` is portable.
|
@@ -1,12 +1,12 @@
|
|
1
|
-
_pyvpmr.cpython-310-darwin.so,sha256
|
1
|
+
_pyvpmr.cpython-310-darwin.so,sha256=-C-dzNzQSrw6DqAnVWfq20WrrYJtNJiNiiGL1TOwDak,12185376
|
2
2
|
pyvpmr/__init__.py,sha256=WaGuN2SMeM-uktVC8bI72m24JZDqGpeeSEjf5RnZ7uk,4834
|
3
3
|
pyvpmr/.dylibs/libstdc++.6.dylib,sha256=Ohn-mC6RtPotV1g4ks283wImG2BmhQBtMiMk6qeuXvA,3543184
|
4
4
|
pyvpmr/.dylibs/libtbb.12.15.dylib,sha256=TlHBNo74RmhIFv1B5Bl2BN0DWECG_DRkx1PwXOatAbg,396192
|
5
5
|
pyvpmr/.dylibs/libgcc_s.1.1.dylib,sha256=rd22bXo8339j1MSaHHbJqVNhMvb0YFzIzGwe951nMSE,244384
|
6
6
|
pyvpmr/.dylibs/libgmp.10.dylib,sha256=Hf8EPoCP7xci82j--RT-O4vUMebLYJYMv1ESObFtE0Y,486272
|
7
7
|
pyvpmr/.dylibs/libmpfr.6.dylib,sha256=y42em9NoUc5gt34RuVC_eImab0eo2XF6wy_tOhIVqb8,486224
|
8
|
-
pyvpmr-
|
9
|
-
pyvpmr-
|
10
|
-
pyvpmr-
|
11
|
-
pyvpmr-
|
12
|
-
pyvpmr-
|
8
|
+
pyvpmr-250526.dist-info/RECORD,,
|
9
|
+
pyvpmr-250526.dist-info/WHEEL,sha256=0-WPt6HNjiriKJJyCRz2lW94npEmM8emirGOhMahsFU,137
|
10
|
+
pyvpmr-250526.dist-info/top_level.txt,sha256=Eg1XIUGMpHxqPFJiuE5mRh-LSacMJfhz3QoVoApXeQY,15
|
11
|
+
pyvpmr-250526.dist-info/METADATA,sha256=SpmSqiLGwhX5krT-7LYHFOyfI-xSubILgQuDfzpwciY,51557
|
12
|
+
pyvpmr-250526.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
File without changes
|
File without changes
|