Lindevs
Programming tutorials, blogs & resources
Menu
  • Home ×
  • Tutorials
    • Programming Language
      • Python
      • PHP
      • Java
      • C
      • C++
      • JavaScript
    • Machine Learning
      • TensorFlow 2
      • PyTorch
    • Computer Vision
      • OpenCV
    • Embedded System
      • Raspberry Pi
      • Arduino
      • ESP8266
      • XIAO SAMD21
    • Home Automation
      • Tasmota
    • Mobile App Development
      • Android
      • Flutter
    • Game Development
      • Unity
    • Framework
      • Laravel
      • Symfony
    • Operating System
      • Linux
        • Ubuntu
      • Windows
    • Database
      • MySQL
    • DevOps
      • Command Line
      • Web Server
      • Grafana
      • Networking
      • Security
      • Containerization
  • Code Snippets
  • Electronics
    • Circuits
  • Questions
    • PHP
  • Contact
    • Sign In

C++

Find Maximum Element in Array using C++ SIMD

Find Maximum Element in Array using C++ SIMD

  • October 29, 2024
  • C++
  • 0 Comments
  • 170 Views
Finding the maximum element in an array is a common operation in many applications, including graphics, data analysis, and machine learning. While a straightforward scalar approach can effectively handle small...
Calculate Reciprocal Square Root of Array Elements using C++ SIMD

Calculate Reciprocal Square Root of Array Elements using C++ SIMD

  • October 28, 2024
  • C++
  • 0 Comments
  • 207 Views
Calculating the reciprocal square root is a frequent operation in scientific computing, machine learning, and graphics applications. A scalar implementation of this operation works well for small datasets. However, for...
Find Element-wise Maximum of Array Elements using C++ SIMD

Find Element-wise Maximum of Array Elements using C++ SIMD

  • October 27, 2024
  • C++
  • 0 Comments
  • 181 Views
In computational tasks, comparing and finding the maximum values from two arrays is a common operation. While a scalar implementation works well for small datasets, it can become a bottleneck...
Calculate Reciprocal of Array Elements using C++ SIMD

Calculate Reciprocal of Array Elements using C++ SIMD

  • October 26, 2024
  • C++
  • 0 Comments
  • 134 Views
For many applications requiring mathematical operations over large datasets, performance is critical. Calculating the reciprocal of each element in an array is one such task. While a basic scalar implementation...
Normalize Array Elements by L2 Norm using C++ SIMD

Normalize Array Elements by L2 Norm using C++ SIMD

  • October 25, 2024
  • C++
  • 0 Comments
  • 158 Views
Normalization is a widely used technique in data processing. One popular method is normalization using the L2 norm, which also known as Euclidean normalization. It scales an array so that...
Normalize Array Elements by L1 Norm using C++ SIMD

Normalize Array Elements by L1 Norm using C++ SIMD

  • October 24, 2024
  • C++
  • 0 Comments
  • 144 Views
Normalization is a common technique used in data processing, particularly for machine learning and statistical applications. One popular method is normalization using the L1 norm, which scales the elements of...
Calculate Mean Absolute Percentage Error using C++ SIMD

Calculate Mean Absolute Percentage Error using C++ SIMD

  • October 23, 2024
  • C++
  • 0 Comments
  • 158 Views
The Mean Absolute Percentage Error (MAPE) is a commonly used metric to measure the accuracy of a model. It calculates the percentage difference between actual and predicted values, normalized by...
Calculate Mean Squared Error using C++ SIMD

Calculate Mean Squared Error using C++ SIMD

  • October 22, 2024
  • C++
  • 0 Comments
  • 160 Views
The Mean Squared Error (MSE) is one of the most commonly used metrics in machine learning and statistical analysis. It measures the average squared difference between the predicted values and...
Calculate Mean Absolute Error using C++ SIMD

Calculate Mean Absolute Error using C++ SIMD

  • October 21, 2024
  • C++
  • 0 Comments
  • 140 Views
In machine learning and statistical analysis, the Mean Absolute Error (MAE) is a common metric used to evaluate the accuracy of predictions. It measures the average magnitude of the errors...
Set Negative Array Elements to Zero using C++ SIMD

Set Negative Array Elements to Zero using C++ SIMD

  • October 20, 2024
  • C++
  • 0 Comments
  • 123 Views
In many applications, you might need to set negative elements of an array to zero. This is commonly used in data processing, machine learning, and image processing workflows to remove...
  • «
  • 1
  • 2
  • …
  • 6
  • 7
  • 8
  • …
  • 15
  • 16
  • »
Buy Me a Coffee

Recent Posts

  • 2 Methods to Set Cache Directory using Ccache
  • Get Current Configuration Options in Ccache
  • Run TruffleHog Inside Docker Container on Linux
  • Set Build Type using CMake
  • Install Glow Markdown Reader on Ubuntu 24.04

Archives

  • September 2025
  • August 2025
  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • March 2023
  • February 2023
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
Copyright © 2020 - 2025 · lindevs.com · All Rights Reserved