Search found 31 matches: cached

Return to advanced search

Re: phpBB to LLM

It's been two days since I've had anything to do with Python! DESKTOP PC with Windows 11 pro: Processor: Intel(R) Core(TM) i9-10920X CPU @ 3.50GHz, 3504 MHz, 12 core(s), 24 logical processor(s) Data carrier: Samsung SSD 970 EVO Plus 1TB 64GB RAM NVIDIA RTX 2080TI First attempt, without GPU support (...
by alerchster
Wed Dec 27, 2023 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4684

Re: phpBB to LLM

Hello Antonio, From the looks of it, the training doesn't just happen in one round: First round generated a 715MB file "cached_lm_GPT2Tokenizer_128_fivetech_forums_20231222.sql" in 16min. The second round is actually the training and I'm now at 0% after 47 minutes and the open duration is ...
by alerchster
Tue Dec 26, 2023 6:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4684

Re: phpBB to LLM

python is 3.12 pip is uptodate antivirus is stopped ? C:\fwh\AI>pip install pytorch Collecting pytorch Using cached pytorch-1.0.2.tar.gz (689 bytes) Installing build dependencies ... done Getting requirements to build wheel ... done Preparing metadata (pyproject.toml) ... done ...
by alerchster
Mon Dec 25, 2023 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: phpBB to LLM
Replies: 33
Views: 4684

Re: ADO RDD xHarbour

... fast < 3 Secs building the recordset. The memory consumption gets to max 600Mb. I can have > 50 recordset opened at same time. With the cached recordsets memory consumption will not increase. AdoRdd can cache the recordsets in the beginning of the application with: SET ADO PRE OPEN THRESHOLD ...
by AHF
Mon Apr 24, 2017 11:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446320

Re: ADO RDD xHarbour

... To avoid cache for ex other historic tables with same name. Please remember that even we dont use this SET every time a table is opened it will be cached. Again if any of those tables have millions of records if we dont have any query to limit the nr of records returned adordd will load all those ...
by AHF
Wed Apr 12, 2017 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446320

Re: Nuevo ADORDD

... SET TRESHOLD was not finding aMask if used table and SQL were with different case. Now all upper case. 5) Pre opening of recorsets optimized and cached for different where clauses on same table. If the table its below the SET THRESHOLD and its already opened in another work area the set its not ...
by AHF
Thu Nov 26, 2015 5:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16560

Re: ADO RDD xHarbour

... SET TRESHOLD was not finding aMask if used table and SQL were with different case. Now all upper case. 5) Pre opening of recorsets optimized and cached for different where clauses on same table. If the table its below the SET THRESHOLD and its already opened in another work area the set its not ...
by AHF
Thu Nov 26, 2015 5:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446320

Re: ADO RDD xHarbour

Gunther,

It should be closed auto by adordd.

When you end your app (x)Harbour auto calls ADO_EXIT that calls ADODB_CLOSE().
This last closes all tables (recordsets) and cached resordsets and after the connection to the server.

Please check the code.
Is it not working?
by AHF
Wed Nov 18, 2015 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446320

Re: Velocidad con xbrowse

... Usually yes for two reasons: 1. much smaller indexes what is significant when index files are accessed by network or they are two big to be cached by system in local access. 2. In NTX format record number is not part of index key. It means that after GOTO or when record is modified NTX RDD ...
by hmpaquito
Mon Apr 06, 2015 11:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Velocidad con xbrowse
Replies: 7
Views: 1568

Re: use FLOCK()

... file until after skip is complete. This is to ensure that the index tree has not changed until after the next record is resolved. Having the locks cached is not the best idea when each users machine is managing the indexes. If you are using client/server then there is no problem.
by Gale FORd
Fri Jan 30, 2015 11:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: use FLOCK()
Replies: 24
Views: 6097

Re: ads error 7008

... the query. If the cursor handle was not explicitly closed by calling AdsCloseSQLStatement, the underlying table(s) will remain open in a "cached open" state by the Advantage server to improve the performance of subsequent queries. However, this "cached open" state will cause ...
by hmpaquito
Fri Nov 28, 2014 6:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ads error 7008 (arreglado)
Replies: 5
Views: 1431

Re: ADO & SQL INSERT Statement

Avista; Most SQL engines can execute a prepared query, also known as a unnamed parameters in SQL. When such SQL executes it is cached by the server and optimized to be executed many times. Each time you execute the SQL you'd only need to change the values for the parameters. Example: ...
by reinaldocrespo
Wed Jul 30, 2014 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO & SQL INSERT Statement
Replies: 9
Views: 2218

Re: Call Center - Slow Application Launch

... you are running, the response I get for example 50 sec. When I send the same query again, the response I get for example, 1.2 sec. The reason is cached internally in the MySQL database. When I start the program, in the folder there are several ComboBox and ... ON CHANGE FunX (); Function FunX() ...
by metro
Wed Jul 30, 2014 1:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Call Center - Slow Application Launch
Replies: 17
Views: 4451

Re: Call Center - Slow Application Launch

... the SQL query. When executed for the first time, takes on a large base for a long time. Another time, when he executed the same query is already cached and executed significantly shorter. By optimizing queries and good indexing applications work very well with large databases. Summary, Mr. Rao, ...
by metro
Tue Jul 29, 2014 8:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Call Center - Slow Application Launch
Replies: 17
Views: 4451

Re: tData for SQL

... query, rather than opening an entire table, seeking and filtering data. One thing to keep in mind using recordsets is that they are local ( cached ) to the workstation that opened them and in a multi-user environment you need to keep in mind data visibility. Meaning, if I have a workstation ...
by Rick Lipkin
Wed Jul 09, 2014 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: tData for SQL
Replies: 24
Views: 6202
Next

Return to advanced search

cron