Home
last modified time | relevance | path

Searched refs:dprop_ (Results 1 – 1 of 1) sorted by relevance

/petsc/src/sys/objects/device/impls/cupm/
H A Dcupmdevice.cxx25 cupmDeviceProp_t dprop_{}; // cudaDeviceProp appears to be an actual struct, i.e. you can't member in Petsc::device::cupm::Device::DeviceInternal
44 PETSC_NODISCARD auto prop() const -> const decltype(dprop_) & { return dprop_; } in prop()
102 PetscCallCUPM(cupmGetDeviceProperties(&dprop_, id_)); in configure()
103 PetscDeviceCUPMRuntimeArch = dprop_.major * 10 + dprop_.minor; in configure()
130 PetscCall(PetscViewerASCIIPrintf(sviewer, "[%d] name: %s\n", rank, dprop_.name)); in view()
132 …PetscCall(PetscViewerASCIIPrintf(sviewer, "Compute capability: %d.%d\n", dprop_.major, dprop_.mino… in view()
133 …PetscCall(PetscViewerASCIIPrintf(sviewer, "Multiprocessor Count: %d\n", dprop_.multiProcessorCount… in view()
134 …iewer, "Maximum Grid Dimensions: %d x %d x %d\n", dprop_.maxGridSize[0], dprop_.maxGridSize[1], dp… in view()
135 …er, "Maximum Block Dimensions: %d x %d x %d\n", dprop_.maxThreadsDim[0], dprop_.maxThreadsDim[1], in view()
136 …PetscCall(PetscViewerASCIIPrintf(sviewer, "Maximum Threads Per Block: %d\n", dprop_.maxThreadsPerB… in view()
[all …]