This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New class ParamConfig to handle parameters configuration : supervisor constructor requires an instance of it now. This change Multi GPU controller generic improvements Standalone RTC debug + pytests Add leaky factor in the generic controller Add [CLOSE](https://arxiv.org/abs/2103.09921) algorithm implementation Multi controllers support in the supervisor Sub-pixels move for phase screens GuARDIANS package updated Code documentation update
- Loading branch information
Showing
149 changed files
with
16,795 additions
and
1,249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
************************ | ||
:mod:`shesha.sutra_wrap` | ||
************************ | ||
|
||
.. _shesha.sutra_wrap module: | ||
|
||
.. automodule:: shesha.sutra_wrap | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Atmos class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Atmos | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.carmaWrap_context class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.carmaWrap_context | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Dms class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Dms | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Gamora class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Gamora | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Groot class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Groot | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_FFF class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_FFF | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_FFU class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_FFU | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_FHF class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_FHF | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_FHU class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_FHU | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_UFF class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_UFF | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_UFU class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_UFU | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_UHF class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_UHF | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Rtc_UHU class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Rtc_UHU | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Sensors class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Sensors | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Target class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Target | ||
:members: | ||
|
||
.. _shesha.sutra_wrap.Telescope class: | ||
|
||
.. autoclass:: shesha.sutra_wrap.Telescope | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
""" | ||
GuARDIANs (packaGe for Ao eRror breakDown estImation And exploitatioN) | ||
""" | ||
__all__ = ["groot", "gamora", "roket", "drax", "starlord"] |
Oops, something went wrong.