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