From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5DCA63858425; Sat, 12 Nov 2022 03:28:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5DCA63858425 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1668223703; bh=K4r434Nb9UuI3wDrg+tpvoY9A4js4s/z5uYCJHKBnoE=; h=From:To:Subject:Date:From; b=LNApk47UMHZzV92Usra52oI8dpVbFC+7iD8W4fiJ4h5Hrd8yXJHMFjjilwaaXh9ik s6MpUGP2dG2kWyGUcw+sikF2NwtexHrtz73UzEzkvetWEGQL5WesepOc1l9qJmvcWs 9syTbl84vV09esRPRZXw3QW8/RbbQ0mm6vImNWiI= From: "t3suzuki at ucsd dot edu" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/107660] New: Running binaries compiled with g++11 or later produces different results than g++ version 10 or earlier Date: Sat, 12 Nov 2022 03:28:20 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 12.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: t3suzuki at ucsd dot edu X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107660 Bug ID: 107660 Summary: Running binaries compiled with g++11 or later produces different results than g++ version 10 or earlier Product: gcc Version: 12.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: t3suzuki at ucsd dot edu Target Milestone: --- [gcc version] $ ./g++ -v Using built-in specs. COLLECT_GCC=3D./g++ COLLECT_LTO_WRAPPER=3D/home/tomoya-s/gcc-12.2.0/install/libexec/gcc/x86_64-= pc-linux-gnu/12.2.0/lto-wrapper Target: x86_64-pc-linux-gnu Configured with: ./configure --prefix=3D/home/tomoya-s/gcc-12.2.0/install --disable-multilib Thread model: posix Supported LTO compression algorithms: zlib zstd gcc version 12.2.0 (GCC) [the command line that triggers the bug] % git clone https://github.com/sbeamer/gapbs.git % cd gapbs % make bfs % ./bfs -g 10 -n 1 [the output by using g++-12.2.0 (or g++-11) ] Generate Time: 0.00282 Build Time: 0.00044 Graph has 1024 nodes and 10496 undirected edges for degree: 10 Source: 204 i 0.00001 td 2 0.00000 td 59 0.00000 e 0.00000 bu 711 0.00003 bu 123 0.00001 bu 0 0.00001 c 0.00000 Trial Time: 0.00017 Average Time: 0.00017 [the output by using g++-10 or earlier or clang++] Generate Time: 0.00797 Build Time: 0.00102 Graph has 1024 nodes and 10496 undirected edges for degree: 10 Source: 204 i 0.00001 td 15 0.00001 e 0.00000 bu 615 0.00004 bu 264 0.00001 bu 1 0.00001 c 0.00000 td 0 0.00000 Trial Time: 0.00017 Average Time: 0.00017 Of course, the execution time is different. We expect the numbers 2 and 59 and 711 after td and bu to be the same. This is because the input and the process itself are the same, and there is= no randomness inside the process (random seed is fixed). Note that this program uses OpenMP, but even if we disable it, the results = will be different depending on the g++ version as well.=