blob: 299ae97176d808682f3ba4eace8157fdc97b9c09 [file] [log] [blame]
#pragma once
#include "THCGeneral.h"
/* Global state of THC. */
struct THCState {
struct THCRNGState* rngState;
struct cudaDeviceProp* deviceProperties;
/* Set of all allocated resources. blasHandles and sparseHandles do not have
a default and must be explicitly initialized. We always initialize 1
blasHandle and 1 sparseHandle but we can use more.
*/
THCCudaResourcesPerDevice* resourcesPerDevice;
/* Captured number of devices upon startup; convenience for bounds checking */
int numDevices;
/* Allocator using cudaMallocHost. */
// NB: These allocators (specifically, cudaHostAllocator) MUST implement
// maybeGlobalBoundDeleter, because we have a few use-cases where we need to
// do raw allocations with them (for Thrust).
// TODO: Make this statically obvious
at::Allocator* cudaHostAllocator;
at::Allocator* cudaDeviceAllocator;
/* Table of enabled peer-to-peer access between directed pairs of GPUs.
If i accessing allocs on j is enabled, p2pAccess[i][j] is 1; 0 otherwise. */
int** p2pAccessEnabled;
};