pymomentum-cpu 0.1.78.post29__cp312-cp312-macosx_15_0_arm64.whl → 0.1.79.post5__cp312-cp312-macosx_15_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.
Potentially problematic release.
This version of pymomentum-cpu might be problematic. Click here for more details.
- include/momentum/character_solver/vertex_projection_error_function.h +2 -11
- include/momentum/character_solver/vertex_vertex_distance_error_function.h +4 -8
- lib/libarrow_bundled_dependencies.a +0 -0
- lib/libaxel.a +0 -0
- lib/libmomentum_app_utils.a +0 -0
- lib/libmomentum_character.a +0 -0
- lib/libmomentum_character_sequence_solver.a +0 -0
- lib/libmomentum_character_solver.a +0 -0
- lib/libmomentum_common.a +0 -0
- lib/libmomentum_diff_ik.a +0 -0
- lib/libmomentum_io.a +0 -0
- lib/libmomentum_io_common.a +0 -0
- lib/libmomentum_io_fbx.a +0 -0
- lib/libmomentum_io_gltf.a +0 -0
- lib/libmomentum_io_legacy_json.a +0 -0
- lib/libmomentum_io_marker.a +0 -0
- lib/libmomentum_io_motion.a +0 -0
- lib/libmomentum_io_shape.a +0 -0
- lib/libmomentum_io_skeleton.a +0 -0
- lib/libmomentum_io_urdf.a +0 -0
- lib/libmomentum_marker_tracker.a +0 -0
- lib/libmomentum_math.a +0 -0
- lib/libmomentum_online_qr.a +0 -0
- lib/libmomentum_process_markers.a +0 -0
- lib/libmomentum_rerun.a +0 -0
- lib/libmomentum_simd_constraints.a +0 -0
- lib/libmomentum_simd_generalized_loss.a +0 -0
- lib/libmomentum_skeleton.a +0 -0
- lib/libmomentum_solver.a +0 -0
- lib/librerun_sdk.a +0 -0
- pymomentum/geometry.cpython-312-darwin.so +0 -0
- pymomentum/solver.cpython-312-darwin.so +0 -0
- pymomentum/solver2.cpython-312-darwin.so +0 -0
- {pymomentum_cpu-0.1.78.post29.dist-info → pymomentum_cpu-0.1.79.post5.dist-info}/METADATA +3 -3
- {pymomentum_cpu-0.1.78.post29.dist-info → pymomentum_cpu-0.1.79.post5.dist-info}/RECORD +37 -37
- {pymomentum_cpu-0.1.78.post29.dist-info → pymomentum_cpu-0.1.79.post5.dist-info}/WHEEL +0 -0
- {pymomentum_cpu-0.1.78.post29.dist-info → pymomentum_cpu-0.1.79.post5.dist-info}/licenses/LICENSE +0 -0
|
@@ -85,6 +85,7 @@ class VertexProjectionErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
85
85
|
double calculateJacobian(
|
|
86
86
|
const ModelParametersT<T>& modelParameters,
|
|
87
87
|
const SkeletonStateT<T>& state,
|
|
88
|
+
const MeshStateT<T>& meshState,
|
|
88
89
|
const VertexProjectionConstraintT<T>& constr,
|
|
89
90
|
Ref<Eigen::MatrixX<T>> jac,
|
|
90
91
|
Ref<Eigen::VectorX<T>> res) const;
|
|
@@ -92,6 +93,7 @@ class VertexProjectionErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
92
93
|
double calculateGradient(
|
|
93
94
|
const ModelParametersT<T>& modelParameters,
|
|
94
95
|
const SkeletonStateT<T>& state,
|
|
96
|
+
const MeshStateT<T>& meshState,
|
|
95
97
|
const VertexProjectionConstraintT<T>& constr,
|
|
96
98
|
Eigen::Ref<Eigen::VectorX<T>> gradient) const;
|
|
97
99
|
|
|
@@ -103,21 +105,10 @@ class VertexProjectionErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
103
105
|
const Eigen::Vector3<T>& d_restPos,
|
|
104
106
|
Eigen::Vector3<T>& d_worldPos) const;
|
|
105
107
|
|
|
106
|
-
void updateMeshes(const ModelParametersT<T>& modelParameters, const SkeletonStateT<T>& state);
|
|
107
|
-
|
|
108
108
|
const Character& character_;
|
|
109
109
|
|
|
110
110
|
std::vector<VertexProjectionConstraintT<T>> constraints_;
|
|
111
111
|
|
|
112
|
-
std::unique_ptr<MeshT<T>>
|
|
113
|
-
neutralMesh_; // Rest mesh without facial expression basis,
|
|
114
|
-
// used to restore the neutral shape after facial expressions are applied.
|
|
115
|
-
// Not used with there is a shape basis.
|
|
116
|
-
std::unique_ptr<MeshT<T>> restMesh_; // The rest positions of the mesh after shape basis
|
|
117
|
-
// (and potentially facial expression) has been applied
|
|
118
|
-
std::unique_ptr<MeshT<T>>
|
|
119
|
-
posedMesh_; // The posed mesh after the skeleton transforms have been applied.
|
|
120
|
-
|
|
121
112
|
uint32_t maxThreads_;
|
|
122
113
|
|
|
123
114
|
T _nearClip = 1.0f;
|
|
@@ -101,6 +101,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
101
101
|
double calculateJacobian(
|
|
102
102
|
const ModelParametersT<T>& modelParameters,
|
|
103
103
|
const SkeletonStateT<T>& state,
|
|
104
|
+
const MeshStateT<T>& meshState,
|
|
104
105
|
const VertexVertexDistanceConstraintT<T>& constraint,
|
|
105
106
|
Eigen::Ref<Eigen::MatrixX<T>> jacobian,
|
|
106
107
|
T& residual) const;
|
|
@@ -109,6 +110,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
109
110
|
double calculateGradient(
|
|
110
111
|
const ModelParametersT<T>& modelParameters,
|
|
111
112
|
const SkeletonStateT<T>& state,
|
|
113
|
+
const MeshStateT<T>& meshState,
|
|
112
114
|
const VertexVertexDistanceConstraintT<T>& constraint,
|
|
113
115
|
Eigen::Ref<Eigen::VectorX<T>> gradient) const;
|
|
114
116
|
|
|
@@ -116,6 +118,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
116
118
|
void calculateVertexGradient(
|
|
117
119
|
const ModelParametersT<T>& modelParameters,
|
|
118
120
|
const SkeletonStateT<T>& state,
|
|
121
|
+
const MeshStateT<T>& meshState,
|
|
119
122
|
int vertexIndex,
|
|
120
123
|
const Eigen::Vector3<T>& gradientDirection,
|
|
121
124
|
Eigen::Ref<Eigen::VectorX<T>> gradient) const;
|
|
@@ -124,6 +127,7 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
124
127
|
void calculateVertexJacobian(
|
|
125
128
|
const ModelParametersT<T>& modelParameters,
|
|
126
129
|
const SkeletonStateT<T>& state,
|
|
130
|
+
const MeshStateT<T>& meshState,
|
|
127
131
|
int vertexIndex,
|
|
128
132
|
const Eigen::Vector3<T>& jacobianDirection,
|
|
129
133
|
Eigen::Ref<Eigen::MatrixX<T>> jacobian) const;
|
|
@@ -135,17 +139,9 @@ class VertexVertexDistanceErrorFunctionT : public SkeletonErrorFunctionT<T> {
|
|
|
135
139
|
const Eigen::Vector3<T>& d_restPos,
|
|
136
140
|
Eigen::Vector3<T>& d_worldPos) const;
|
|
137
141
|
|
|
138
|
-
/// Update the meshes with current parameters and state
|
|
139
|
-
void updateMeshes(const ModelParametersT<T>& modelParameters, const SkeletonStateT<T>& state);
|
|
140
|
-
|
|
141
142
|
const Character& character_;
|
|
142
143
|
|
|
143
144
|
std::vector<VertexVertexDistanceConstraintT<T>> constraints_;
|
|
144
|
-
|
|
145
|
-
/// Mesh used to store rest positions
|
|
146
|
-
std::unique_ptr<MeshT<T>> restMesh_;
|
|
147
|
-
/// Mesh used to store posed positions
|
|
148
|
-
std::unique_ptr<MeshT<T>> posedMesh_;
|
|
149
145
|
};
|
|
150
146
|
|
|
151
147
|
} // namespace momentum
|
|
Binary file
|
lib/libaxel.a
CHANGED
|
Binary file
|
lib/libmomentum_app_utils.a
CHANGED
|
Binary file
|
lib/libmomentum_character.a
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
lib/libmomentum_common.a
CHANGED
|
Binary file
|
lib/libmomentum_diff_ik.a
CHANGED
|
Binary file
|
lib/libmomentum_io.a
CHANGED
|
Binary file
|
lib/libmomentum_io_common.a
CHANGED
|
Binary file
|
lib/libmomentum_io_fbx.a
CHANGED
|
Binary file
|
lib/libmomentum_io_gltf.a
CHANGED
|
Binary file
|
lib/libmomentum_io_legacy_json.a
CHANGED
|
Binary file
|
lib/libmomentum_io_marker.a
CHANGED
|
Binary file
|
lib/libmomentum_io_motion.a
CHANGED
|
Binary file
|
lib/libmomentum_io_shape.a
CHANGED
|
Binary file
|
lib/libmomentum_io_skeleton.a
CHANGED
|
Binary file
|
lib/libmomentum_io_urdf.a
CHANGED
|
Binary file
|
lib/libmomentum_marker_tracker.a
CHANGED
|
Binary file
|
lib/libmomentum_math.a
CHANGED
|
Binary file
|
lib/libmomentum_online_qr.a
CHANGED
|
Binary file
|
|
Binary file
|
lib/libmomentum_rerun.a
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
lib/libmomentum_skeleton.a
CHANGED
|
Binary file
|
lib/libmomentum_solver.a
CHANGED
|
Binary file
|
lib/librerun_sdk.a
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pymomentum-cpu
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.79.post5
|
|
4
4
|
Summary: A library providing foundational algorithms for human kinematic motion and numerical optimization solvers to apply human motion in various applications (CPU-only version for Linux, macOS Intel, and macOS ARM)
|
|
5
5
|
Keywords: kinematics,motion,optimization,human-motion,inverse-kinematics,forward-kinematics,body-tracking,motion-capture,character-animation,robotics,cpu
|
|
6
6
|
Author-Email: Meta Reality Labs Research <jeongseok@meta.com>
|
|
@@ -30,8 +30,8 @@ Requires-Dist: numpy>=1.20.0
|
|
|
30
30
|
Requires-Dist: scipy>=1.7.0
|
|
31
31
|
Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Linux" and python_version == "3.12"
|
|
32
32
|
Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Linux" and python_version == "3.13"
|
|
33
|
-
Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Darwin" and python_version == "3.12"
|
|
34
|
-
Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Darwin" and python_version == "3.13"
|
|
33
|
+
Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Darwin" and platform_machine == "arm64" and python_version == "3.12"
|
|
34
|
+
Requires-Dist: torch<2.9,>=2.8.0; platform_system == "Darwin" and platform_machine == "arm64" and python_version == "3.13"
|
|
35
35
|
Description-Content-Type: text/markdown
|
|
36
36
|
|
|
37
37
|
# Momentum
|
|
@@ -93,8 +93,8 @@ include/momentum/character_solver/state_error_function.h,sha256=qkgPgKcn0FLahMsC
|
|
|
93
93
|
include/momentum/character_solver/transform_pose.h,sha256=PCmBQ8FcXfcR4udOlgUC7-gO7UDCJobCumG7PTlrgy4,3213
|
|
94
94
|
include/momentum/character_solver/trust_region_qr.h,sha256=7OmK1zRgFJxeTumr7bQSs4IakZIY6GRvxO8kkS-8e_w,1905
|
|
95
95
|
include/momentum/character_solver/vertex_error_function.h,sha256=VNgc_P3cnaeaRFpSrxg3VeTWmmLGF_aqkeU1pyyJnYs,4799
|
|
96
|
-
include/momentum/character_solver/vertex_projection_error_function.h,sha256=
|
|
97
|
-
include/momentum/character_solver/vertex_vertex_distance_error_function.h,sha256=
|
|
96
|
+
include/momentum/character_solver/vertex_projection_error_function.h,sha256=o9taDDuKkPf3I0LG0DOXF9aGYFwIIZs-qDUY768X4OY,3414
|
|
97
|
+
include/momentum/character_solver/vertex_vertex_distance_error_function.h,sha256=SLL7Lq4LX5f9I0uSuRt3JHHzyKeGw1grr1k1FG5ssXE,4844
|
|
98
98
|
include/momentum/common/aligned.h,sha256=dZydnVzKP7kwNqaDlAUUi4AdEnrGWqH3TnRKU5hIXYs,4965
|
|
99
99
|
include/momentum/common/checks.h,sha256=D6DFxY8tz84fFDv_SAZkDDx_on8vkP_yL3SrAOMpI64,758
|
|
100
100
|
include/momentum/common/exception.h,sha256=EGY8XU07VHO2o2ZjfQHj48RaC-lYvT-vqTf-7XEtGhE,2524
|
|
@@ -462,51 +462,51 @@ lib/cmake/rerun_sdk/rerun_sdkConfigVersion.cmake,sha256=pkP-Dk2ua51-lUaTXsyrol2-
|
|
|
462
462
|
lib/cmake/rerun_sdk/rerun_sdkTargets-release.cmake,sha256=oJmUbA8vo_Af5olAGr7JcaiuRPU4dihtdClmCq11ADY,824
|
|
463
463
|
lib/cmake/rerun_sdk/rerun_sdkTargets.cmake,sha256=BNlHggsz8G6CC3ypFIFo4xMQVy5c2aSaGJr7nQTmLIM,4255
|
|
464
464
|
lib/libarrow.a,sha256=PGfoISIa8kZe9riQWWQxNTOn9jm1AT3eq8-1-O66R-M,22109512
|
|
465
|
-
lib/libarrow_bundled_dependencies.a,sha256=
|
|
466
|
-
lib/libaxel.a,sha256=
|
|
467
|
-
lib/libmomentum_app_utils.a,sha256=
|
|
468
|
-
lib/libmomentum_character.a,sha256=
|
|
469
|
-
lib/libmomentum_character_sequence_solver.a,sha256=
|
|
470
|
-
lib/libmomentum_character_solver.a,sha256=
|
|
471
|
-
lib/libmomentum_common.a,sha256=
|
|
472
|
-
lib/libmomentum_diff_ik.a,sha256=
|
|
473
|
-
lib/libmomentum_io.a,sha256=
|
|
474
|
-
lib/libmomentum_io_common.a,sha256=
|
|
475
|
-
lib/libmomentum_io_fbx.a,sha256=
|
|
476
|
-
lib/libmomentum_io_gltf.a,sha256=
|
|
477
|
-
lib/libmomentum_io_legacy_json.a,sha256=
|
|
478
|
-
lib/libmomentum_io_marker.a,sha256=
|
|
479
|
-
lib/libmomentum_io_motion.a,sha256=
|
|
480
|
-
lib/libmomentum_io_shape.a,sha256=
|
|
481
|
-
lib/libmomentum_io_skeleton.a,sha256=
|
|
482
|
-
lib/libmomentum_io_urdf.a,sha256=
|
|
483
|
-
lib/libmomentum_marker_tracker.a,sha256=
|
|
484
|
-
lib/libmomentum_math.a,sha256=
|
|
485
|
-
lib/libmomentum_online_qr.a,sha256=
|
|
486
|
-
lib/libmomentum_process_markers.a,sha256=
|
|
487
|
-
lib/libmomentum_rerun.a,sha256=
|
|
488
|
-
lib/libmomentum_simd_constraints.a,sha256=
|
|
489
|
-
lib/libmomentum_simd_generalized_loss.a,sha256=
|
|
490
|
-
lib/libmomentum_skeleton.a,sha256=
|
|
491
|
-
lib/libmomentum_solver.a,sha256=
|
|
465
|
+
lib/libarrow_bundled_dependencies.a,sha256=Dht93PjeakdpeoxJgbhj0CNzJwwX--1twnnKyqGpAWE,155360
|
|
466
|
+
lib/libaxel.a,sha256=DhwZAxccIaTD2cwtrxChWoFW_-G79isOTgGOpsQUZJE,674040
|
|
467
|
+
lib/libmomentum_app_utils.a,sha256=1PNwE7TnXn4oW35qRLt0V3cvvq4z2YUeSSRR7mhr8wo,453224
|
|
468
|
+
lib/libmomentum_character.a,sha256=373Mwm20Lvu-D9AEWtoSYdHoUDsZTUqy-msE12MZ2e0,1825392
|
|
469
|
+
lib/libmomentum_character_sequence_solver.a,sha256=9OBg19h1FaxVqHJWkNgqz64AhAY0sAGTXfIM793ZPFY,2350600
|
|
470
|
+
lib/libmomentum_character_solver.a,sha256=4WzuqiSWGAV66UbhbwYFW_usVriTfkyiXWfbv-YT0jk,5536000
|
|
471
|
+
lib/libmomentum_common.a,sha256=TXnDYlQxA212qgpezjaA2xvM5gtmoCFnYWo-hZkDef4,499016
|
|
472
|
+
lib/libmomentum_diff_ik.a,sha256=ve4GY9NFtS5MMyxBfrUmw-odQRiW391Fk4T55D_S5aQ,2842824
|
|
473
|
+
lib/libmomentum_io.a,sha256=NUwUkzDYxI7Ldujn4a_aElwEK_cAhOe-6nyh8uSHHTY,152264
|
|
474
|
+
lib/libmomentum_io_common.a,sha256=D-m6Oi2qjpqz6qbVzehU4s0vY2hUAzDGl5XgUFMTc5Y,151096
|
|
475
|
+
lib/libmomentum_io_fbx.a,sha256=C-JfE5ZEHwzlsltrgnR-Zyv9GmieE5_kPe4gODIz2xU,879568
|
|
476
|
+
lib/libmomentum_io_gltf.a,sha256=lJi07x63t7Uav48G5Et9qKI3BRpGos5pL45kw2PEjKk,3072616
|
|
477
|
+
lib/libmomentum_io_legacy_json.a,sha256=TXHg2bhLidq-DFf8o4c3SxVmqSIEejVE3vjInrx7oNY,503832
|
|
478
|
+
lib/libmomentum_io_marker.a,sha256=17PorcaXqif15lbDyEBs5VZpHQxzDbstVfrOiPr4120,1423080
|
|
479
|
+
lib/libmomentum_io_motion.a,sha256=7LjJyugeWNp1W6GGwi073e2aIQf9PFFCLBfzp3XqDzM,484584
|
|
480
|
+
lib/libmomentum_io_shape.a,sha256=EUHHFBuJJlpgVQwPMApXqxQOYy0w82_443mJm-KR4iU,170584
|
|
481
|
+
lib/libmomentum_io_skeleton.a,sha256=pYFoh9eedtS8cDMiny4oRf994IRSW65p2dhuWkzToUw,1419656
|
|
482
|
+
lib/libmomentum_io_urdf.a,sha256=fYUg79EJt2n0OBab7xSigEB8AB6duACJu5hgVP8EghY,274680
|
|
483
|
+
lib/libmomentum_marker_tracker.a,sha256=X18tLRXJrdGD0__kKvHFY5B2ZlPaFBW49aBo9eEzLYI,1224624
|
|
484
|
+
lib/libmomentum_math.a,sha256=ZirBVCjVz5M08SgZPjGeNBS79mnI9BzcqL8PTuriKc4,1252112
|
|
485
|
+
lib/libmomentum_online_qr.a,sha256=_jxpE4b8w4pJPi6XpFmT2ex1pNDRgVX0JU16w8RPP8k,167424
|
|
486
|
+
lib/libmomentum_process_markers.a,sha256=vCU3dZkEyTemKikECRnfMPd2r-Mc13MtJ2PpOeaiI-k,613624
|
|
487
|
+
lib/libmomentum_rerun.a,sha256=J2DJ-Gu3ds-IhXwWDUu9DYruA6kuknfMY9wIJVwtkQw,747960
|
|
488
|
+
lib/libmomentum_simd_constraints.a,sha256=fENz-ou-2GgCPy8-MRi9OceovXfz-NInf6eW-OXsiRw,381080
|
|
489
|
+
lib/libmomentum_simd_generalized_loss.a,sha256=KtOjGYqeE396G-d_UbFLCSLseHRe7ufrDFzkUF-KhMM,459792
|
|
490
|
+
lib/libmomentum_skeleton.a,sha256=D754AITh1nhRedsHifSLPDuloTJhnvNBSjugRz8l8eM,553184
|
|
491
|
+
lib/libmomentum_solver.a,sha256=zGLEmuS1mfEKG4lbK-gvdJXGdMcfIrU-5o7FufZvMIw,1096216
|
|
492
492
|
lib/librerun_c__macos_arm64.a,sha256=a3Gvax7JYoksntKvckNzSDkb4udPz8oFZlxbObAaU-M,82639440
|
|
493
|
-
lib/librerun_sdk.a,sha256=
|
|
493
|
+
lib/librerun_sdk.a,sha256=4npqmN_zdP12FGRzAOsMwGrm0o6qx99ONQOgbjChSCM,3265352
|
|
494
494
|
pymomentum/axel.cpython-312-darwin.so,sha256=BmRt-vFdapJtOPDzFA8aHBWxWsC7ZVJMxevRMmFCb-A,668416
|
|
495
495
|
pymomentum/backend/__init__.py,sha256=6tzrxIJl9w1eM-gqf7YwTZ33WkJ6lnq9h4-TsTuOtuc,476
|
|
496
496
|
pymomentum/backend/skel_state_backend.py,sha256=tsd2iqtkbyvC7kmvZcApKGu16QbkZuEq2_ysWv6p89Y,25883
|
|
497
497
|
pymomentum/backend/trs_backend.py,sha256=iJLf4wvHcpZncR3mYs9FG48KvXcuuUPdAwwBpPXEK8Q,31076
|
|
498
498
|
pymomentum/backend/utils.py,sha256=YdxBRmgzJYnFY11-YCS0dYlBpw8-9qBcOUghIbvbmM8,8321
|
|
499
|
-
pymomentum/geometry.cpython-312-darwin.so,sha256=
|
|
499
|
+
pymomentum/geometry.cpython-312-darwin.so,sha256=1WvgU8jxXuvGlYpHp94_QHiYBshV2oa-S4C45q-WosM,4569200
|
|
500
500
|
pymomentum/marker_tracking.cpython-312-darwin.so,sha256=rP_b2nEwtsDwEkJaBnvb2k0QfFRLiJ7CL1-Ds365ISg,3551008
|
|
501
501
|
pymomentum/quaternion.py,sha256=-TB1iUxcAVjntIJZW2xS8Mc2uWBUZW_M4sj-CaoMvPY,26956
|
|
502
502
|
pymomentum/skel_state.py,sha256=K2WTFxudHsxR3LuE3ZT5_zzvgjEbrD5KWpWEQXOzUGY,17769
|
|
503
|
-
pymomentum/solver.cpython-312-darwin.so,sha256=
|
|
504
|
-
pymomentum/solver2.cpython-312-darwin.so,sha256=
|
|
503
|
+
pymomentum/solver.cpython-312-darwin.so,sha256=Wo9greichsYxLqxs1upJf7zHj42z-hNwX3EsDIgfDcM,4777232
|
|
504
|
+
pymomentum/solver2.cpython-312-darwin.so,sha256=iFARZxiX2gtd2_i3Wfpw7ni5jlW207tl87GXpm3NGXY,3354432
|
|
505
505
|
pymomentum/torch/character.py,sha256=y_Ov7tkTobKdmNP1b2oNwFpPuVBUj8sRCJ7G2J5jh-s,31550
|
|
506
506
|
pymomentum/torch/parameter_limits.py,sha256=Db89tUaJbsOjbOFqhJPFPbMPZDtErAf65ssZvxJ959c,19762
|
|
507
507
|
pymomentum/torch/utility.py,sha256=_FsIVlhcQusSz_6aVLPKpRRHgSjIwmd0uCWxNVKqRtY,608
|
|
508
508
|
pymomentum/trs.py,sha256=jwvOR2DDMpAqOE9zFh0TJnigsDpfRi2guUfayQklVqk,17624
|
|
509
|
-
pymomentum_cpu-0.1.
|
|
510
|
-
pymomentum_cpu-0.1.
|
|
511
|
-
pymomentum_cpu-0.1.
|
|
512
|
-
pymomentum_cpu-0.1.
|
|
509
|
+
pymomentum_cpu-0.1.79.post5.dist-info/METADATA,sha256=25iTiXdVyNiK0fx7ANIVPh9Hml_d4-MFFmxybSRdSMg,5803
|
|
510
|
+
pymomentum_cpu-0.1.79.post5.dist-info/WHEEL,sha256=TDJYv5mIvWNDaEqvow072Ll_2W7uJV5efdXX7U1PsVw,114
|
|
511
|
+
pymomentum_cpu-0.1.79.post5.dist-info/licenses/LICENSE,sha256=2m03A-0Ry-Qr0hLHJZV8mNojy_8ZmMBfpLPZdtGljpM,1088
|
|
512
|
+
pymomentum_cpu-0.1.79.post5.dist-info/RECORD,,
|
|
File without changes
|
{pymomentum_cpu-0.1.78.post29.dist-info → pymomentum_cpu-0.1.79.post5.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|