FreeRDP/libfreerdp/primitives
akallabeth 4732f379d4 [winpr,sysinfo] unify time function use
* Add new function winpr_GetTickCount64NS for high resolution tick
  count with (up to) nanosecond resolution
* Add new function winpr_GetUnixTimeNS for high resolution system time
  as nanoseconds since 1.1.1970
* Replace use of clock_gettime and gettimeofday in whole project with
  these new functions
* Add new macros WINPR_TIME_NS_TO_* and WINPR_TIME_NS_REM_* to convert
  the nano second count to less resolution or get the remainder in the
  desired resolution
2024-03-11 09:54:10 +01:00
..
test [winpr,sysinfo] unify time function use 2024-03-11 09:54:10 +01:00
prim_add_opt.c [primitives,yuv] use WINPR_RESTRICT 2023-08-25 14:13:30 +02:00
prim_add.c Freerdp remove #ifdef HAVE_CONFIG_H 2022-03-03 11:26:48 +01:00
prim_alphaComp_opt.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_alphaComp.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_andor_opt.c [primitives,yuv] use WINPR_RESTRICT 2023-08-25 14:13:30 +02:00
prim_andor.c Freerdp remove #ifdef HAVE_CONFIG_H 2022-03-03 11:26:48 +01:00
prim_colors_opt.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_colors.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_copy.c [warnings] fix integer multiplications 2023-08-22 11:55:00 +02:00
prim_internal.h [codec,avc] chroma reverse filter cutoff threshold 2022-12-07 15:54:58 +01:00
prim_set_opt.c [clang-tidy] cppcoreguidelines-init-variables 2024-02-15 11:49:16 +01:00
prim_set.c [clang-tidy] cppcoreguidelines-init-variables 2024-02-15 11:49:16 +01:00
prim_shift_opt.c [primitives,yuv] use WINPR_RESTRICT 2023-08-25 14:13:30 +02:00
prim_shift.c Freerdp remove #ifdef HAVE_CONFIG_H 2022-03-03 11:26:48 +01:00
prim_sign_opt.c [clang-tidy] cppcoreguidelines-init-variables 2024-02-15 11:49:16 +01:00
prim_sign.c Freerdp remove #ifdef HAVE_CONFIG_H 2022-03-03 11:26:48 +01:00
prim_templates.h [clang-tidy] readability-isolate-declaration 2024-02-15 11:49:16 +01:00
prim_YCoCg_opt.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_YCoCg.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_YUV_neon.c [ci,primitives] enable NEON on iOS builds 2024-03-08 14:10:53 +01:00
prim_YUV_opencl.c [primitives,opencl] fix alpha handling 2024-02-19 12:29:37 +01:00
prim_YUV_ssse3.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
prim_YUV.c [tidy] move loop variable declaration to loop 2024-02-22 12:31:50 +01:00
primitives.c fixed unused-variable warnings 2024-02-22 12:31:50 +01:00
primitives.cl [primitives,opencl] fix alpha handling 2024-02-19 12:29:37 +01:00
README.txt

The Primitives Library

Introduction
------------
The purpose of the primitives library is to give the freerdp code easy
access to *run-time* optimization via SIMD operations.  When the library
is initialized, dynamic checks of processor features are run (such as
the support of SSE3 or Neon), and entrypoints are linked to through
function pointers to provide the fastest possible operations.  All
routines offer generic C alternatives as fallbacks.

Run-time optimization has the advantage of allowing a single executable
to run fast on multiple platforms with different SIMD capabilities.


Use In Code
-----------
A singleton pointing to a structure containing the function pointers
is accessed through primitives_get().   The function pointers can then
be used from that structure, e.g.

    primitives_t *prims = primitives_get();
    prims->shiftC_16s(buffer, shifts, buffer, 256);

Of course, there is some overhead in calling through the function pointer
and setting up the SIMD operations, so it would be counterproductive to
call the primitives library for very small operation, e.g. initializing an
array of eight values to a constant.  The primitives library is intended
for larger-scale operations, e.g. arrays of size 64 and larger.


Initialization and Cleanup
--------------------------
Library initialization is done the first time primitives_init() is called
or the first time primitives_get() is used.  Cleanup (if any) is done by
primitives_deinit().


Intel Integrated Performance Primitives (IPP)
---------------------------------------------
If freerdp is compiled with IPP support (-DWITH_IPP=ON), the IPP function
calls will be used (where available) to fill the function pointers.
Where possible, function names and parameter lists match IPP format so
that the IPP functions can be plugged into the function pointers without
a wrapper layer.  Use of IPP is completely optional, and in many cases
the SSE operations in the primitives library itself are faster or similar
in performance.


Coverage
--------
The primitives library is not meant to be comprehensive, offering
entrypoints for every operation and operand type.  Instead, the coverage
is focused on operations known to be performance bottlenecks in the code.
For instance, 16-bit signed operations are used widely in the RemoteFX
software, so you'll find 16s versions of several operations, but there
is no attempt to provide (unused) copies of the same code for 8u, 16u,
32s, etc.


New Optimizations
-----------------
As the need arises, new optimizations can be added to the library,
including NEON, AVX, and perhaps OpenCL or other SIMD implementations.
The CPU feature detection is done in winpr/sysinfo.


Adding Entrypoints
------------------
As the need for new operations or operands arises, new entrypoints can
be added.  
  1) Function prototypes and pointers are added to 
     include/freerdp/primitives.h
  2) New module initialization and cleanup function prototypes are added
     to prim_internal.h and called in primitives.c (primitives_init()
     and primitives_deinit()).
  3) Operation names and parameter lists should be compatible with the IPP.
     IPP manuals are available online at software.intel.com.
  4) A generic C entrypoint must be available as a fallback.
  5) prim_templates.h contains macro-based templates for simple operations,
     such as applying a single SSE operation to arrays of data.
     The template functions can frequently be used to extend the
     operations without writing a lot of new code.

Cache Management
----------------
I haven't found a lot of speed improvement by attempting prefetch, and
in fact it seems to have a negative impact in some cases.  Done correctly
perhaps the routines could be further accelerated by proper use of prefetch,
fences, etc.


Testing
-------
In the test subdirectory is an executable (prim_test) that tests both
functionality and speed of primitives library operations.   Any new
modules should be added to that test, following the conventions already
established in that directory.  The program can be executed on various
target hardware to compare generic C, optimized, and IPP performance
with various array sizes.