description: Implement a bidding system which will handle a sequence of competitions. The goal of this assignment is to practice how to communicate between processes through pipe and FIFO, and to understand how to use fork() to create processes.
description: Simulate a user-thread library by using longjmp(), setjmp(), and implement a scheduler to control the action of these threads. Additionally, signals are used to send instructions to the scheduler, and signal mask is applied to handle the timing of the delivery of signals.
description: implement a multiclass classifier with thread. You should train a model to classify handwritten digits from MNIST dataset. And the most important part is that you have to accelerate the matrix multiplication (let it parallelly) by thread.