DEBSOURCES
Skip Quicknav
sources / pytorch / 1.7.1-7 / torch / csrc / cuda / device_set.h
12345678910
#pragma once #include <bitset> namespace torch { static constexpr size_t MAX_CUDA_DEVICES = 64; using device_set = std::bitset<MAX_CUDA_DEVICES>; }