Skip to content

Commit 3bd7508

Browse files
authored
fix: clockRate/computeMode not present in 13.0 (#1766)
1 parent 5a3c3bc commit 3bd7508

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

deps/ReactantExtra/API.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -738,13 +738,11 @@ struct DeviceProperties {
738738
int maxThreadsPerBlock;
739739
int maxThreadsDim[3];
740740
int maxGridSize[3];
741-
int clockRate;
742741
size_t totalConstMem;
743742
int major;
744743
int minor;
745744
int multiProcessorCount;
746745
int canMapHostMemory;
747-
int computeMode;
748746
int l2CacheSize;
749747
int maxThreadsPerMultiProcessor;
750748
};
@@ -805,13 +803,11 @@ REACTANT_ABI void ReactantCudaDeviceGetProperties(DeviceProperties *jlprops,
805803
jlprops->maxGridSize[0] = props.maxGridSize[0];
806804
jlprops->maxGridSize[1] = props.maxGridSize[1];
807805
jlprops->maxGridSize[2] = props.maxGridSize[2];
808-
jlprops->clockRate = props.clockRate;
809806
jlprops->totalConstMem = props.totalConstMem;
810807
jlprops->major = props.major;
811808
jlprops->minor = props.minor;
812809
jlprops->multiProcessorCount = props.multiProcessorCount;
813810
jlprops->canMapHostMemory = props.canMapHostMemory;
814-
jlprops->computeMode = props.computeMode;
815811
jlprops->l2CacheSize = props.l2CacheSize;
816812
jlprops->maxThreadsPerMultiProcessor = props.maxThreadsPerMultiProcessor;
817813
}

0 commit comments

Comments
 (0)