blob: b4111877c3fb051e9913a16d2f51b76b0988be5f [file] [log] [blame]
#pragma once
#include <bitset>
namespace torch {
static constexpr std::size_t MAX_CUDA_DEVICES = 64;
using device_set = std::bitset<MAX_CUDA_DEVICES>;
}