Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions deps/ReactantExtra/API.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -738,13 +738,11 @@ struct DeviceProperties {
int maxThreadsPerBlock;
int maxThreadsDim[3];
int maxGridSize[3];
int clockRate;
size_t totalConstMem;
int major;
int minor;
int multiProcessorCount;
int canMapHostMemory;
int computeMode;
int l2CacheSize;
int maxThreadsPerMultiProcessor;
};
Expand Down Expand Up @@ -805,13 +803,11 @@ REACTANT_ABI void ReactantCudaDeviceGetProperties(DeviceProperties *jlprops,
jlprops->maxGridSize[0] = props.maxGridSize[0];
jlprops->maxGridSize[1] = props.maxGridSize[1];
jlprops->maxGridSize[2] = props.maxGridSize[2];
jlprops->clockRate = props.clockRate;
jlprops->totalConstMem = props.totalConstMem;
jlprops->major = props.major;
jlprops->minor = props.minor;
jlprops->multiProcessorCount = props.multiProcessorCount;
jlprops->canMapHostMemory = props.canMapHostMemory;
jlprops->computeMode = props.computeMode;
jlprops->l2CacheSize = props.l2CacheSize;
jlprops->maxThreadsPerMultiProcessor = props.maxThreadsPerMultiProcessor;
}
Expand Down
Loading