This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
from e964be2cca [MINOR] Add Matrix Multiplication Chain Test and Fix
Runtime Bug
add ecdf74fda5 [SYSTEMDS-3409] Read CSV directly without MTD python
add b20779a62a [SYSTEMDS-3433] Python docs test fail in IDE
No new revisions were added by this update.
Summary of changes:
.../code/getting_started/simpleExamples/l2svm.py | 6 +-
.../simpleExamples/l2svm_internal.py | 7 +-
.../getting_started/simpleExamples/multiply.py | 7 +-
.../simpleExamples/multiplyMatrix.py | 4 +-
.../source/code/guide/algorithms/FullScript.py | 6 +-
.../guide/federated/federatedTutorial_part1.py | 4 +-
.../guide/federated/federatedTutorial_part2.py | 5 +-
.../guide/federated/federatedTutorial_part3.py | 12 ++-
.../python/systemds/context/systemds_context.py | 90 +++++++++++------
.../python/systemds/examples/tutorials/adult.py | 17 ++--
src/main/python/systemds/operator/nodes/frame.py | 3 +-
src/main/python/systemds/operator/nodes/list.py | 2 +-
src/main/python/systemds/operator/nodes/matrix.py | 3 +-
.../python/systemds/operator/nodes/multi_return.py | 2 +-
src/main/python/systemds/operator/nodes/source.py | 19 ++--
src/main/python/tests/algorithms/test_lm.py | 6 +-
src/main/python/tests/algorithms/test_pca.py | 2 +-
src/main/python/tests/algorithms/test_signal.py | 4 +-
.../python/tests/basics/test_context_creation.py | 3 +
src/main/python/tests/basics/test_context_stats.py | 7 +-
.../python/tests/{docs => docs_test}/__init__.py | 0
.../{docs => docs_test}/test_algorithms_basics.py | 7 ++
.../{docs => docs_test}/test_simple_example.py | 7 ++
.../tests/federated/test_federated_tutorial.py | 4 +
src/main/python/tests/frame/test_rIndexing.py | 20 ++--
src/main/python/tests/frame/test_r_c_bind.py | 34 ++++---
src/main/python/tests/frame/test_replace.py | 7 +-
src/main/python/tests/frame/test_slice.py | 4 +
.../main/python/tests/iotests}/__init__.py | 0
src/main/python/tests/iotests/test_io_csv.py | 112 +++++++++++++++++++++
.../tests/manual_tests/multi_log_reg_mnist.py | 4 +-
src/main/python/tests/matrix/test_slice.py | 3 +
src/main/python/tests/source/test_source_list.py | 3 +
33 files changed, 307 insertions(+), 107 deletions(-)
rename src/main/python/tests/{docs => docs_test}/__init__.py (100%)
rename src/main/python/tests/{docs => docs_test}/test_algorithms_basics.py
(90%)
rename src/main/python/tests/{docs => docs_test}/test_simple_example.py (92%)
copy {scripts/staging/onnx/onnx_systemds_tests =>
src/main/python/tests/iotests}/__init__.py (100%)
create mode 100644 src/main/python/tests/iotests/test_io_csv.py