In this blog post, we are going to discuss How SmartCow leveraging NvDsAnalytics Plugin for counting Entry-Exit of People, which is configurable via User Interface developed by SmartCow.
[Read More]
Vector Multiplication Using CUDA : A Complete Coding Walkthrough
Comparison of execution time for CPU and GPU
We will write a CUDA program to multiply two vectors, each having 10000 elements. Print the result.
Print the execution time for GPU.
Run the same code for CPU and print the execution time.
Compare both execution time and explanation.
[Read More]
Introduction to CUDA : The Beginner's Guide
What is CUDA and CUDA architecture?
CUDA is a parallel computing platform and programming model developed by Nvidia for general computing on its own GPUs (graphics processing units). CUDA enables developers to speed up compute-intensive applications by harnessing the power of GPUs for the parallelizable part of the computation.
[Read More]
Setting UP the Littlest JupyterHub
TLJH to provide Jupyter Notebooks to multiple users on a single server
We will see how to setup JupterHub to create multiple users where they can work on multiple individual Jupyter Notebook on a single server.
[Read More]
Setting Up a Private Docker Registry : A Complete guide
A private Docker registry gives you better performances for big clusters and high-frequency roll-outs, plus added features like access authentication.
Docker has it’s own free docker registry Docker Hub from where anyone can push or pull the images.
[Read More]