joaopauloschuler / neural-api

CAI NEURAL API - Pascal based deep learning neural network API optimized for AVX, AVX2 and AVX512 instruction sets plus OpenCL capable devices including AMD, Intel and NVIDIA.
GNU Lesser General Public License v2.1
371 stars 198 forks source link

HypotenuseFitLoading keeps repeating DoRun method over and over #42

Closed joaopauloschuler closed 3 years ago

joaopauloschuler commented 3 years ago

As reported by Mika:

    ReadLn;
  end;

should be

    ReadLn;
    Terminate;
  end;

Otherwise it keeps repeating DoRun method over and over.

joaopauloschuler commented 3 years ago

Fixed. Thank you Mika.