diff options
Diffstat (limited to 'libgomp/icv-device.c')
-rw-r--r-- | libgomp/icv-device.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libgomp/icv-device.c b/libgomp/icv-device.c index b643cb29ee7..9cb394e74dc 100644 --- a/libgomp/icv-device.c +++ b/libgomp/icv-device.c @@ -49,20 +49,6 @@ omp_get_num_devices (void) } int -omp_get_num_teams (void) -{ - /* Hardcoded to 1 on host, MIC, HSAIL? Maybe variable on PTX. */ - return 1; -} - -int -omp_get_team_num (void) -{ - /* Hardcoded to 0 on host, MIC, HSAIL? Maybe variable on PTX. */ - return 0; -} - -int omp_is_initial_device (void) { /* Hardcoded to 1 on host, should be 0 on MIC, HSAIL, PTX. */ @@ -72,6 +58,4 @@ omp_is_initial_device (void) ialias (omp_set_default_device) ialias (omp_get_default_device) ialias (omp_get_num_devices) -ialias (omp_get_num_teams) -ialias (omp_get_team_num) ialias (omp_is_initial_device) |