Lines Matching refs:propval
1755 union goacc_property_value propval = { .val = 0 }; in GOMP_OFFLOAD_openacc_get_property() local
1762 return propval; in GOMP_OFFLOAD_openacc_get_property()
1772 CUDA_CALL_ERET (propval, cuDeviceTotalMem, &total_mem, ptx_dev->dev); in GOMP_OFFLOAD_openacc_get_property()
1773 propval.val = total_mem; in GOMP_OFFLOAD_openacc_get_property()
1782 CUDA_CALL_ERET (propval, cuCtxGetDevice, &ctxdev); in GOMP_OFFLOAD_openacc_get_property()
1784 CUDA_CALL_ERET (propval, cuMemGetInfo, &free_mem, &total_mem); in GOMP_OFFLOAD_openacc_get_property()
1789 CUDA_CALL_ERET (propval, cuCtxPushCurrent, ptx_dev->ctx); in GOMP_OFFLOAD_openacc_get_property()
1790 CUDA_CALL_ERET (propval, cuMemGetInfo, &free_mem, &total_mem); in GOMP_OFFLOAD_openacc_get_property()
1797 CUDA_CALL_ERET (propval, cuCtxCreate, &new_ctx, CU_CTX_SCHED_AUTO, in GOMP_OFFLOAD_openacc_get_property()
1799 CUDA_CALL_ERET (propval, cuMemGetInfo, &free_mem, &total_mem); in GOMP_OFFLOAD_openacc_get_property()
1802 propval.val = free_mem; in GOMP_OFFLOAD_openacc_get_property()
1806 propval.ptr = ptx_dev->name; in GOMP_OFFLOAD_openacc_get_property()
1809 propval.ptr = "Nvidia"; in GOMP_OFFLOAD_openacc_get_property()
1812 propval.ptr = cuda_driver_version_s; in GOMP_OFFLOAD_openacc_get_property()
1819 return propval; in GOMP_OFFLOAD_openacc_get_property()