/************************************************************************* * Copyright (c) 2022 Advanced Micro Devices, Inc. All rights reserved. * * See LICENSE.txt for license information ************************************************************************/ #include "TestBed.hpp" namespace RcclUnitTesting { // This tests using custom pre-mult scalars reductions TEST(AllReduce, PreMultScalar) { TestBed testBed; // Configuration ncclFunc_t const funcType = ncclCollAllReduce; std::vector const& dataTypes = {ncclInt32, ncclFloat32, ncclFloat64}; ncclRedOp_t const redOp = ncclSum; std::vector const numElements = {1048576, 1024}; bool const inPlace = false; bool const useManagedMem = false; OptionalColArgs options; // Terminate the test as soon as first failure occurs bool isCorrect = true; for (int totalRanks = testBed.ev.minGpus; totalRanks <= testBed.ev.maxGpus && isCorrect; ++totalRanks) for (int isMultiProcess = 0; isMultiProcess <= 1; ++isMultiProcess) { if (!(testBed.ev.processMask & (1 << isMultiProcess))) continue; int const numProcesses = isMultiProcess ? totalRanks : 1; testBed.InitComms(TestBed::GetDeviceIdsList(numProcesses, totalRanks)); for (int dataIdx = 0; dataIdx < dataTypes.size() && isCorrect; ++dataIdx) { ncclDataType_t const dataType = dataTypes[dataIdx]; // Set scalars per rank PtrUnion scalarsPerRank; scalarsPerRank.AllocateCpuMem(totalRanks * DataTypeToBytes(dataType)); for (int i = 0; i < totalRanks; i++) { double F = i; scalarsPerRank.Set(dataType, i, i, F); } int const numBytes = totalRanks * DataTypeToBytes(dataType); memcpy(options.scalarTransport.ptr, scalarsPerRank.ptr, numBytes); // Test various scalar residence modes for (int scalarMode = 0; scalarMode <= 1 && isCorrect; ++scalarMode) { if (testBed.ev.showNames) INFO("%s %d-ranks AllReduce (custom-scalar Mode %d %s)\n", isMultiProcess ? "MP" : "SP", totalRanks, scalarMode, ncclDataTypeNames[dataType]); for (int i = 0; i < numElements.size() && isCorrect; ++i) { options.scalarMode = scalarMode; options.redOp = redOp; testBed.SetCollectiveArgs(funcType, dataType, numElements[i], numElements[i], options); // For performance, only allocate and prepare data on largest size if (i == 0) { testBed.AllocateMem(inPlace, useManagedMem); testBed.PrepareData(); } testBed.ExecuteCollectives(); testBed.ValidateResults(isCorrect); } testBed.DeallocateMem(); } } testBed.DestroyComms(); } testBed.Finalize(); } }