This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [hsa merge 07/10] IPA-HSA pass
- From: Jakub Jelinek <jakub at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org, Martin Liska <mliska at suse dot cz>
- Date: Fri, 15 Jan 2016 17:09:54 +0100
- Subject: Re: [hsa merge 07/10] IPA-HSA pass
- Authentication-results: sourceware.org; auth=none
- References: <20160113173925 dot 220029649 at virgil dot suse dot cz> <20160113173925 dot 776317025 at virgil dot suse dot cz> <20160114125858 dot GE3017 at tucnak dot redhat dot com> <20160115145323 dot GL3982 at virgil dot suse dot cz> <20160115150149 dot GX3017 at tucnak dot redhat dot com> <20160115160234 dot GO3982 at virgil dot suse dot cz>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Fri, Jan 15, 2016 at 05:02:34PM +0100, Martin Jambor wrote:
> How do other accelerators cope with the situation when half of the
> application is compiled with the accelerator disabled? (Would some of
> their calls to GOMP_target_ext lead to abort?)
GOMP_target_ext should never abort (unless internal error), worst case it
just falls back into the host fallback.
Jakub