Having read this blog post, you will be able to generate a branch listing using Intel Pin Tool. If you are interested in installing pin, please look at this article. Instead, if you are interested in the basics of writing a pin tool, I strongly suggest to refer to this article. Pin ships with many … Continue reading Branch Listing Using Intel Pin Tool
Tag: #Tech
IWOCL 19: Let’s Teach are Computers to Program
Recently I had the privilege of joining the organizing committee of International Workshop on OpenCL (IWOCL) 2019, as a volunteer. The workshop was three days; However, I was excited to attend a conference held in conjunction with IWOCL which was DHPCC++ (Distributed & Heterogeneous Programming in C/C++). IWOCL: The Push Towards Heterogeneous Programming The end … Continue reading IWOCL 19: Let’s Teach are Computers to Program
Roll a Dice on a Quantum Computer
When I say "Roll a Dice on a Quantum Computer", technically there is no dice and it's not entirely a click bait. I'm going to simulate and verify the probability of an 8 sided fair dice. Why would I want to waste resources to do such a simple task. Well, a simple answer. There is … Continue reading Roll a Dice on a Quantum Computer
Parallel Merge Sort with Pthreads
Most of the implementations in the web for parallel merge sort do not consider how elements are divided between threads, if the total number of elements is not perfectly divisible by the number of threads. Also, the final merge (having joined all threads) should happen in a recursive manner. But first, let's go through a … Continue reading Parallel Merge Sort with Pthreads
SSL Certificate to Apache2 Server
If you don't know anything about SSL (Secure Sockets Layer), it's the standard security protocol to establish an encrypted link between a server and a web browser. The link ensures that all communications are private and that hackers cannot snoop traffic. By following this guide you will learn what an SSL certificate is and how … Continue reading SSL Certificate to Apache2 Server
Why You Need Conda to Manage Environments
Are you are confused by the many ways of creating environments in Python?Do you have to use Conda due to restrictions on the machine you're working?This article explains as to why you need Conda. Learn what Conda is and how to use it without wasting your time. I came across Conda when I was working on a … Continue reading Why You Need Conda to Manage Environments
Branch Count using Intel Pin Tool
Pin Tool already has many inbuilt examples. Be sure to check before resorting to writing your own tool. 😉 Having read this blog post you will be able to create your own tool to count the number of branches. You will also be able to learn the fundamentals that you would need to do any … Continue reading Branch Count using Intel Pin Tool