[fpc-pascal] Increasing Image Resolution with Neural Networks

2017-12-31 Thread Joao Schuler
Hello, To whom might be interested, I've just recorded a video showing how to increase image resolution using free pascal: https://www.youtube.com/watch?v=jdFixaZ2P4w I consider this as a step in the project as this is the first time an image generative neural network and it's supporting API is ad

[fpc-pascal] AVX512 in ASM - From where should I start?

2018-06-14 Thread Joao Schuler
Hello, In the case that I feel brave enough to code support for AVX512 on asm sections, from where should I start? This question is related to: https://forum.lazarus.freepascal.org/index.php/topic,41572.0.html I would like to use ZMM registers in my code and do things like these: asm vmovups zmm

Re: [fpc-pascal] AVX512 in ASM - From where should I start?

2018-06-14 Thread Joao Schuler
AWESOME NEWS! Thank you. Should I start by adding more tasm*.pp testing files at fpc/branches/tg74/avx512/tests/test/ specific for AVX512 ? On Fri, Jun 15, 2018 at 6:52 AM, Florian Klämpfl wrote: > Am 14.06.2018 um 22:37 schrieb Joao Schuler: > >> Hello, >> In the case that I

Re: [fpc-pascal] Feature announcement: Dynamic array extensions

2018-06-18 Thread Joao Schuler
If I can, I would like to vote for "&" instead of "+". As I use Free Pascal with math (neural networks), I would vote for "&" with concatenation and "||" with "union" (in the case it's ever required). On Mon, Jun 18, 2018 at 5:24 AM, Roger Rivero Jr. (SAMPA WebMaster) < sa...@caonao.cu> wrote: >

Re: [fpc-pascal] mode switch madness

2019-04-12 Thread Joao Schuler
I would use something like {$include mysettings.inc} . ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

[fpc-pascal] Really Strange Speed Problems - FPC & Neural Networks

2019-04-17 Thread Joao Schuler
Hello, For the past 10 days, I've seen really strange speed problems at my end. In 2 Ubuntu virtualbox VMs (16.04 and 18.04), my neural networks are running at half speed than usual. The host is a WIN 10 computer. Neural networks are both CPU and memory bound. Therefore, there is something affecti

Re: [fpc-pascal] Really Strange Speed Problems - FPC & Neural Networks

2019-04-17 Thread Joao Schuler
Thank you for your help Jonas. It was a good guess. Unfortunately, adding "spectre_v2=off nopti pti=off" didn't help. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] [Pas2js] It's alive !

2019-09-28 Thread Joao Schuler
I would like to give a try to WebAssembly as a target in my own project ( https://github.com/joaopauloschuler/neural-api ). From where can I get this compiler? ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-b

Re: [fpc-pascal] Vector code

2020-05-02 Thread Joao Schuler
> Can someone recommend a good book on writing (assembly) vector code ? Although it's not what you asking for, you may find some examples at (look for "procedure AVXAdd"): https://github.com/joaopauloschuler/neural-api/blob/master/neural/neuralvolume.pas In the case that you are looking for X86 S