Files
rocm-systems/test/ext-plugins/assets/csv_confs/no_matching_config.conf
T
Kapil S. Pawar c8da880dc7 Added Functional Tests for CSV Tuner Plugin (#1968)
* Add functional tests for CSV Tuner Plugin

* Updated directory structure

* Updated and renamed directories

* Updated csv conf files

* Updated readme

* Updated readme

* Updated readme
2025-11-11 10:11:19 -06:00

45 lines
3.5 KiB
Plaintext

# Invalid configuration that should NOT match the test environment
# Wrong collective type (broadcast instead of allreduce for allreduce tests) - 8B-128M
broadcast,0,7,ring,simple,-1,-1,-1,-1,-1 # Size too small (broadcast test starts at 8B)
broadcast,134217729,268435456,ring,simple,-1,-1,-1,-1,-1 # Size too large (broadcast test ends at 128M)
# Wrong collective type (allreduce instead of broadcast for broadcast tests) - 8B-128M
allreduce,0,7,tree,simple,-1,-1,-1,-1,-1 # Size too small (doesn't include 8B+)
allreduce,134217729,268435456,tree,simple,-1,-1,-1,-1,-1 # Size too large (doesn't include 8B-128M)
# Wrong collective type (allgather instead of other tests) - 8B-128M
allgather,0,7,ring,simple,-1,-1,-1,-1,-1 # Size too small (allgather test starts at 8B)
allgather,134217729,268435456,ring,simple,-1,-1,-1,-1,-1 # Size too large (allgather test ends at 128M)
# Wrong collective type (reduce instead of other tests) - 8B-128M
reduce,0,7,ring,simple,-1,-1,-1,-1,-1 # Size too small (reduce test starts at 8B)
reduce,134217729,268435456,ring,simple,-1,-1,-1,-1,-1 # Size too large (reduce test ends at 128M)
# Wrong collective type (reducescatter instead of other tests) - 8B-128M
reducescatter,0,7,ring,simple,-1,-1,-1,-1,-1 # Size too small (reducescatter test starts at 8B)
reducescatter,134217729,268435456,ring,simple,-1,-1,-1,-1,-1 # Size too large (reducescatter test ends at 128M)
# Wrong size ranges (tests use 8 bytes to 128M, these are way outside)
allreduce,2000000000,4000000000,ring,simple,-1,-1,-1,-1,-1
allreduce,5000000000,6000000000,tree,ll128,-1,-1,-1,-1,-1
broadcast,2000000000,4000000000,ring,simple,-1,-1,-1,-1,-1
broadcast,5000000000,6000000000,ring,ll128,-1,-1,-1,-1,-1
allgather,2000000000,4000000000,ring,simple,-1,-1,-1,-1,-1
allgather,5000000000,6000000000,ring,ll128,-1,-1,-1,-1,-1
reduce,2000000000,4000000000,ring,simple,-1,-1,-1,-1,-1
reduce,5000000000,6000000000,ring,ll128,-1,-1,-1,-1,-1
reducescatter,2000000000,4000000000,ring,simple,-1,-1,-1,-1,-1
reducescatter,5000000000,6000000000,ring,ll128,-1,-1,-1,-1,-1
# Wrong node/rank counts (broadcast tests use 1 node, 4/8 ranks - these specify different, size outside 8B-128M)
broadcast,134217729,268435456,ring,simple,-1,4,16,-1,-1 # 4 nodes, 16 ranks, size too large
broadcast,268435457,536870912,ring,simple,-1,2,4,-1,-1 # 2 nodes, 4 ranks, size too large
# Wrong node/rank counts (allreduce tests use 1 node, 4/8 ranks - these specify different, size outside 8B-128M)
allreduce,134217729,268435456,ring,simple,-1,8,16,-1,-1 # 8 nodes, 16 ranks, size too large
allreduce,268435457,536870912,tree,simple,-1,2,8,-1,-1 # 2 nodes, 8 ranks, size too large
# Wrong node/rank counts (allgather tests use 1 node, 8 ranks - these specify different, size outside 8B-128M)
allgather,134217729,268435456,ring,simple,-1,4,16,-1,-1 # 4 nodes, 16 ranks, size too large
allgather,268435457,536870912,ring,simple,-1,2,4,-1,-1 # 2 nodes, 4 ranks, size too large
# Wrong node/rank counts (reduce tests use 1 node, 8 ranks - these specify different, size outside 8B-128M)
reduce,134217729,268435456,ring,simple,-1,4,16,-1,-1 # 4 nodes, 16 ranks, size too large
reduce,268435457,536870912,ring,simple,-1,2,4,-1,-1 # 2 nodes, 4 ranks, size too large
# Wrong node/rank counts (reducescatter tests use 1 node, 8 ranks - these specify different, size outside 8B-128M)
reducescatter,134217729,268435456,ring,simple,-1,4,16,-1,-1 # 4 nodes, 16 ranks, size too large
reducescatter,268435457,536870912,ring,simple,-1,2,4,-1,-1 # 2 nodes, 4 ranks, size too large