Path: csiph.com!xmission!news.alt.net!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news.iecc.com!.POSTED.news.iecc.com!nerds-end From: "A. K." Newsgroups: comp.compilers Subject: Re: Parsing using a Graphics Processing Unit (GPU)? Date: Tue, 1 Sep 2020 01:25:54 -0700 (PDT) Organization: Compilers Central Lines: 11 Sender: news@iecc.com Approved: comp.compilers@iecc.com Message-ID: <20-09-003@comp.compilers> References: <20-09-001@comp.compilers> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Injection-Info: gal.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="82734"; mail-complaints-to="abuse@iecc.com" Keywords: parse, performance Posted-Date: 01 Sep 2020 12:04:11 EDT X-submission-address: compilers@iecc.com X-moderator-address: compilers-request@iecc.com X-FAQ-and-archives: http://compilers.iecc.com In-Reply-To: <20-09-001@comp.compilers> Xref: csiph.com comp.compilers:2574 Am Dienstag, 1. September 2020 06:44:53 UTC+2 schrieb Roger L Costello: > Has the parsing community found a way to take advantage of GPUs? The old IT classic still holds: Early optimization is the root of all evil. IOW: first identify your bottlenecks by profiling your parsing routines. Repeat it. Most probably bottlenecks will have to do with I/O speed and selected algorithms. Memory access speed perhaps, CPU/GPU performance very behind.