Deutsch English Français Italiano |
<jwvjzhibrcf.fsf-monnier+comp.arch@gnu.org> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!2.eu.feeder.erje.net!feeder.erje.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Stefan Monnier <monnier@iro.umontreal.ca> Newsgroups: comp.arch Subject: Non-pipelined FDIV/SQRT (was: Continuations) Date: Thu, 18 Jul 2024 12:33:13 -0400 Organization: A noiseless patient Spider Lines: 13 Message-ID: <jwvjzhibrcf.fsf-monnier+comp.arch@gnu.org> References: <v6tbki$3g9rg$1@dont-email.me> <47689j5gbdg2runh3t7oq2thodmfkalno6@4ax.com> <v71vqu$gomv$9@dont-email.me> <116d9j5651mtjmq4bkjaheuf0pgpu6p0m8@4ax.com> <f8c6c5b5863ecfc1ad45bb415f0d2b49@www.novabbs.org> <7u7e9j5dthm94vb2vdsugngjf1cafhu2i4@4ax.com> <0f7b4deb1761f4c485d1dc3b21eb7cb3@www.novabbs.org> <v78soj$1tn73$1@dont-email.me> <4bbc6af7baab612635eef0de4847ba5b@www.novabbs.org> <v792kn$1v70t$1@dont-email.me> <ef12aa647464a3ebe3bd208c13a3c40c@www.novabbs.org> <tD7mO.11270$Z2s2.1953@fx05.iad> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Date: Thu, 18 Jul 2024 18:33:13 +0200 (CEST) Injection-Info: dont-email.me; posting-host="f1b550e13658ed8426c48e217a38ebc1"; logging-data="2633108"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+OTHi+MFgqoVtS0JvNf8QOUUW5SB0q2fo=" User-Agent: Gnus/5.13 (Gnus v5.13) Cancel-Lock: sha1:NgVDhedfieRU2cLpEDcX1uDnIiY= sha1:r6Ahb6w/EWvtiiohSZMGzLbskRY= Bytes: 2121 > If the FP multiplier is a 4-stage pipeline, and FDIV is iterating using > the multiplier, can the pipeline get a mix of multiple operations going > at once? FDIV for both Newton–Raphson and Goldschmidt iterates serially > so each can only use one of the 4 pipeline slots. Something I've been wondering for a while, indeed. IOW, is there enough parallelism inside the FDIV/SQRT "microcode" to keep the FMAC fully busy (my naive understanding is that there isn't)? If not, do current CPU make the FMAC available for other operations while an FDIV/SQRT is in progress? If not, how hard would it be? Stefan