still needs documentation, test, lint type checking etc. The file python/test_no_import_change.py can be tried for some basic testing.
# to run on cpu
CUDA_VISIBLE_DEVICES=0 python python/test_no_import_change.py 0.2
# run on gpu
CUDA_VISIBLE_DEVICES=0 python -m spark_rapids_ml python/test_no_import_change.py 0.2
# gpu using spark-submit (for cpu just omit the __main__.py)
CUDA_VISIBLE_DEVICES=0 spark-rapids-submit --master local[2] \
python/test_no_import_change.py 0.2
still needs documentation, test, lint type checking etc. The file
python/test_no_import_change.py
can be tried for some basic testing.