Skip to content

Commit

Permalink
Release v0.16.1
Browse files Browse the repository at this point in the history
Signed-off-by: The Sionna Team <sionna@nvidia.com>

Merged-by: Guillermo Marcus <4169784+gmarcusm@users.noreply.github.com>

Co-authored-by: Jakob Hoydis <5190129+jhoydis@users.noreply.github.com>
Co-authored-by: Fayçal Ait-Aoudia <43564757+faycalaa@users.noreply.github.com>
Co-authored-by: Sebastian Cammerer <18167671+SebastianCa@users.noreply.github.com>
Co-authored-by: Guillermo Marcus <4169784+gmarcusm@users.noreply.github.com>
Co-authored-by: Merlin Nimier-David <merlin.nimier@gmail.com>
Co-authored-by: Jérome Eertmans <jeertmans@icloud.com
  • Loading branch information
6 people committed Dec 8, 2023
1 parent 47c328f commit 58e32c5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ jobs:
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: pylint.sarif
wait-for-processing: true
wait-for-processing: true
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ On macOS, you need to install [tensorflow-macos](https://github.com/apple/tensor
```
>>> import sionna
>>> print(sionna.__version__)
0.16.0
0.16.1
```

3.) Once Sionna is installed, you can run the [Sionna "Hello, World!" example](https://nvlabs.github.io/sionna/examples/Hello_World.html), have a look at the [quick start guide](https://nvlabs.github.io/sionna/quickstart.html), or at the [tutorials](https://nvlabs.github.io/sionna/tutorials.html).
Expand Down Expand Up @@ -97,7 +97,7 @@ We recommend to do this within a [virtual environment](https://docs.python.org/3
```
>>> import sionna
>>> print(sionna.__version__)
0.16.0
0.16.1
```

## License and Citation
Expand Down
4 changes: 2 additions & 2 deletions doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ e.g., using `conda <https://docs.conda.io>`_. On macOS, you need to install `ten
>>> import sionna
>>> print(sionna.__version__)
0.16.0
0.16.1
3.) Once Sionna is installed, you can run the `Sionna "Hello, World!" example <https://nvlabs.github.io/sionna/examples/Hello_World.html>`_, have a look at the `quick start guide <https://nvlabs.github.io/sionna/quickstart.html>`_, or at the `tutorials <https://nvlabs.github.io/sionna/tutorials.html>`_.

Expand Down Expand Up @@ -111,4 +111,4 @@ e.g., using `conda <https://docs.conda.io>`_.
>>> import sionna
>>> print(sionna.__version__)
0.16.0
0.16.1
2 changes: 1 addition & 1 deletion sionna/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""This is the Sionna library.
"""

__version__ = '0.16.0'
__version__ = '0.16.1'

from . import utils
from .constants import *
Expand Down
4 changes: 1 addition & 3 deletions sionna/rt/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,7 @@ def dot(u, v, keepdim=False, clip=False):
The last dimension is removed if ``keepdim``
is set to `False`.
"""
res = tf.linalg.matvec(tf.expand_dims(u, -2), v)
if not keepdim:
res = tf.squeeze(res,axis=-1)
res = tf.reduce_sum(u*v, axis=-1, keepdims=keepdim)
if clip:
one = tf.ones((), u.dtype)
res = tf.clip_by_value(res, -one, one)
Expand Down

0 comments on commit 58e32c5

Please sign in to comment.