luminarycloud 0.21.0__py3-none-any.whl → 0.21.2__py3-none-any.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.
- luminarycloud/_client/http_client.py +10 -8
- luminarycloud/_helpers/_upload_mesh.py +1 -0
- luminarycloud/_helpers/download.py +3 -1
- luminarycloud/_helpers/upload.py +15 -6
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +124 -124
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +8 -1
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +11 -11
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +9 -2
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +33 -20
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +21 -1
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +16 -16
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +7 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +55 -55
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +4 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +28 -26
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +7 -1
- luminarycloud/_proto/assistant/assistant_pb2.py +47 -34
- luminarycloud/_proto/assistant/assistant_pb2.pyi +21 -1
- luminarycloud/_proto/base/base_pb2.py +17 -7
- luminarycloud/_proto/base/base_pb2.pyi +26 -0
- luminarycloud/_proto/cad/transformation_pb2.py +60 -16
- luminarycloud/_proto/cad/transformation_pb2.pyi +138 -32
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +20 -18
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +7 -2
- luminarycloud/_proto/quantity/quantity_options_pb2.py +6 -6
- luminarycloud/_proto/quantity/quantity_options_pb2.pyi +10 -1
- luminarycloud/_proto/quantity/quantity_pb2.py +166 -166
- luminarycloud/_proto/quantity/quantity_pb2.pyi +1 -1
- luminarycloud/enum/gpu_type.py +2 -0
- luminarycloud/feature_modification.py +13 -34
- luminarycloud/physics_ai/solution.py +3 -1
- luminarycloud/pipelines/__init__.py +3 -3
- luminarycloud/pipelines/api.py +81 -0
- luminarycloud/pipelines/core.py +103 -96
- luminarycloud/pipelines/{operators.py → stages.py} +28 -28
- luminarycloud/project.py +10 -1
- luminarycloud/types/matrix3.py +12 -0
- luminarycloud/volume_selection.py +18 -60
- {luminarycloud-0.21.0.dist-info → luminarycloud-0.21.2.dist-info}/METADATA +1 -1
- {luminarycloud-0.21.0.dist-info → luminarycloud-0.21.2.dist-info}/RECORD +41 -41
- {luminarycloud-0.21.0.dist-info → luminarycloud-0.21.2.dist-info}/WHEEL +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Copyright 2025 Luminary Cloud, Inc. All Rights Reserved.
|
|
2
2
|
from dataclasses import dataclass
|
|
3
3
|
|
|
4
|
-
from .core import
|
|
4
|
+
from .core import Stage, StageInputs, StageOutputs, PipelineOutput
|
|
5
5
|
from .parameters import StringPipelineParameter, IntPipelineParameter
|
|
6
6
|
from ..meshing import MeshGenerationParams
|
|
7
7
|
|
|
@@ -27,11 +27,11 @@ class PipelineOutputSimulation(PipelineOutput):
|
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
#
|
|
30
|
+
# Stages
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
@dataclass
|
|
34
|
-
class ReadGeometryOutputs(
|
|
34
|
+
class ReadGeometryOutputs(StageOutputs):
|
|
35
35
|
geometry: PipelineOutputGeometry
|
|
36
36
|
"""
|
|
37
37
|
The Geometry identified by the given `geometry_id`, in the state it was in when the Pipeline was
|
|
@@ -39,7 +39,7 @@ class ReadGeometryOutputs(OperatorOutputs):
|
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
class ReadGeometry(
|
|
42
|
+
class ReadGeometry(Stage[ReadGeometryOutputs]):
|
|
43
43
|
"""
|
|
44
44
|
Reads a Geometry into the Pipeline.
|
|
45
45
|
|
|
@@ -59,26 +59,26 @@ class ReadGeometry(Operator[ReadGeometryOutputs]):
|
|
|
59
59
|
def __init__(
|
|
60
60
|
self,
|
|
61
61
|
*,
|
|
62
|
-
|
|
62
|
+
stage_name: str | None = None,
|
|
63
63
|
geometry_id: str | StringPipelineParameter,
|
|
64
64
|
):
|
|
65
65
|
super().__init__(
|
|
66
|
-
|
|
66
|
+
stage_name,
|
|
67
67
|
{"geometry_id": geometry_id},
|
|
68
|
-
|
|
68
|
+
StageInputs(self),
|
|
69
69
|
ReadGeometryOutputs._instantiate_for(self),
|
|
70
70
|
)
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
@dataclass
|
|
74
|
-
class ReadMeshOutputs(
|
|
74
|
+
class ReadMeshOutputs(StageOutputs):
|
|
75
75
|
mesh: PipelineOutputMesh
|
|
76
76
|
"""
|
|
77
77
|
The Mesh read from the given `mesh_id`.
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
class ReadMesh(
|
|
81
|
+
class ReadMesh(Stage[ReadMeshOutputs]):
|
|
82
82
|
"""
|
|
83
83
|
Reads a Mesh into the Pipeline.
|
|
84
84
|
|
|
@@ -101,28 +101,28 @@ class ReadMesh(Operator[ReadMeshOutputs]):
|
|
|
101
101
|
def __init__(
|
|
102
102
|
self,
|
|
103
103
|
*,
|
|
104
|
-
|
|
104
|
+
stage_name: str | None = None,
|
|
105
105
|
mesh_id: str | StringPipelineParameter,
|
|
106
106
|
wait_timeout_seconds: int | IntPipelineParameter | None = None,
|
|
107
107
|
):
|
|
108
108
|
if wait_timeout_seconds is None:
|
|
109
109
|
wait_timeout_seconds = 30 * 60
|
|
110
110
|
super().__init__(
|
|
111
|
-
|
|
111
|
+
stage_name,
|
|
112
112
|
{"mesh_id": mesh_id, "wait_timeout_seconds": wait_timeout_seconds},
|
|
113
|
-
|
|
113
|
+
StageInputs(self),
|
|
114
114
|
ReadMeshOutputs._instantiate_for(self),
|
|
115
115
|
)
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
@dataclass
|
|
119
|
-
class ModifyGeometryOutputs(
|
|
119
|
+
class ModifyGeometryOutputs(StageOutputs):
|
|
120
120
|
geometry: PipelineOutputGeometry
|
|
121
121
|
"""The modified Geometry, represented as a new GeometryVersion."""
|
|
122
122
|
|
|
123
123
|
|
|
124
124
|
# TODO: figure out what `mods` actually is. What does the non-pipeline geo mod interface look like?
|
|
125
|
-
class ModifyGeometry(
|
|
125
|
+
class ModifyGeometry(Stage[ModifyGeometryOutputs]):
|
|
126
126
|
"""
|
|
127
127
|
Modifies a Geometry.
|
|
128
128
|
|
|
@@ -144,26 +144,26 @@ class ModifyGeometry(Operator[ModifyGeometryOutputs]):
|
|
|
144
144
|
def __init__(
|
|
145
145
|
self,
|
|
146
146
|
*,
|
|
147
|
-
|
|
147
|
+
stage_name: str | None = None,
|
|
148
148
|
mods: list[dict],
|
|
149
149
|
geometry: PipelineOutputGeometry,
|
|
150
150
|
):
|
|
151
151
|
raise NotImplementedError("ModifyGeometry is not implemented yet.")
|
|
152
152
|
super().__init__(
|
|
153
|
-
|
|
153
|
+
stage_name,
|
|
154
154
|
{"mods": mods},
|
|
155
|
-
|
|
155
|
+
StageInputs(self, geometry=(PipelineOutputGeometry, geometry)),
|
|
156
156
|
ModifyGeometryOutputs._instantiate_for(self),
|
|
157
157
|
)
|
|
158
158
|
|
|
159
159
|
|
|
160
160
|
@dataclass
|
|
161
|
-
class MeshOutputs(
|
|
161
|
+
class MeshOutputs(StageOutputs):
|
|
162
162
|
mesh: PipelineOutputMesh
|
|
163
163
|
"""The Mesh generated from the given Geometry."""
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
class Mesh(
|
|
166
|
+
class Mesh(Stage[MeshOutputs]):
|
|
167
167
|
"""
|
|
168
168
|
Generates a Mesh from a Geometry.
|
|
169
169
|
|
|
@@ -187,18 +187,18 @@ class Mesh(Operator[MeshOutputs]):
|
|
|
187
187
|
def __init__(
|
|
188
188
|
self,
|
|
189
189
|
*,
|
|
190
|
-
|
|
190
|
+
stage_name: str | None = None,
|
|
191
191
|
geometry: PipelineOutputGeometry,
|
|
192
192
|
mesh_name: str | StringPipelineParameter | None = None,
|
|
193
|
-
target_cv_count: int | None,
|
|
193
|
+
target_cv_count: int | IntPipelineParameter | None = None,
|
|
194
194
|
):
|
|
195
195
|
super().__init__(
|
|
196
|
-
|
|
196
|
+
stage_name,
|
|
197
197
|
{
|
|
198
198
|
"mesh_name": mesh_name,
|
|
199
199
|
"target_cv_count": target_cv_count,
|
|
200
200
|
},
|
|
201
|
-
|
|
201
|
+
StageInputs(self, geometry=(PipelineOutputGeometry, geometry)),
|
|
202
202
|
MeshOutputs._instantiate_for(self),
|
|
203
203
|
)
|
|
204
204
|
|
|
@@ -211,12 +211,12 @@ class Mesh(Operator[MeshOutputs]):
|
|
|
211
211
|
|
|
212
212
|
|
|
213
213
|
@dataclass
|
|
214
|
-
class SimulateOutputs(
|
|
214
|
+
class SimulateOutputs(StageOutputs):
|
|
215
215
|
simulation: PipelineOutputSimulation
|
|
216
216
|
"""The Simulation."""
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class Simulate(
|
|
219
|
+
class Simulate(Stage[SimulateOutputs]):
|
|
220
220
|
"""
|
|
221
221
|
Runs a Simulation.
|
|
222
222
|
|
|
@@ -240,17 +240,17 @@ class Simulate(Operator[SimulateOutputs]):
|
|
|
240
240
|
def __init__(
|
|
241
241
|
self,
|
|
242
242
|
*,
|
|
243
|
-
|
|
243
|
+
stage_name: str | None = None,
|
|
244
244
|
mesh: PipelineOutputMesh,
|
|
245
245
|
sim_name: str | StringPipelineParameter | None = None,
|
|
246
246
|
sim_template_id: str | StringPipelineParameter,
|
|
247
247
|
):
|
|
248
248
|
super().__init__(
|
|
249
|
-
|
|
249
|
+
stage_name,
|
|
250
250
|
{
|
|
251
251
|
"sim_name": sim_name,
|
|
252
252
|
"sim_template_id": sim_template_id,
|
|
253
253
|
},
|
|
254
|
-
|
|
254
|
+
StageInputs(self, mesh=(PipelineOutputMesh, mesh)),
|
|
255
255
|
SimulateOutputs._instantiate_for(self),
|
|
256
256
|
)
|
luminarycloud/project.py
CHANGED
|
@@ -325,6 +325,8 @@ class Project(ProtoWrapperBase):
|
|
|
325
325
|
names_to_file_paths: Dict[str, Union[PathLike[Any], str]],
|
|
326
326
|
params: hexmeshpb.HexMeshSpec,
|
|
327
327
|
use_internal_wrap: bool = False,
|
|
328
|
+
request_id: Optional[str] = None,
|
|
329
|
+
n_vcpus: Optional[int] = None,
|
|
328
330
|
) -> "Mesh":
|
|
329
331
|
"""
|
|
330
332
|
Creates a hex mesh. Only for internal use.
|
|
@@ -362,7 +364,14 @@ class Project(ProtoWrapperBase):
|
|
|
362
364
|
|
|
363
365
|
params.use_wrap = use_internal_wrap
|
|
364
366
|
|
|
365
|
-
|
|
367
|
+
if request_id is None:
|
|
368
|
+
request_id = str(uuid.uuid4())
|
|
369
|
+
req = meshpb.CreateHexMeshRequest(
|
|
370
|
+
project_id=self.id,
|
|
371
|
+
hex_mesh_config=params,
|
|
372
|
+
request_id=request_id,
|
|
373
|
+
n_vcpus=n_vcpus,
|
|
374
|
+
)
|
|
366
375
|
|
|
367
376
|
res: meshpb.CreateHexMeshResponse = client.CreateHexMesh(req)
|
|
368
377
|
get_mesh_res = client.GetMesh(meshpb.GetMeshRequest(id=res.mesh_id))
|
luminarycloud/types/matrix3.py
CHANGED
|
@@ -20,7 +20,19 @@ class Matrix3:
|
|
|
20
20
|
c=basepb.Vector3(x=self.c.x, y=self.c.y, z=self.c.z),
|
|
21
21
|
)
|
|
22
22
|
|
|
23
|
+
def _to_ad_proto(self) -> basepb.AdMatrix3:
|
|
24
|
+
return basepb.AdMatrix3(
|
|
25
|
+
a=self.a._to_ad_proto(),
|
|
26
|
+
b=self.b._to_ad_proto(),
|
|
27
|
+
c=self.c._to_ad_proto(),
|
|
28
|
+
)
|
|
29
|
+
|
|
23
30
|
def _from_proto(self, proto: basepb.Matrix3) -> None:
|
|
24
31
|
self.a = Vector3(x=proto.a.x, y=proto.a.y, z=proto.a.z)
|
|
25
32
|
self.b = Vector3(x=proto.b.x, y=proto.b.y, z=proto.b.z)
|
|
26
33
|
self.c = Vector3(x=proto.c.x, y=proto.c.y, z=proto.c.z)
|
|
34
|
+
|
|
35
|
+
def _from_ad_proto(self, proto: basepb.AdMatrix3) -> None:
|
|
36
|
+
self.a = Vector3.from_ad_proto(proto.a)
|
|
37
|
+
self.b = Vector3.from_ad_proto(proto.b)
|
|
38
|
+
self.c = Vector3.from_ad_proto(proto.c)
|
|
@@ -30,7 +30,7 @@ from .params.geometry import (
|
|
|
30
30
|
Volume,
|
|
31
31
|
)
|
|
32
32
|
from .types import Matrix3, Vector3, Vector3Like
|
|
33
|
-
from .types.vector3 import _to_vector3
|
|
33
|
+
from .types.vector3 import _to_vector3, _to_vector3_ad_proto
|
|
34
34
|
|
|
35
35
|
if TYPE_CHECKING:
|
|
36
36
|
from .geometry import Geometry
|
|
@@ -310,18 +310,13 @@ class VolumeSelection:
|
|
|
310
310
|
feature_name : str
|
|
311
311
|
The name of the feature.
|
|
312
312
|
"""
|
|
313
|
-
displacement = _to_vector3(displacement)
|
|
314
313
|
self.__create_feature(
|
|
315
314
|
gpb.Feature(
|
|
316
315
|
feature_name=feature_name,
|
|
317
316
|
transform=gpb.Transform(
|
|
318
317
|
body=self.__volume_ids,
|
|
319
318
|
translation=transformationpb.Translation(
|
|
320
|
-
vector=
|
|
321
|
-
x=displacement.x,
|
|
322
|
-
y=displacement.y,
|
|
323
|
-
z=displacement.z,
|
|
324
|
-
),
|
|
319
|
+
vector=_to_vector3_ad_proto(displacement),
|
|
325
320
|
),
|
|
326
321
|
keep=keep,
|
|
327
322
|
),
|
|
@@ -353,26 +348,16 @@ class VolumeSelection:
|
|
|
353
348
|
feature_name : str
|
|
354
349
|
The name of the feature.
|
|
355
350
|
"""
|
|
356
|
-
axis = _to_vector3(axis)
|
|
357
|
-
origin = _to_vector3(origin)
|
|
358
351
|
self.__create_feature(
|
|
359
352
|
gpb.Feature(
|
|
360
353
|
feature_name=feature_name,
|
|
361
354
|
transform=gpb.Transform(
|
|
362
355
|
body=self.__volume_ids,
|
|
363
356
|
rotation=transformationpb.Rotation(
|
|
364
|
-
angle=angle,
|
|
365
|
-
arbitrary=transformationpb.
|
|
366
|
-
origin=
|
|
367
|
-
|
|
368
|
-
y=origin.y,
|
|
369
|
-
z=origin.z,
|
|
370
|
-
),
|
|
371
|
-
direction=basepb.Vector3(
|
|
372
|
-
x=axis.x,
|
|
373
|
-
y=axis.y,
|
|
374
|
-
z=axis.z,
|
|
375
|
-
),
|
|
357
|
+
angle=_to_ad_proto(angle),
|
|
358
|
+
arbitrary=transformationpb.AnchoredAdVector3(
|
|
359
|
+
origin=_to_vector3_ad_proto(origin),
|
|
360
|
+
direction=_to_vector3_ad_proto(axis),
|
|
376
361
|
),
|
|
377
362
|
),
|
|
378
363
|
keep=keep,
|
|
@@ -402,19 +387,14 @@ class VolumeSelection:
|
|
|
402
387
|
feature_name : str
|
|
403
388
|
The name of the feature.
|
|
404
389
|
"""
|
|
405
|
-
origin = _to_vector3(origin)
|
|
406
390
|
self.__create_feature(
|
|
407
391
|
gpb.Feature(
|
|
408
392
|
feature_name=feature_name,
|
|
409
393
|
transform=gpb.Transform(
|
|
410
394
|
body=self.__volume_ids,
|
|
411
395
|
scaling=transformationpb.Scaling(
|
|
412
|
-
isotropic=factor,
|
|
413
|
-
arbitrary=
|
|
414
|
-
x=origin.x,
|
|
415
|
-
y=origin.y,
|
|
416
|
-
z=origin.z,
|
|
417
|
-
),
|
|
396
|
+
isotropic=_to_ad_proto(factor),
|
|
397
|
+
arbitrary=_to_vector3_ad_proto(origin),
|
|
418
398
|
),
|
|
419
399
|
keep=keep,
|
|
420
400
|
),
|
|
@@ -443,17 +423,15 @@ class VolumeSelection:
|
|
|
443
423
|
feature_name : str
|
|
444
424
|
The name of the feature.
|
|
445
425
|
"""
|
|
446
|
-
o = _to_vector3(origin)
|
|
447
|
-
n = _to_vector3(normal)
|
|
448
426
|
self.__create_feature(
|
|
449
427
|
gpb.Feature(
|
|
450
428
|
feature_name=feature_name,
|
|
451
429
|
transform=gpb.Transform(
|
|
452
430
|
body=self.__volume_ids,
|
|
453
431
|
reflection=transformationpb.Reflection(
|
|
454
|
-
arbitrary=transformationpb.
|
|
455
|
-
origin=
|
|
456
|
-
direction=
|
|
432
|
+
arbitrary=transformationpb.AnchoredAdVector3(
|
|
433
|
+
origin=_to_vector3_ad_proto(origin),
|
|
434
|
+
direction=_to_vector3_ad_proto(normal),
|
|
457
435
|
)
|
|
458
436
|
),
|
|
459
437
|
keep=keep,
|
|
@@ -483,19 +461,14 @@ class VolumeSelection:
|
|
|
483
461
|
feature_name : str
|
|
484
462
|
The name of the feature.
|
|
485
463
|
"""
|
|
486
|
-
translation = _to_vector3(translation)
|
|
487
464
|
self.__create_feature(
|
|
488
465
|
gpb.Feature(
|
|
489
466
|
feature_name=feature_name,
|
|
490
467
|
transform=gpb.Transform(
|
|
491
468
|
body=self.__volume_ids,
|
|
492
469
|
matrix=transformationpb.AugmentedMatrix(
|
|
493
|
-
affine=transform.
|
|
494
|
-
translation=
|
|
495
|
-
x=translation.x,
|
|
496
|
-
y=translation.y,
|
|
497
|
-
z=translation.z,
|
|
498
|
-
),
|
|
470
|
+
affine=transform._to_ad_proto(),
|
|
471
|
+
translation=_to_vector3_ad_proto(translation),
|
|
499
472
|
),
|
|
500
473
|
keep=keep,
|
|
501
474
|
),
|
|
@@ -575,7 +548,6 @@ class VolumeSelection:
|
|
|
575
548
|
feature_name : str
|
|
576
549
|
The name of the feature.
|
|
577
550
|
"""
|
|
578
|
-
vector = _to_vector3(vector)
|
|
579
551
|
self.__create_feature(
|
|
580
552
|
gpb.Feature(
|
|
581
553
|
feature_name=feature_name,
|
|
@@ -583,11 +555,7 @@ class VolumeSelection:
|
|
|
583
555
|
body=self.__volume_ids,
|
|
584
556
|
direction=gpb.Pattern.Direction(
|
|
585
557
|
linear_spacing=transformationpb.Translation(
|
|
586
|
-
vector=
|
|
587
|
-
x=vector.x,
|
|
588
|
-
y=vector.y,
|
|
589
|
-
z=vector.z,
|
|
590
|
-
),
|
|
558
|
+
vector=_to_vector3_ad_proto(vector),
|
|
591
559
|
),
|
|
592
560
|
quantity=quantity,
|
|
593
561
|
),
|
|
@@ -650,8 +618,6 @@ class VolumeSelection:
|
|
|
650
618
|
feature_name : str
|
|
651
619
|
The name of the feature.
|
|
652
620
|
"""
|
|
653
|
-
axis = _to_vector3(axis)
|
|
654
|
-
origin = _to_vector3(origin)
|
|
655
621
|
self.__create_feature(
|
|
656
622
|
gpb.Feature(
|
|
657
623
|
feature_name=feature_name,
|
|
@@ -660,18 +626,10 @@ class VolumeSelection:
|
|
|
660
626
|
direction=gpb.Pattern.Direction(
|
|
661
627
|
circular_distribution=gpb.Pattern.Direction.Circular(
|
|
662
628
|
rotation=transformationpb.Rotation(
|
|
663
|
-
angle=angle,
|
|
664
|
-
arbitrary=transformationpb.
|
|
665
|
-
origin=
|
|
666
|
-
|
|
667
|
-
y=origin.y,
|
|
668
|
-
z=origin.z,
|
|
669
|
-
),
|
|
670
|
-
direction=basepb.Vector3(
|
|
671
|
-
x=axis.x,
|
|
672
|
-
y=axis.y,
|
|
673
|
-
z=axis.z,
|
|
674
|
-
),
|
|
629
|
+
angle=_to_ad_proto(angle),
|
|
630
|
+
arbitrary=transformationpb.AnchoredAdVector3(
|
|
631
|
+
origin=_to_vector3_ad_proto(origin),
|
|
632
|
+
direction=_to_vector3_ad_proto(axis),
|
|
675
633
|
),
|
|
676
634
|
),
|
|
677
635
|
full=(angle == 360.0), # set to true if angle is exactly 360
|
|
@@ -3,12 +3,12 @@ luminarycloud/_patch.py,sha256=5m2_HUos6-NGPvrz-bOlVr5FsyJNJlCkmytyYJkj6Bc,1661
|
|
|
3
3
|
luminarycloud/_version.py,sha256=lOdK2s5vnq1K8KND-J-wO2A2MuUTouiYRhJwRwb6mcA,178
|
|
4
4
|
luminarycloud/_wrapper.py,sha256=PwTyxIVoYCF2z5arlV5UEgNfFDduxGE1KC2NaOpasWU,7796
|
|
5
5
|
luminarycloud/exceptions.py,sha256=VVGtKREb8XcWea6TySVYh7dhGQpowafdhiTst1uN4EQ,1900
|
|
6
|
-
luminarycloud/feature_modification.py,sha256=
|
|
6
|
+
luminarycloud/feature_modification.py,sha256=mmUzTh-okwFmT6eYF1hLBXFLBlgRP3NfF6XkbLwWS1k,29790
|
|
7
7
|
luminarycloud/geometry.py,sha256=06XNlT6NmbKOcmnenE19VnJOxbPgX2I8L11_EJBDyQA,22560
|
|
8
8
|
luminarycloud/geometry_version.py,sha256=Ka0vCNidoRynXLKd90yJav5tGQr-LMNUVb4DJBRAKrw,8001
|
|
9
9
|
luminarycloud/mesh.py,sha256=6O4fTg8gWYLTrBsf0-MH6c7HL72iZbPUfGGk_II9PR4,4782
|
|
10
10
|
luminarycloud/named_variable_set.py,sha256=RsfGJDoZFajbJ2a2fWc-ZHRsZts5U7ZY6rIXSjXL7bY,4568
|
|
11
|
-
luminarycloud/project.py,sha256=
|
|
11
|
+
luminarycloud/project.py,sha256=M0XNYX5co_mGUoOwGBq2-YxKzbDjDbQTAOMHuVt664E,31254
|
|
12
12
|
luminarycloud/reference_values.py,sha256=vWIX1VXMctspeQIjNtjmZdex55K0jHf1xz5gsGeMCfo,4357
|
|
13
13
|
luminarycloud/simulation.py,sha256=6zkxrj9cBA88r--1ljl--nOzRmgrMUcQEsXIS-zjYBc,13610
|
|
14
14
|
luminarycloud/simulation_param.py,sha256=j_RIrP1j0ezbXA2MTLFpuFnXtaOHeGMwP_yocGn-a4Y,16269
|
|
@@ -17,7 +17,7 @@ luminarycloud/simulation_template.py,sha256=ZsvgsUjW2nAJQ_JnZCsVdaRoogjpBIRNwhdX
|
|
|
17
17
|
luminarycloud/solution.py,sha256=xS04WDjoPenJaBxx9xm7t8A4YrNIcq_oQfl4WJ8gAic,6770
|
|
18
18
|
luminarycloud/tables.py,sha256=i6KMjthjRbks4Vxv6Eu6VLulRC9U8fhkzwknR2Ax3Nc,6922
|
|
19
19
|
luminarycloud/tag.py,sha256=aC1xnHFVOEk7V6tp16b0wdwuGAJoqq7u3tzuYwbkkY0,1384
|
|
20
|
-
luminarycloud/volume_selection.py,sha256=
|
|
20
|
+
luminarycloud/volume_selection.py,sha256=SZuGOMskPDuurH8HeEz7TIbuOUr_tLIjEstrvBL2m-M,23597
|
|
21
21
|
luminarycloud/_auth/__init__.py,sha256=nfdTjXQONhMBVOWOGAglb1cP-4kaABJ6HxrGIW-hj6U,89
|
|
22
22
|
luminarycloud/_auth/auth.py,sha256=ytDmlAOqj34LiaHElxUo3r4hTFu07F2wEIOGR4mdlXs,11118
|
|
23
23
|
luminarycloud/_auth/callback_listener.py,sha256=A14Qur9_XJHi-dW6a8ENmpC5ifrBP03frm6vaODcpHU,4163
|
|
@@ -29,7 +29,7 @@ luminarycloud/_client/__init__.py,sha256=q-q1lnJE9EirX5p_O15FnanUoSYdEOD5zP1XrUe
|
|
|
29
29
|
luminarycloud/_client/authentication_plugin.py,sha256=eJXs0b8pYih12fBU1vgJ8gGpAdtjfbqCuxSprjR-p9E,1351
|
|
30
30
|
luminarycloud/_client/client.py,sha256=KiugyhRBcWIQY61bS22HjTz0-beRdBms3NGkgC36388,11307
|
|
31
31
|
luminarycloud/_client/config.py,sha256=o_HJsmPOLaeorYToR9_wzNhJYRoFnmeqcxCRAoUAqZk,236
|
|
32
|
-
luminarycloud/_client/http_client.py,sha256=
|
|
32
|
+
luminarycloud/_client/http_client.py,sha256=d_Yqxa6BMoq44ikF5uWVERucIhCQ9ISH7WmsqMSNFbM,6702
|
|
33
33
|
luminarycloud/_client/logging_interceptor.py,sha256=I7xJzTQoV5O_Ioi7OjWXI2mQWxdpbagu7QnzbJSFcHg,2593
|
|
34
34
|
luminarycloud/_client/retry_interceptor.py,sha256=EnswA3e7v8je2AqNCIcOoBVd1yKg6gLn_3nuUtwW8Mo,2908
|
|
35
35
|
luminarycloud/_client/rpc_error.py,sha256=SgOYyLs5YYAuODFfyHMgJeJ3j2R7SJ8lUiqywvNRTfg,1250
|
|
@@ -42,33 +42,33 @@ luminarycloud/_helpers/_entity_identifier.py,sha256=Elb9gD5NFVxUxngiikGuNvNZ5YfS
|
|
|
42
42
|
luminarycloud/_helpers/_get_project_id.py,sha256=OC0JI0gEXd_j8frss5AsjdzMX9C0mV3lAJdmB_cRmgw,885
|
|
43
43
|
luminarycloud/_helpers/_simulation_params_from_json.py,sha256=Iq7S8XUqh3Y-6cZ2rvekJJxM3C-o8eFqTkBJpwdlHvU,726
|
|
44
44
|
luminarycloud/_helpers/_timestamp_to_datetime.py,sha256=Vh2-e7MRrxG8z7CMA-DRIIAhqGSUGYuIhW9csoh9pBw,299
|
|
45
|
-
luminarycloud/_helpers/_upload_mesh.py,sha256=
|
|
45
|
+
luminarycloud/_helpers/_upload_mesh.py,sha256=b-QFxr0z-z02XUOXyPad8QEutcYM-PZyxhdvIaJKwcg,11978
|
|
46
46
|
luminarycloud/_helpers/_upload_table.py,sha256=B7Svu97Dr6UYt8pubD99kGvXkR0oKUtKSi3Ppj_qUMI,2211
|
|
47
47
|
luminarycloud/_helpers/_wait_for_mesh.py,sha256=p7Zp6ulifpZDAfRcN0kOPVjOU2e9oWutSrPIbMcsreg,1871
|
|
48
48
|
luminarycloud/_helpers/_wait_for_simulation.py,sha256=DusHJLmLi7NvLu3K7cfrb2ZSbPBrySK8t7TLS22oTms,3520
|
|
49
49
|
luminarycloud/_helpers/cond.py,sha256=BZ0MDBxy2lvcVQyaj0x_qLqJFlsu-X_n9r_Gw1Ppk-c,16752
|
|
50
50
|
luminarycloud/_helpers/defaults.py,sha256=jj6J3F2cjqO1CR5_F4ICxr44hTLC1GypD9Q4YQJRw68,1550
|
|
51
|
-
luminarycloud/_helpers/download.py,sha256=
|
|
51
|
+
luminarycloud/_helpers/download.py,sha256=10S2hHha6Bo5AUWvpqm9jsoKjkeX9KzRLUM0ibDaBy8,9605
|
|
52
52
|
luminarycloud/_helpers/file_chunk_stream.py,sha256=Z5dfuGWZMZ3JDhZH9jgxSqgkFu_e8g57epUBOT3lKpY,2371
|
|
53
53
|
luminarycloud/_helpers/named_variables.py,sha256=GLjBEQxf0SwfzLemY6_hnNbReD2gTcX0N9Hfvrk3-xc,481
|
|
54
54
|
luminarycloud/_helpers/pagination.py,sha256=MYBuFvxYWe4U2QQ9UyZt-TvTTo69Qv2bXREiD6f5i5E,2076
|
|
55
55
|
luminarycloud/_helpers/proto_decorator.py,sha256=Jrls0V2epTjH1P1ezwAsn24_I2e3Lyys87ftivTdqGg,1429
|
|
56
|
-
luminarycloud/_helpers/upload.py,sha256=
|
|
56
|
+
luminarycloud/_helpers/upload.py,sha256=aZ_aqCyiBEdcwtP7nOLLjLLo6XtGDfGcI4te2tx1tx8,4892
|
|
57
57
|
luminarycloud/_helpers/util.py,sha256=GeBb9h10c-hWYkeBIxmK0UNgfbLryiRTE3EXNWhZLxI,3179
|
|
58
58
|
luminarycloud/_helpers/warnings/__init__.py,sha256=I0nW7YIKZnapCdITVFopE60wQ6MfLy38tB4m8kuOVRQ,35
|
|
59
59
|
luminarycloud/_helpers/warnings/deprecated.py,sha256=1SnhBAUqntgxHRMFG4Gzy_yqOMnBcAPN9b9Xxk0eieM,1259
|
|
60
60
|
luminarycloud/_proto/api/v0/luminarycloud/common/common_pb2.py,sha256=KhSuLqqLRCv1rRKP0mwNmneITQsZwLSs2uD23_ehJbQ,4176
|
|
61
61
|
luminarycloud/_proto/api/v0/luminarycloud/common/common_pb2.pyi,sha256=49g0e_2FuSdbmcfkdXRgnB0Refnn9Tzl6M0V-V_IpI4,5674
|
|
62
|
-
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py,sha256=
|
|
63
|
-
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi,sha256=
|
|
62
|
+
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py,sha256=6m8jGaMmtg_GzsisSYwn7xFf8bRDbrb9T7WlJ_4jcw8,63294
|
|
63
|
+
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi,sha256=XbYTsxhca06eldWPMADB56LLCHx0EG1F_z8Q5luGUDI,62959
|
|
64
64
|
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py,sha256=q9oWtzhNfBO0RSp0GuFePvub3g8GsGOsQwXk_3atKDc,54250
|
|
65
65
|
luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi,sha256=nkyGyiDDXbJLP7vmYkB1XfVfhoRaG-xCOgRtz9vXtxw,19465
|
|
66
66
|
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py,sha256=zv2em_XlAGMhNaLcX5l05K2Z0XF5aM0bhWpBHSlA9FE,4339
|
|
67
67
|
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi,sha256=hSLjKIqC0zH8eDklqRaPSTXiWuaOEbqb2cIe5CZxvXY,3432
|
|
68
68
|
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.py,sha256=kPfG5fIgEWRghcAf0UPk_LsRFBS4IDxiZ6JEx4fTsjc,3259
|
|
69
69
|
luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2_grpc.pyi,sha256=w7uRtY0S39MDkOQC75pdGplIzoVxE7EyielgLZpvpvE,1167
|
|
70
|
-
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py,sha256=
|
|
71
|
-
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi,sha256=
|
|
70
|
+
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py,sha256=UFtlhQKabClJiHPyspQdijBrfNpOH8fNRo3Awr-Fjjs,32033
|
|
71
|
+
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi,sha256=syGJA8rzRIC07_BjuGe2WLUaf0_1yi8kEIX9eDeXxq0,41645
|
|
72
72
|
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py,sha256=2ll9eSEvIi8UUlkFdNm1eWW9sOJvMy7Mf4pPFRhOMXo,18087
|
|
73
73
|
luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi,sha256=DzFFXoPnA92xtpdVfgIFDqG4H9DaxdInmxr8lcG-PwU,5946
|
|
74
74
|
luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py,sha256=nL1JlSvz7SMzOsPnkws9lKwP6FtQ9riOgsLihQY_P1g,18398
|
|
@@ -83,20 +83,20 @@ luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.py,sha256=
|
|
|
83
83
|
luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.pyi,sha256=H2K7EGKLHOe5xNunVkFuY4sHN3LTVjZHLlnTwYqFk-A,7654
|
|
84
84
|
luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.py,sha256=lLpk0zvSn4XsvE5JEJVF7V2x2ZAX6rCHTgIzjVN9xU0,11209
|
|
85
85
|
luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.pyi,sha256=N7KiftsEfElduhrGpevNqC7Ri3FGpYsiZ1LQJ4RwDrw,3738
|
|
86
|
-
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py,sha256=
|
|
87
|
-
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi,sha256=
|
|
86
|
+
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py,sha256=vcIN1qKy7Fg1g2aXVSzPTMMkT_aGyUhn70daMMF9A1s,19165
|
|
87
|
+
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi,sha256=y98wRzMoRIg9N7ogKQD7eN6vFcUlRfxFlMFEMDYaOJA,24578
|
|
88
88
|
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py,sha256=WMjycj2H85rdfZ9_JOe1BZhg3k3x9UamYJm5N2LO_5U,9498
|
|
89
89
|
luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi,sha256=xynVc9ide5kxdAwOs9XYL8cQU3BrZaiHLMTKTk5uNPQ,3400
|
|
90
|
-
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py,sha256=
|
|
91
|
-
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi,sha256=
|
|
90
|
+
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py,sha256=QoXaFdrpKDqla7n7sOCKXjxEXlDk2BAS4dvSsyOaPLc,17258
|
|
91
|
+
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi,sha256=XDwB0GdcMqk3jgwzTWH2OtoH6_juPcXHm_4N1g2_DCY,15228
|
|
92
92
|
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.py,sha256=pmYkibMi49G82r9Dh4f83IiNaAWFOqKp6-TbBRA3Llo,20258
|
|
93
93
|
luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.pyi,sha256=wO6CtLaALnsFW3hK3pNDoI111pOz42AL_PO48f-4Ut4,6195
|
|
94
94
|
luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2.py,sha256=ToNMOF9bwR4T1Uduf3daao7_pFfc2trfT-A3_UM0vDk,8023
|
|
95
95
|
luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2.pyi,sha256=-vtlNWPz2kbOPyD26lVOPI5YWsDc35ZWWdWHQV8H40g,3166
|
|
96
96
|
luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2_grpc.py,sha256=5EC2wbMzDyXuFROZzH1ief__dT6x4N8qJwsPtSy16sA,8038
|
|
97
97
|
luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2_grpc.pyi,sha256=hGkGk-DMn0Lo6QBtLALBF2HLLV6rgs6zMRmqmDzBZco,2513
|
|
98
|
-
luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py,sha256=
|
|
99
|
-
luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi,sha256=
|
|
98
|
+
luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py,sha256=yBt8oSMhD8taZIWBVdDhDkvtQ2YglN31VmL751F9f4k,31416
|
|
99
|
+
luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi,sha256=TDgvIQCAfv2h8rZueIRBN-hP0IcBszrOepTVAVD2osU,37395
|
|
100
100
|
luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py,sha256=09Mqc5yVuRwDEnV7oKd9zw0WZS0X7-IB0VVo5Lf3Vus,27538
|
|
101
101
|
luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi,sha256=rzENHjHuDfNZ11S-_1YUcEfwhVJFk1qkBwHksgpqY1M,11699
|
|
102
102
|
luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py,sha256=K0PmW_-cCzfQpykeHh9qqnlnItAZqnVQExHAOKPDVqc,17287
|
|
@@ -119,22 +119,22 @@ luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.py,sha256=GSBDw-gXRD
|
|
|
119
119
|
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2.pyi,sha256=XbFvpZvvrS7QcH5AFXfpRGl4hQvhd3QdKO6x0oTlCCU,165
|
|
120
120
|
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.py,sha256=eyC9tE7Rid-6OvRiSohEim8mkORz-cVa-ml4T3S8qBU,12767
|
|
121
121
|
luminarycloud/_proto/api/v0/luminarycloud/upload/upload_pb2_grpc.pyi,sha256=Xknd7R7907K_Sv4rtixxvcBnyz5lA_RzgbHcrwM7qLo,6431
|
|
122
|
-
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py,sha256=
|
|
123
|
-
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi,sha256=
|
|
122
|
+
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py,sha256=kl10W26UXQXAPWGjiNkSKypBt4jveROKaq0tlt3IupM,80336
|
|
123
|
+
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi,sha256=BTNZ1zp03Y1ualSy3A5oPJf9wQph-I5QP48g76hNlSY,99911
|
|
124
124
|
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py,sha256=VlfoJT801UNTt_zOU_AoTHSzW-8YkfC7CQ01a2I-3aE,21990
|
|
125
125
|
luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi,sha256=xKdkwgPfOPzbpHwhZ479gaCpKfsThfBrejKSO9kyXEo,5945
|
|
126
|
-
luminarycloud/_proto/assistant/assistant_pb2.py,sha256=
|
|
127
|
-
luminarycloud/_proto/assistant/assistant_pb2.pyi,sha256=
|
|
126
|
+
luminarycloud/_proto/assistant/assistant_pb2.py,sha256=B5Jm87AjEMIWWaLLKEf0ccYSTqD_fROockV2A-q_u5g,24223
|
|
127
|
+
luminarycloud/_proto/assistant/assistant_pb2.pyi,sha256=mKHAmiZpWA0RtDxFJYfo3Roh5DCvTPpsbKbjZmG7gBU,29795
|
|
128
128
|
luminarycloud/_proto/assistant/assistant_pb2_grpc.py,sha256=LdhDENiXExqvZpHofl4wduSs7_4hQwQEVIPxkSyY4dA,15007
|
|
129
129
|
luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi,sha256=Z5ABVLgrKHaxAlBxJXKWg-In9qFCiHqlV1uBQMbVHyE,4605
|
|
130
|
-
luminarycloud/_proto/base/base_pb2.py,sha256=
|
|
131
|
-
luminarycloud/_proto/base/base_pb2.pyi,sha256
|
|
130
|
+
luminarycloud/_proto/base/base_pb2.py,sha256=IR2jOEOoyGjygHXSad_cjWv091EYiZ9ZxzP4HEv_gpM,14477
|
|
131
|
+
luminarycloud/_proto/base/base_pb2.pyi,sha256=HS_7DBnXv5Bp_Ri6kRRfFAIuux3P3OBlRiD-1g2sktg,25150
|
|
132
132
|
luminarycloud/_proto/cad/boolean_pb2.py,sha256=q_6ttv2pZVDpuJB1LmSzQxZ-eja6LqndcZN44G1xiIM,3652
|
|
133
133
|
luminarycloud/_proto/cad/boolean_pb2.pyi,sha256=UcDRXfejwXptwjrIpyzDfKmlK_m79tVjJEvCYvrGRbQ,7427
|
|
134
134
|
luminarycloud/_proto/cad/shape_pb2.py,sha256=7Ek8pd_6PkvFB-oBLliyRwEWOGlOyr3bfzDP_UoVXLY,11328
|
|
135
135
|
luminarycloud/_proto/cad/shape_pb2.pyi,sha256=KX7d0rRoWBCN0JcPi6QTk94qGPIfdjf4JzHZW2PXFgc,11953
|
|
136
|
-
luminarycloud/_proto/cad/transformation_pb2.py,sha256=
|
|
137
|
-
luminarycloud/_proto/cad/transformation_pb2.pyi,sha256=
|
|
136
|
+
luminarycloud/_proto/cad/transformation_pb2.py,sha256=bdRcGCM0D_kI9BWcw6wukkK9kzI6jO5ZwEGKQ57Uz3Y,11448
|
|
137
|
+
luminarycloud/_proto/cad/transformation_pb2.pyi,sha256=FekSFRhcgBnrpQKY9SQejBWpkMm5edcfR2eo1_yKPU8,14205
|
|
138
138
|
luminarycloud/_proto/cadmetadata/cadmetadata_pb2.py,sha256=bJoJXDLcAqmtHfgR6JKNZp4WinW0pvwpe1CPN_iBwIc,2836
|
|
139
139
|
luminarycloud/_proto/cadmetadata/cadmetadata_pb2.pyi,sha256=ilRDD1oOkFffy4bpgPblZHU2j_2PR_gqdL-_5tRBiU0,4463
|
|
140
140
|
luminarycloud/_proto/client/entity_pb2.py,sha256=LmCbzEBTtsBnfgofVEsYFvVCvw-tDzU9o3eOn0-JqmY,1442
|
|
@@ -161,8 +161,8 @@ luminarycloud/_proto/fvm/vof_initialization_pb2.py,sha256=sojYSJKPETIecEc1uQYQAt
|
|
|
161
161
|
luminarycloud/_proto/fvm/vof_initialization_pb2.pyi,sha256=Lz18bv9OvARqs5IN78OL51J9HQh3wrnwulFBF04-ChY,8650
|
|
162
162
|
luminarycloud/_proto/geometry/geometry_pb2.py,sha256=z1ZzAXYnCFEYkJ0Y4SMZ8jA-ql0IUZTglotMsExlwVw,22528
|
|
163
163
|
luminarycloud/_proto/geometry/geometry_pb2.pyi,sha256=BohnHhnFjCB2oLbBcAdBIO3uDl67wyl8Duao5jzpuEs,44737
|
|
164
|
-
luminarycloud/_proto/hexmesh/hexmesh_pb2.py,sha256=
|
|
165
|
-
luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi,sha256=
|
|
164
|
+
luminarycloud/_proto/hexmesh/hexmesh_pb2.py,sha256=9U-DG5SCn_QhAXZrSWcWBuIOcpMtPgWm4-oog_9m-lo,32681
|
|
165
|
+
luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi,sha256=fzwYx1fUmBd8MCu7rGaFATWS4IzANILL1DqwoFITSng,45073
|
|
166
166
|
luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py,sha256=0BHDdUMzpR6kYVc5iO81J-n176o6meHMs3OEmgYjDE8,4630
|
|
167
167
|
luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi,sha256=IYtpwK1WYVWNpqlnvgevFLwX3bTbcdZAnx_k3KDoukg,3378
|
|
168
168
|
luminarycloud/_proto/lcn/lcmesh_pb2.py,sha256=Wezvq8djXrRv9luuNU7FYj3Pm5gjt4YBM7-wnwJaF6E,7479
|
|
@@ -199,10 +199,10 @@ luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py,sh
|
|
|
199
199
|
luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.pyi,sha256=VbmaLisaneVcvS68mWV2faJnoF4vrS4wYBvDZezwPpk,221
|
|
200
200
|
luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py,sha256=6VYOuVOIegaK5c3qrNEx9Etk9Gd52PdZ6RKMSSNkRZ8,3271
|
|
201
201
|
luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi,sha256=Weofl41CRNCGP-fX2cmKCr9k9r6wvQjnel0sJH31U8s,1359
|
|
202
|
-
luminarycloud/_proto/quantity/quantity_options_pb2.py,sha256=
|
|
203
|
-
luminarycloud/_proto/quantity/quantity_options_pb2.pyi,sha256=
|
|
204
|
-
luminarycloud/_proto/quantity/quantity_pb2.py,sha256=
|
|
205
|
-
luminarycloud/_proto/quantity/quantity_pb2.pyi,sha256=
|
|
202
|
+
luminarycloud/_proto/quantity/quantity_options_pb2.py,sha256=6XoZZp_SVLQE7WpjWJxvzCZ1NJy-vXsDV67SOaxLXDs,7108
|
|
203
|
+
luminarycloud/_proto/quantity/quantity_options_pb2.pyi,sha256=cQcraCIE1O5pXpP0bFoe4rkG9du8D9MtaIIxcj-gd98,13525
|
|
204
|
+
luminarycloud/_proto/quantity/quantity_pb2.py,sha256=jPYCDHWGmcEGGX3MZOofYFM1dWcAjjZajIAUrjbS1uo,148567
|
|
205
|
+
luminarycloud/_proto/quantity/quantity_pb2.pyi,sha256=ctMFQ9mnb1VQsqV-4Bk0N2pIKmkzQYAOlhkUXhPj3ZE,18072
|
|
206
206
|
luminarycloud/_proto/ratelimit/ratelimit_pb2.py,sha256=AfCGUbaiTuJ2aoXvfOtzVBitrTD_m41eS8RLjVvobgI,2025
|
|
207
207
|
luminarycloud/_proto/ratelimit/ratelimit_pb2.pyi,sha256=hvaZ__zpz3cabrs4KGyKGIz4yHbkahoy39fTXvD_msA,1515
|
|
208
208
|
luminarycloud/_proto/ratelimit/ratelimit_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
@@ -216,7 +216,7 @@ luminarycloud/enum/averaging_type.py,sha256=C_KlxVZavrQRgeIW1dwkSBOuppS2k9zEkSnX
|
|
|
216
216
|
luminarycloud/enum/calculation_type.py,sha256=3_5nFDYLw56794BTiRlVQYK0f74hXAFEbQHZgLGfibQ,1035
|
|
217
217
|
luminarycloud/enum/force_direction_type.py,sha256=2Bwmj5oRzLuMGgJ6mUUuonNE4axeno2LObZSjaMVVZA,585
|
|
218
218
|
luminarycloud/enum/geometry_status.py,sha256=Svc_DYY85Emb127cZ8VubddDFokAiLmlaNL_7G0VrAM,1207
|
|
219
|
-
luminarycloud/enum/gpu_type.py,sha256=
|
|
219
|
+
luminarycloud/enum/gpu_type.py,sha256=JVO3x_SU8FEMuiVAdOAxoQjTyOyHWzw_Ga1hhC4dSe4,469
|
|
220
220
|
luminarycloud/enum/mesh_status.py,sha256=pBpfnA0xD4NPHo0Rclal7wkxdqvtzIz6Tl8TU2Bcmik,717
|
|
221
221
|
luminarycloud/enum/mesh_type.py,sha256=9Fg10uszfLJ-TsKN0Z05YcNI2JYHv5tq8uQGLjdSM_w,593
|
|
222
222
|
luminarycloud/enum/moment_convention_type.py,sha256=f__VsPvZlzG8omsxyKM1VP_cEg0s45QtL_-L4XFdP1I,535
|
|
@@ -493,22 +493,22 @@ luminarycloud/physics_ai/__init__.py,sha256=zSdYA5L3kqGsCfHZVvbYpXd25j8CyAjaHZQF
|
|
|
493
493
|
luminarycloud/physics_ai/architectures.py,sha256=AOXuoNuj1ZiaOUCc3NvCn7QvTRsrYTblCJA2kQhG_eU,4389
|
|
494
494
|
luminarycloud/physics_ai/inference.py,sha256=pXx3dFfbvB6RCV4knfFb4nKxTZ3k5A5qgUuadCobe9Q,7787
|
|
495
495
|
luminarycloud/physics_ai/models.py,sha256=USuz1LKbt4U3nRAYUYGQz7bRLhPIBnb3Q3xQwFam6Z0,2135
|
|
496
|
-
luminarycloud/physics_ai/solution.py,sha256=
|
|
496
|
+
luminarycloud/physics_ai/solution.py,sha256=b8Ej_adu54LPZ6SK9h7c6yfmaYVxHectg1ST3pzFY9U,2527
|
|
497
497
|
luminarycloud/physics_ai/training_jobs.py,sha256=e00WETgMqAps6N_PM8C3LmIcrUx3a-6UcwtfPbv1trs,1242
|
|
498
498
|
luminarycloud/pipeline_util/dictable.py,sha256=_YhxibnVCUqSpBH-IHBqvjiYlnAYMbuQv9dWK0eZn7Y,1073
|
|
499
499
|
luminarycloud/pipeline_util/yaml.py,sha256=RG3Gqv4ORaYX4lTyRVBsGVGE138zsxJIYzoWr4Aczrs,1883
|
|
500
|
-
luminarycloud/pipelines/__init__.py,sha256=
|
|
501
|
-
luminarycloud/pipelines/api.py,sha256=
|
|
500
|
+
luminarycloud/pipelines/__init__.py,sha256=aeTj2qfkLvcqwZcggSRaQw8Lidvexrul7hNKkIXs_QM,1646
|
|
501
|
+
luminarycloud/pipelines/api.py,sha256=iROvETGklhaXy15DwXUZr-RFrwysL1B57K789nDWO2I,12228
|
|
502
502
|
luminarycloud/pipelines/arguments.py,sha256=HexqMqr_c3vB_qMSwAqW4EGx1Z9sfJnbswxfk3jU4FA,4366
|
|
503
|
-
luminarycloud/pipelines/core.py,sha256=
|
|
504
|
-
luminarycloud/pipelines/operators.py,sha256=Hk_-RN-VHrjvmSP3F9WbP20YMet10mxduilk8sjYRmE,7239
|
|
503
|
+
luminarycloud/pipelines/core.py,sha256=ot5zRrT_kmYp-KocY6JxFAte4sfDI6YXLoQuJLI2Sak,15186
|
|
505
504
|
luminarycloud/pipelines/parameters.py,sha256=z7pcmETQ81V-CJfUp15L9ugJM0cZ71DFBDpRG-KrS7A,1607
|
|
505
|
+
luminarycloud/pipelines/stages.py,sha256=SBnML0DdpqojqE4iCF7lxCr_tngqvsA66s37LqXlgTM,7222
|
|
506
506
|
luminarycloud/thirdparty/__init__.py,sha256=7uX7_FjRCMed-OGo0xSY-BUGG3p8Q2XPdTsuJSc9Pr4,376
|
|
507
507
|
luminarycloud/thirdparty/onshape.py,sha256=a_Srr7NNkCEls9YdaUaKdIMWIRTzRGmb-VA-4G4rK2A,4949
|
|
508
508
|
luminarycloud/types/__init__.py,sha256=tIA724XA_cgqLfB48LThGj4NHNkl1PlR4rOl3nqX-gk,596
|
|
509
509
|
luminarycloud/types/adfloat.py,sha256=iSe08QPhQw-IK4j4GZcFM-OKlIHeLyKqUTLncIw2Izs,6505
|
|
510
510
|
luminarycloud/types/ids.py,sha256=1N0K4xezmi2Dno8TH68tvBgZZCmqYUPbNKujudrzkNg,715
|
|
511
|
-
luminarycloud/types/matrix3.py,sha256=
|
|
511
|
+
luminarycloud/types/matrix3.py,sha256=2_6gvalzh43_aE1DkXgNJZDTzVRofSGlYXthCSlpZQM,1333
|
|
512
512
|
luminarycloud/types/vector3.py,sha256=agzBz6_vBN6YzKQUlqB94BYOdOaFAbetJKqOtCthkDQ,3381
|
|
513
513
|
luminarycloud/vis/__init__.py,sha256=sx9aMRXl7qrN_D1ivaSk40Co82nhY4bNqg1XU8NETLg,1794
|
|
514
514
|
luminarycloud/vis/data_extraction.py,sha256=HSc4gSjXoH4jP_Fdot_qNCIuWA8D25hD_GkORy0xFfw,29599
|
|
@@ -521,6 +521,6 @@ luminarycloud/vis/primitives.py,sha256=_EDSEAddSAFTRUU9at1Gxt-5chLO723f9c8V5atTe
|
|
|
521
521
|
luminarycloud/vis/report.py,sha256=wlRT-zj8MoVYfa9E5vUyZLYi_STBsShExN-TZtN0LlU,10552
|
|
522
522
|
luminarycloud/vis/vis_util.py,sha256=AWGmHcfYXGmfe5t5Jbb1Fqe2nxVdEQbBitCaWSeT89M,1821
|
|
523
523
|
luminarycloud/vis/visualization.py,sha256=pZSscRSCcwe8a0Z4-nRkL5kJ2btqLtkaUyQ76o1_AbA,61003
|
|
524
|
-
luminarycloud-0.21.
|
|
525
|
-
luminarycloud-0.21.
|
|
526
|
-
luminarycloud-0.21.
|
|
524
|
+
luminarycloud-0.21.2.dist-info/METADATA,sha256=RIIR3SxdqO8rXx8SKQcn_r7dvlmFr6r8pIV6lAwxA7w,2574
|
|
525
|
+
luminarycloud-0.21.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
526
|
+
luminarycloud-0.21.2.dist-info/RECORD,,
|
|
File without changes
|