You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This library provides high-performance arithmetic operations on arrays of floating-point numbers using SIMD (Single Instruction, Multiple Data) instructions. The current implementation utilizes SSE (Streaming SIMD Extensions) to perform operations such as addition of float arrays.
4
+
5
+
## Features
6
+
7
+
-**Vector Addition**: Adds two arrays of floats using SIMD instructions for accelerated computation.
8
+
-**High Performance**: Utilizes SSE instructions to process data in parallel, significantly speeding up large-scale computations compared to scalar operations.
9
+
10
+
## Requirements
11
+
12
+
- GCC Compiler
13
+
- Linux Operating System (for the provided build instructions)
14
+
15
+
## Building the Library
16
+
17
+
This project uses a Makefile for building the shared library. To build the library, follow these steps:
0 commit comments