2023-09-26 05:47:28 -07:00
|
|
|
/*************************************************************************
|
|
|
|
|
* Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
|
* Copyright (c) 2023, Meta Platforms, Inc. and affiliates.
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE.txt for license information
|
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef NCCL_TUNER_H_
|
|
|
|
|
#define NCCL_TUNER_H_
|
|
|
|
|
|
2024-06-11 01:28:01 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdlib.h>
|
2023-09-26 05:47:28 -07:00
|
|
|
|
2024-06-11 01:28:01 -07:00
|
|
|
#include "common.h"
|
|
|
|
|
#include "err.h"
|
2023-09-26 05:47:28 -07:00
|
|
|
|
|
|
|
|
#define NCCL_NUM_FUNCTIONS 5 // Send/Recv not included for now
|
2024-06-11 01:28:01 -07:00
|
|
|
typedef enum {
|
|
|
|
|
ncclFuncBroadcast = 0,
|
|
|
|
|
ncclFuncReduce = 1,
|
|
|
|
|
ncclFuncAllGather = 2,
|
|
|
|
|
ncclFuncReduceScatter = 3,
|
|
|
|
|
ncclFuncAllReduce = 4,
|
|
|
|
|
ncclFuncSendRecv = 5,
|
|
|
|
|
ncclFuncSend = 6,
|
|
|
|
|
ncclFuncRecv = 7,
|
|
|
|
|
ncclNumFuncs = 8
|
|
|
|
|
} ncclFunc_t;
|
2023-09-26 05:47:28 -07:00
|
|
|
|
2024-09-10 05:57:10 -07:00
|
|
|
#define NCCL_NUM_ALGORITHMS 7 // Tree/Ring/CollNet*
|
2023-09-26 05:47:28 -07:00
|
|
|
#define NCCL_ALGO_UNDEF -1
|
|
|
|
|
#define NCCL_ALGO_TREE 0
|
|
|
|
|
#define NCCL_ALGO_RING 1
|
|
|
|
|
#define NCCL_ALGO_COLLNET_DIRECT 2
|
|
|
|
|
#define NCCL_ALGO_COLLNET_CHAIN 3
|
|
|
|
|
#define NCCL_ALGO_NVLS 4
|
|
|
|
|
#define NCCL_ALGO_NVLS_TREE 5
|
2024-09-10 05:57:10 -07:00
|
|
|
#define NCCL_ALGO_PAT 6
|
2023-09-26 05:47:28 -07:00
|
|
|
|
|
|
|
|
#define NCCL_NUM_PROTOCOLS 3 // Simple/LL/LL128
|
|
|
|
|
#define NCCL_PROTO_UNDEF -1
|
|
|
|
|
#define NCCL_PROTO_LL 0
|
|
|
|
|
#define NCCL_PROTO_LL128 1
|
|
|
|
|
#define NCCL_PROTO_SIMPLE 2
|
|
|
|
|
|
2024-06-11 01:28:01 -07:00
|
|
|
#define NCCL_ALGO_PROTO_IGNORE -1.0
|
|
|
|
|
|
2025-09-02 13:21:14 -07:00
|
|
|
#define NCCL_HW_NVLINK 0
|
|
|
|
|
#define NCCL_HW_PCI 1
|
|
|
|
|
#define NCCL_HW_NET 2
|
|
|
|
|
#define NCCL_NUM_HW_LINKS 3
|
|
|
|
|
|
|
|
|
|
#define NCCL_VOLTA_COMPCAP_IDX 0
|
|
|
|
|
#define NCCL_AMPERE_COMPCAP_IDX 1
|
|
|
|
|
#define NCCL_HOPPER_COMPCAP_IDX 2
|
|
|
|
|
#define NCCL_BLACKWELL_COMPCAP_IDX 3
|
|
|
|
|
#define NCCL_NUM_COMPCAPS 4
|
|
|
|
|
|
|
|
|
|
#define NCCL_TUNING_SCALE_1NODE 0
|
|
|
|
|
#define NCCL_TUNING_SCALE_2NODES 1
|
|
|
|
|
#define NCCL_TUNING_SCALE_4NODES 2
|
|
|
|
|
#define NCCL_NUM_TUNING_SCALES 3
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
int nNvlDomains; // number of NVLink domains
|
|
|
|
|
int minRanksPerNvlDomain; // minimum ranks across all NVLink domains
|
|
|
|
|
int maxRanksPerNvlDomain; // maximum ranks across all NVLink domains
|
|
|
|
|
} ncclNvlDomainInfo_v5_t;
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
double baseLatencies [NCCL_NUM_ALGORITHMS][NCCL_NUM_PROTOCOLS];
|
|
|
|
|
double hwLatencies [NCCL_NUM_HW_LINKS][NCCL_NUM_ALGORITHMS][NCCL_NUM_PROTOCOLS];
|
|
|
|
|
|
|
|
|
|
double llMaxBws [NCCL_NUM_COMPCAPS][NCCL_NUM_TUNING_SCALES];
|
|
|
|
|
double perChMaxRingLL128Bws [NCCL_NUM_COMPCAPS][NCCL_NUM_TUNING_SCALES];
|
|
|
|
|
double perChMaxTreeLL128Bws [NCCL_NUM_COMPCAPS][NCCL_NUM_TUNING_SCALES];
|
|
|
|
|
double perChMaxTreeBws [NCCL_NUM_COMPCAPS][NCCL_NUM_TUNING_SCALES];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} ncclTunerConstants_v5_t;
|
|
|
|
|
|
2023-09-26 05:47:28 -07:00
|
|
|
// API to be implemented by external tuner
|
|
|
|
|
typedef struct {
|
|
|
|
|
// Name of the tuner
|
|
|
|
|
const char* name;
|
|
|
|
|
|
|
|
|
|
// Initializes tuner states.
|
2024-03-26 06:08:55 -07:00
|
|
|
// Inputs:
|
2025-09-02 13:21:14 -07:00
|
|
|
// - commId: communicator identifier
|
2024-03-26 06:08:55 -07:00
|
|
|
// - nRanks: number of ranks in current communicator. Each communicator initialize its own tuner.
|
|
|
|
|
// - nNodes: number of nodes in current communicator.
|
|
|
|
|
// - logFunction: a logFunction can be useful to integrate logging together with NCCL core.
|
2025-09-02 13:21:14 -07:00
|
|
|
// - nvlDomainInfo: NVL domain information struct
|
2024-03-26 06:08:55 -07:00
|
|
|
// Outputs:
|
|
|
|
|
// - context: tuner context object
|
2025-09-02 13:21:14 -07:00
|
|
|
// Input/Output:
|
|
|
|
|
// - constants: tuner constants
|
|
|
|
|
ncclResult_t (*init)(void** ctx, uint64_t commId, size_t nRanks, size_t nNodes, ncclDebugLogger_t logFunction,
|
|
|
|
|
ncclNvlDomainInfo_v5_t* nvlDomainInfo, ncclTunerConstants_v5_t* constants);
|
2023-09-26 05:47:28 -07:00
|
|
|
|
|
|
|
|
// Gets info (algo, protocol, number of ctas and threads) for a given collective.
|
|
|
|
|
// Inputs:
|
2024-03-26 06:08:55 -07:00
|
|
|
// - context: tuner context object
|
2023-09-26 05:47:28 -07:00
|
|
|
// - collType: collective type , e.g., allreduce, allgather…
|
|
|
|
|
// - nBytes: collective size in bytes
|
|
|
|
|
// - numPipeOps: number of operations in the group
|
2024-06-11 01:28:01 -07:00
|
|
|
// - numAlgo: number of algorithms in collCostTable
|
|
|
|
|
// - numProto: number of protocols in collCostTable
|
2024-12-18 08:26:06 -08:00
|
|
|
// - regBuff: can register user buffer
|
2023-09-26 05:47:28 -07:00
|
|
|
//
|
|
|
|
|
// Outputs:
|
|
|
|
|
// - nChannels: number of channels (hence SMs) to be used.
|
|
|
|
|
//
|
2024-06-11 01:28:01 -07:00
|
|
|
// InOut:
|
|
|
|
|
// - collCostTable: collective cost table, generated by NCCL core, containing algo|proto|time entries for collType.
|
|
|
|
|
// NCCL core sets ignored algo/proto cost table entries to -1.0 (NCCL_ALGO_PROTO_IGNORE).
|
|
|
|
|
//
|
2023-09-26 05:47:28 -07:00
|
|
|
// If getCollInfo() does not return ncclSuccess, NCCL will fall back to the
|
|
|
|
|
// default tuning for the given collective.
|
|
|
|
|
// Also, the plugin is allowed to not set any output, or set only the
|
|
|
|
|
// algorithm and protocol, but not only the algorithm or only the protocol.
|
|
|
|
|
// Unset fields will be set automatically by NCCL.
|
2024-03-26 06:08:55 -07:00
|
|
|
ncclResult_t (*getCollInfo)(void* context, ncclFunc_t collType, size_t nBytes,
|
2024-06-11 01:28:01 -07:00
|
|
|
int numPipeOps, float** collCostTable, int numAlgo, int numProto,
|
2024-12-18 08:26:06 -08:00
|
|
|
int regBuff, int* nChannels);
|
2023-09-26 05:47:28 -07:00
|
|
|
|
|
|
|
|
// Terminates the plugin and cleans up any resources that the plugin allocated.
|
2024-03-26 06:08:55 -07:00
|
|
|
// context: tuner context object
|
2025-09-02 13:21:14 -07:00
|
|
|
ncclResult_t (*finalize)(void* context);
|
|
|
|
|
} ncclTuner_v5_t;
|
2023-09-26 05:47:28 -07:00
|
|
|
|
2025-09-02 13:21:14 -07:00
|
|
|
typedef ncclTuner_v5_t ncclTuner_t;
|
|
|
|
|
typedef ncclNvlDomainInfo_v5_t ncclNvlDomainInfo_t;
|
|
|
|
|
typedef ncclTunerConstants_v5_t ncclTunerConstants_t;
|
2023-09-26 05:47:28 -07:00
|
|
|
|
2025-09-02 13:21:14 -07:00
|
|
|
#define NCCL_TUNER_PLUGIN_SYMBOL "ncclTunerPlugin_v5"
|
2023-09-26 05:47:28 -07:00
|
|
|
|
|
|
|
|
#endif
|