Re: Setting things up for using parallel STL C++17

2022-09-09 Thread Scott Kostyshak
On Wed, Aug 31, 2022 at 10:02:55AM -0400, Scott Kostyshak wrote: > On Wed, Aug 31, 2022 at 12:32:18PM +0200, Pavel Sanda wrote: > > On Tue, Aug 30, 2022 at 09:36:42PM -0400, Scott Kostyshak wrote: > > > > > Does anyone know of any candidates in LyX's code for using such > > > > > parallelization?

Re: Setting things up for using parallel STL C++17

2022-08-31 Thread Scott Kostyshak
On Wed, Aug 31, 2022 at 06:09:20PM +0200, Jean-Marc Lasgouttes wrote: > Le 31/08/2022 à 17:46, Pavel Sanda a écrit : > > Seems like too little music for a new tab. Fair enough. > But I wouldn't be against > > preference checkbox for loading all images when document loads (by > > default false).

Re: Setting things up for using parallel STL C++17

2022-08-31 Thread Jean-Marc Lasgouttes
Le 31/08/2022 à 17:46, Pavel Sanda a écrit : Seems like too little music for a new tab. But I wouldn't be against preference checkbox for loading all images when document loads (by default false). If the loading is done in background, I am not sure that it would hurt. I also think that we have

Re: Setting things up for using parallel STL C++17

2022-08-31 Thread Pavel Sanda
On Wed, Aug 31, 2022 at 10:02:55AM -0400, Scott Kostyshak wrote: > > > By the way, I've sometimes wanted a more aggressive graphics loader. I > > > think it's pretty impressive how it currently works and converts things > > > on-the-fly with scrolling, but I would like to be able to say "don't > >

Re: Setting things up for using parallel STL C++17

2022-08-31 Thread Scott Kostyshak
On Wed, Aug 31, 2022 at 12:32:18PM +0200, Pavel Sanda wrote: > On Tue, Aug 30, 2022 at 09:36:42PM -0400, Scott Kostyshak wrote: > > > > Does anyone know of any candidates in LyX's code for using such > > > > parallelization? > > > > > > - As written in another thread if you can get parallel graph

Re: Setting things up for using parallel STL C++17

2022-08-31 Thread Pavel Sanda
On Tue, Aug 30, 2022 at 09:36:42PM -0400, Scott Kostyshak wrote: > > > Does anyone know of any candidates in LyX's code for using such > > > parallelization? > > > > - As written in another thread if you can get parallel graphics conversions > > for document load and export, that would be cool.

Re: Setting things up for using parallel STL C++17

2022-08-30 Thread Scott Kostyshak
On Tue, Aug 30, 2022 at 01:46:43PM +0200, Pavel Sanda wrote: > On Mon, Aug 29, 2022 at 03:42:49PM -0400, Scott Kostyshak wrote: > > Does anyone know of any candidates in LyX's code for using such > > parallelization? > > - As written in another thread if you can get parallel graphics conversions

Re: Setting things up for using parallel STL C++17

2022-08-30 Thread Pavel Sanda
On Mon, Aug 29, 2022 at 03:42:49PM -0400, Scott Kostyshak wrote: > Does anyone know of any candidates in LyX's code for using such > parallelization? - As written in another thread if you can get parallel graphics conversions for document load and export, that would be cool. - Another slow thi

Setting things up for using parallel STL C++17

2022-08-29 Thread Scott Kostyshak
As part of C++17, now the STL can optionally use parallelization. And in fact it's so easy that even I can do it. On Ubuntu 22.04, I just had to install the package 'libtbb-dev'. Then, we need to add -ltbb to the link command. Then, we add the following include in whichever source file we want