- Jul 18, 2024
-
-
Christophe Guillon authored
Add installation of the python bindings target to the build system. This avoids to have a specific postprocessing in the python package management tools.
-
Christophe Guillon authored
Minimize dependencies for the setup.py script, this facilitates use in development mode and with legacy install processes. Here we remove the toml requirement at the cost of specifying the project name directly.
-
Christophe Guillon authored
If AIDGE_BUILD_GEN= is in environment the default build backend is used.
-
Christophe Guillon authored
-
Christophe Guillon authored
-
Maxence Naud authored
[Tensor] Fix invalid getIdx() method See merge request !171
-
-
The getIdx() method generates segfault on 0-rank coords due to an out-of-bound access. Also the computation was wrong for rank of coords lower than rank of tensor by 2 or more.
-
Add tests for get()/set()/getIdx() of tensor values by index and by coordinates. Includes tests of 0-rank coordinates which should work and return the first element which is also the single value for a 0-rank tensor.
-
Grégoire Kubler authored
-
- Jul 16, 2024
-
-
Grégoire Kubler authored
feat/release_pip See merge request !116
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
- Jul 15, 2024
-
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Co-authored-by:
Cyril Moineau <cyril.moineau@cea.fr>
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
- Jul 11, 2024
-
-
Olivier BICHLER authored
[Log] Add possibility to disable colorization of log outputs See merge request !169
-
Add setConsoleColor(bool) method to Log module in order to control colorization on log outputs. Default should be assumed true. This is useful generally when redirecting outputs or using a non colorized terminal in order to avoid annoying ANSI escape sequences. Add set_console_color(bool) python binding. Add AIDGE_LOG_COLOR=[off|OFF|0] env var to disable colors at startup.
-
Olivier BICHLER authored
[DataType] Complete python binding to map all dtype values See merge request !168
-
Add python enum values for all defined dtypes as per the table of dtype names (lower case of the dtype names). Add __str__() binding such that str(tensor.dtype()) return bare enumeration names, suitable for comparison with numpy dtype names.
-
Maxence Naud authored
Add support for namespaced attributes in DynamicAttributes See merge request !161
-
Olivier BICHLER authored
-
Olivier BICHLER authored
-
Olivier BICHLER authored
-
- Jul 10, 2024
-
-
Maxence Naud authored
Added handling of None See merge request !167
-
-
Cyril Moineau authored
[UnitTest] Make unit tests deterministic with fixed seed See merge request !166
-
Grégoire Kubler authored
-
Grégoire Kubler authored
-
Use the getSeed() method provided by Catch to initialize the random number generator instead of using the default random device. This allows to make the tests deterministic when --rng-seed <seed> option is passed. Also this allows to report a test failure by specifying the seed as reported in the test output, which can then be reproduced with --rng-seed <reported_seed>.
-
Maxence Naud authored
Update 'Operator::setOutput()' and overrides to be const See merge request !164
-