
..., so that users don't manually need to specify '-foffload-options=-lgfortran', '-foffload-options=-lm' in addition to '-lgfortran', '-lm' (specified manually, or implicitly by the driver). gcc/ * gcc.cc (driver_handle_option): Forward host '-lgfortran', '-lm' to offloading compilation. * config/gcn/mkoffload.cc (main): Adjust. * config/nvptx/mkoffload.cc (main): Likewise. * doc/invoke.texi (foffload-options): Update example. libgomp/ * testsuite/libgomp.fortran/fortran.exp (lang_link_flags): Don't set. * testsuite/libgomp.oacc-fortran/fortran.exp (lang_link_flags): Likewise. * testsuite/libgomp.c/simd-math-1.c: Remove '-foffload-options=-lm'. * testsuite/libgomp.fortran/fortran-torture_execute_math.f90: Likewise. * testsuite/libgomp.oacc-fortran/fortran-torture_execute_math.f90: Likewise.
117 lines
3.7 KiB
Text
117 lines
3.7 KiB
Text
# This whole file adapted from libgomp.fortran/fortran.exp.
|
|
|
|
load_lib libgomp-dg.exp
|
|
load_gcc_lib gcc-dg.exp
|
|
load_gcc_lib gfortran-dg.exp
|
|
|
|
if { $blddir != "" } {
|
|
set libgfortran_library_path "../libgfortran/.libs"
|
|
set shlib_ext [get_shlib_extension]
|
|
if { ![file exists "${blddir}/${libgfortran_library_path}/libgfortran.a"]
|
|
&& ![file exists "${blddir}/${libgfortran_library_path}/libgfortran.${shlib_ext}"] } {
|
|
verbose -log "No libgfortran library found, will not execute fortran tests"
|
|
unset libgfortran_library_path
|
|
return
|
|
}
|
|
lappend lang_library_paths $libgfortran_library_path
|
|
|
|
set libquadmath_library_path "../libquadmath/.libs"
|
|
if { [file exists "${blddir}/${libquadmath_library_path}/libquadmath.a"]
|
|
|| [file exists "${blddir}/${libquadmath_library_path}/libquadmath.${shlib_ext}"] } {
|
|
lappend lang_library_paths $libquadmath_library_path
|
|
} else {
|
|
set libquadmath_library_path ""
|
|
}
|
|
} elseif { ![info exists GFORTRAN_UNDER_TEST] } {
|
|
verbose -log "GFORTRAN_UNDER_TEST not defined, will not execute fortran tests"
|
|
return
|
|
}
|
|
if { $blddir != "" } {
|
|
set lang_source_re {^.*\.[fF](|90|95|03|08)$}
|
|
set lang_include_flags "-fintrinsic-modules-path=${blddir}"
|
|
}
|
|
lappend ALWAYS_CFLAGS "compiler=$GFORTRAN_UNDER_TEST"
|
|
|
|
# Initialize dg.
|
|
dg-init
|
|
|
|
# Turn on OpenACC.
|
|
lappend ALWAYS_CFLAGS "additional_flags=-fopenacc"
|
|
|
|
|
|
# Gather a list of all tests.
|
|
set tests [lsort [find $srcdir/$subdir *.\[fF\]{,90,95,03,08}]]
|
|
|
|
set ld_library_path $always_ld_library_path
|
|
if { $blddir != "" } {
|
|
append ld_library_path ":${blddir}/${libgfortran_library_path}"
|
|
|
|
if { $libquadmath_library_path != "" } {
|
|
append ld_library_path ":${blddir}/${libquadmath_library_path}"
|
|
}
|
|
}
|
|
append ld_library_path [gcc-set-multilib-library-path $GCC_UNDER_TEST]
|
|
set_ld_library_path_env_vars
|
|
|
|
# Test with all available offload targets, and with offloading disabled.
|
|
foreach offload_target [concat [split $offload_targets ","] "disable"] {
|
|
global openacc_device_type
|
|
set openacc_device_type [offload_target_to_openacc_device_type $offload_target]
|
|
set tagopt "-DACC_DEVICE_TYPE_$openacc_device_type=1"
|
|
|
|
switch $openacc_device_type {
|
|
"" {
|
|
unsupported "$subdir $offload_target offloading"
|
|
continue
|
|
}
|
|
host {
|
|
set acc_mem_shared 1
|
|
}
|
|
nvidia {
|
|
if { ![check_effective_target_openacc_nvidia_accel_present] } {
|
|
# Don't bother; execution testing is going to FAIL.
|
|
untested "$subdir $offload_target offloading: supported, but hardware not accessible"
|
|
continue
|
|
}
|
|
|
|
set acc_mem_shared 0
|
|
}
|
|
radeon {
|
|
if { ![check_effective_target_openacc_radeon_accel_present] } {
|
|
# Don't bother; execution testing is going to FAIL.
|
|
untested "$subdir $offload_target offloading: supported, but hardware not accessible"
|
|
continue
|
|
}
|
|
|
|
set acc_mem_shared 0
|
|
}
|
|
default {
|
|
error "Unknown OpenACC device type: $openacc_device_type (offload target: $offload_target)"
|
|
}
|
|
}
|
|
set tagopt "$tagopt -DACC_MEM_SHARED=$acc_mem_shared"
|
|
|
|
# To avoid compilation overhead, and to keep simple '-foffload=[...]'
|
|
# handling in test cases, by default only build for the offload target
|
|
# that we're actually going to test.
|
|
set tagopt "$tagopt -foffload=$offload_target"
|
|
# Force usage of the corresponding OpenACC device type.
|
|
setenv ACC_DEVICE_TYPE $openacc_device_type
|
|
|
|
# For Fortran we're doing torture testing, as Fortran has far more tests
|
|
# with arrays etc. that testing just -O0 or -O2 is insufficient, that is
|
|
# typically not the case for C/C++.
|
|
gfortran-dg-runtest $tests "$tagopt" ""
|
|
}
|
|
unset offload_target
|
|
|
|
if { $blddir != "" } {
|
|
unset lang_source_re
|
|
unset lang_include_flags
|
|
unset libgfortran_library_path
|
|
unset libquadmath_library_path
|
|
unset lang_library_paths
|
|
}
|
|
|
|
# All done.
|
|
dg-finish
|