differt-core 0.2.0__tar.gz → 0.3.1__tar.gz
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.
- {differt_core-0.2.0 → differt_core-0.3.1}/Cargo.lock +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/PKG-INFO +2 -2
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/Cargo.toml +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1/differt-core}/src/geometry/mod.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/src/geometry/triangle_mesh.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/src/lib.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/src/rt/graph.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/src/rt/mod.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1/differt-core}/src/scene/mod.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/src/scene/sionna.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1/differt-core}/src/scene/triangle_scene.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/pyproject.toml +1 -1
- {differt_core-0.2.0/differt-core → differt_core-0.3.1}/src/geometry/mod.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/src/geometry/triangle_mesh.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/src/lib.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/src/rt/graph.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/src/rt/mod.rs +1 -1
- {differt_core-0.2.0/differt-core → differt_core-0.3.1}/src/scene/mod.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/src/scene/sionna.rs +1 -1
- {differt_core-0.2.0/differt-core → differt_core-0.3.1}/src/scene/triangle_scene.rs +1 -1
- {differt_core-0.2.0 → differt_core-0.3.1}/Cargo.toml +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/LICENSE.md +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/README.md +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/LICENSE.md +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/README.md +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/benches/bench_main.rs +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/benches/benchmarks/graph_iterators.rs +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/benches/benchmarks/mod.rs +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/_differt_core/__init__.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/_differt_core/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/_differt_core/rt/__init__.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/_differt_core/rt/graph.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/_differt_core/scene/sionna.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/_differt_core/scene/triangle_scene.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/py.typed +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/scene/_triangle_scene.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/tests/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/tests/rt/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/tests/rt/test_graph.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/differt-core/tests/test_version.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/__init__.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/geometry/triangle_mesh.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/rt/__init__.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/rt/graph.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/scene/sionna.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/scene/triangle_scene.pyi +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/geometry/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/geometry/_triangle_mesh.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/py.typed +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/rt/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/rt/_graph.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/scene/__init__.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/scene/_sionna.py +0 -0
- {differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/scene/_triangle_scene.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: differt-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3.10
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
|
14
14
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
15
15
|
Requires-Dist: numpy>=1.20
|
|
16
16
|
License-File: LICENSE.md
|
|
17
|
-
Summary: Core backend of
|
|
17
|
+
Summary: Core backend of DiffeRT implemented in Rust
|
|
18
18
|
Keywords: ray tracing,differentiable,propagation,radio,jax
|
|
19
19
|
Author-email: Jérome Eertmans <jeertmans@icloud.com>
|
|
20
20
|
Requires-Python: >=3.10
|
|
@@ -3,7 +3,7 @@ use pyo3::{prelude::*, wrap_pymodule};
|
|
|
3
3
|
pub mod triangle_mesh;
|
|
4
4
|
|
|
5
5
|
#[cfg(not(tarpaulin_include))]
|
|
6
|
-
#[pymodule]
|
|
6
|
+
#[pymodule(gil_used = false)]
|
|
7
7
|
pub(crate) fn geometry(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
8
8
|
m.add_wrapped(wrap_pymodule!(triangle_mesh::triangle_mesh))?;
|
|
9
9
|
Ok(())
|
|
@@ -502,7 +502,7 @@ impl From<RawObj> for TriangleMesh {
|
|
|
502
502
|
}
|
|
503
503
|
|
|
504
504
|
#[cfg(not(tarpaulin_include))]
|
|
505
|
-
#[pymodule]
|
|
505
|
+
#[pymodule(gil_used = false)]
|
|
506
506
|
pub(crate) fn triangle_mesh(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
507
507
|
m.add_class::<TriangleMesh>()?;
|
|
508
508
|
Ok(())
|
|
@@ -1119,7 +1119,7 @@ pub mod directed {
|
|
|
1119
1119
|
}
|
|
1120
1120
|
|
|
1121
1121
|
#[cfg(not(tarpaulin_include))]
|
|
1122
|
-
#[pymodule]
|
|
1122
|
+
#[pymodule(gil_used = false)]
|
|
1123
1123
|
pub(crate) fn graph(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
1124
1124
|
m.add_class::<complete::CompleteGraph>()?;
|
|
1125
1125
|
m.add_class::<directed::DiGraph>()?;
|
|
@@ -4,7 +4,7 @@ pub mod sionna;
|
|
|
4
4
|
pub mod triangle_scene;
|
|
5
5
|
|
|
6
6
|
#[cfg(not(tarpaulin_include))]
|
|
7
|
-
#[pymodule]
|
|
7
|
+
#[pymodule(gil_used = false)]
|
|
8
8
|
pub(crate) fn scene(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
9
9
|
m.add_wrapped(wrap_pymodule!(sionna::sionna))?;
|
|
10
10
|
m.add_wrapped(wrap_pymodule!(triangle_scene::triangle_scene))?;
|
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
|
20
20
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
21
21
|
]
|
|
22
22
|
dependencies = ["numpy>=1.20"]
|
|
23
|
-
description = "Core backend of
|
|
23
|
+
description = "Core backend of DiffeRT implemented in Rust"
|
|
24
24
|
dynamic = ["license", "readme", "version"]
|
|
25
25
|
keywords = ["ray tracing", "differentiable", "propagation", "radio", "jax"]
|
|
26
26
|
name = "differt-core"
|
|
@@ -3,7 +3,7 @@ use pyo3::{prelude::*, wrap_pymodule};
|
|
|
3
3
|
pub mod triangle_mesh;
|
|
4
4
|
|
|
5
5
|
#[cfg(not(tarpaulin_include))]
|
|
6
|
-
#[pymodule]
|
|
6
|
+
#[pymodule(gil_used = false)]
|
|
7
7
|
pub(crate) fn geometry(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
8
8
|
m.add_wrapped(wrap_pymodule!(triangle_mesh::triangle_mesh))?;
|
|
9
9
|
Ok(())
|
|
@@ -502,7 +502,7 @@ impl From<RawObj> for TriangleMesh {
|
|
|
502
502
|
}
|
|
503
503
|
|
|
504
504
|
#[cfg(not(tarpaulin_include))]
|
|
505
|
-
#[pymodule]
|
|
505
|
+
#[pymodule(gil_used = false)]
|
|
506
506
|
pub(crate) fn triangle_mesh(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
507
507
|
m.add_class::<TriangleMesh>()?;
|
|
508
508
|
Ok(())
|
|
@@ -1119,7 +1119,7 @@ pub mod directed {
|
|
|
1119
1119
|
}
|
|
1120
1120
|
|
|
1121
1121
|
#[cfg(not(tarpaulin_include))]
|
|
1122
|
-
#[pymodule]
|
|
1122
|
+
#[pymodule(gil_used = false)]
|
|
1123
1123
|
pub(crate) fn graph(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
1124
1124
|
m.add_class::<complete::CompleteGraph>()?;
|
|
1125
1125
|
m.add_class::<directed::DiGraph>()?;
|
|
@@ -4,7 +4,7 @@ pub mod sionna;
|
|
|
4
4
|
pub mod triangle_scene;
|
|
5
5
|
|
|
6
6
|
#[cfg(not(tarpaulin_include))]
|
|
7
|
-
#[pymodule]
|
|
7
|
+
#[pymodule(gil_used = false)]
|
|
8
8
|
pub(crate) fn scene(m: Bound<'_, PyModule>) -> PyResult<()> {
|
|
9
9
|
m.add_wrapped(wrap_pymodule!(sionna::sionna))?;
|
|
10
10
|
m.add_wrapped(wrap_pymodule!(triangle_scene::triangle_scene))?;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.2.0 → differt_core-0.3.1}/differt-core/benches/benchmarks/graph_iterators.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/geometry/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/scene/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{differt_core-0.2.0 → differt_core-0.3.1}/differt-core/python/differt_core/scene/_triangle_scene.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/scene/sionna.pyi
RENAMED
|
File without changes
|
{differt_core-0.2.0 → differt_core-0.3.1}/python/differt_core/_differt_core/scene/triangle_scene.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|