- 11
- 115 889
AIMS SCS
เข้าร่วมเมื่อ 31 มี.ค. 2018
Lecture 0: Installing OpenMP on Windows using MinGW without Visual Studio
This video session explains step by step process to Install OpenMP on Windows using MinGW along with writing C/C++ programs and compile them using GCC compilers. Further a simple demo for OpenMP program will be presented
มุมมอง: 5 350
วีดีโอ
Lecture 2 MPI Group Communications Part2 MPI_Gather function
มุมมอง 4.8K3 ปีที่แล้ว
This lecture will explain in detail the Group Communication function MPI_Gather() along with practical Demos for using the function in MPI programs. Link to Part1 : th-cam.com/video/x8t5nStMpGE/w-d-xo.html Link to MPI Installation and MPI Project Configurations: th-cam.com/video/IW3SKDM_yEs/w-d-xo.html
Solved: VirtualBox only showing 32-bit guest OS versions on 64-bit Host Operating System
มุมมอง 19K4 ปีที่แล้ว
The video shows the installation Steps for Oracle VirtualBox. In the next step, it shows the two possible fixes if VirtualBox only showing 32-bit guest OS versions on 64 bit Host Operating System...
Install VirtualBox and Linux VM on Windows
มุมมอง 3444 ปีที่แล้ว
Detailed steps on how to install Oracle VirtualBox and Linux VM on Windows and how to work in Linux Operating system environment using VirtualBox Link to the fix video: Solved: VirtualBox only showing 32-bit guest versions on 64 bit Host OS : th-cam.com/video/ytt6cEAKDJc/w-d-xo.html
BlackBoard Learn Comprehensive Session (Arabic)- Dr. Mohammad Abdalwhab Dolaty Ghadban
มุมมอง 814 ปีที่แล้ว
A comprehensive hands-on session on Blackboard covering details about how to conduct examination through the BlackBoard Application in the Arabic Language by Dr. Mohammad Abdalwhab Dolaty Ghadban
Intro BlackBoard Hands-on course delivery session (english) -Dr Aijaz Ahmad
มุมมอง 764 ปีที่แล้ว
An introductory video on how to deliver a lecture using the BlackBoard Learning platform. It covers the basic functionalities like creating a new session setting session parameters along with sharing audio and Video of presenter and students. The video also demonstrates how to use Whiteboard to write using a pencil and drawing basic shapes and sharing the screen of the presenter in different mo...
Hands-on Session on Blackboard Learn by Dr. Aiman Dhiyabat الدكتور ايمن ذيابات (in Arabic) -1
มุมมอง 1734 ปีที่แล้ว
This Video was captured live from a hands-on session on how to use Blackboard for course delivery and Management. The session was given by Dr. Aiman Dhiyabat ( الدكتور ايمن ذيابات), Associate Professor, Taibah University Al Mahd Branch. Blackboard Learn is a virtual learning environment developed by Blackboard Inc. It is Web-based server software that features online course delivery, and course...
Lecture 1- Multithreading in Java (Concurrent Programming) -Introduction and practical Demo
มุมมอง 6195 ปีที่แล้ว
Session on Multithreading in Java, Concept and Implementation Demos, by Dr. Aijaz Ahmad Reshi, College of Computer Science and Engineering, Department of Computer Science, Taibah University Al Madinah Al Munawarah, Saudi Arabia
Lecture 2 MPI Group Communications Bcast, Scatter, Gather, Reduce Part 1
มุมมอง 20K6 ปีที่แล้ว
This lecture will explain in detail the Group Communication concepts in MPI Programming along with practical Demos for each of the communication function... Link to Part 2: th-cam.com/video/7yO_PvG pg/w-d-xo.html
Lecture 1- MPI Send and Receive (Parallel Computing)
มุมมอง 20K6 ปีที่แล้ว
Link to previous video setting up MPI: th-cam.com/video/IW3SKDM_yEs/w-d-xo.html This Lecture will explain how to use send and receive function in MPI programming in first part. In Second part, these functions with each argument along with detailed description of MPI communicators are presented along with examples..
Introducing MPI Installation and MPI Hello World - VS2017
มุมมอง 46K6 ปีที่แล้ว
This video tutorial will demonstrate step by step, the Installation setup for MPI SDK and how to run a Hello World MPI program on Visual Studio 2017.
jazakAllah . thank you
bad video. or video clear bi nhi aya rahi ha
No Video for Reduce ?
Will make it soon
@@aimsscs4494 bro I have paper on 31 may please upload it tomorrow.
Thanks. It helps a lot. Very informative
Thanks Bro
Thank you
First one worked for me, thank you!
Best vid !!
well explained! thank you very much
Superb explanation
Thank you, your solution helped.
مبدع, شكرا
Great video, there is a lack of quality content on this and this is very well done.
the first fix in bios fixed my problem thank you.
Thank you! Worked for me
Thank you very much my indian tutorial guy
Thank to you a lot❤❤
💖💖💖💖💖💖💖💖
As Salamu Aleikum Brother, is there any way of contacting or writing with you personally? I would love to be able to speak to you :) BarakAllahu feek ❤️
Here is solution for 'mpiexec' is not recognized as an internal or external command, operable program or batch file." You need to download both files msmpisetup.exe and msmpisdk.msi. Both should be installed in the same directory. Bin is the folder which contains the mpiexec so you will be able to run your program.
From the bottom of my heart, you helped me a lot, God bless you
Can someone one tel me how to enable virtualisation in bios in macbook pro ?...Can't able to find any videos in youtube about Mac ....My mac is showing only 32 bit versions in Oracle virtual box ....plz somebody help me🙏🙏🙏
This was the issue, I thought it came on by default... but it didn't. Thanks.
you made my day thank you
Spanish please!!!!
Thank you mam
The first option worked perfectly thank you.
Thanks Bro it worked
thank u sir
Thanks so much it worked
شكراً جزيلاً
Remember: different pc’s have different bios. Yours might not look like this.
(i) Which one of the following program MIGHT cause a deadlock? need a reason. A: int* source = (int*)malloc(sizeof(int)*1000); int* dest = (int*)malloc(sizeof(int)*1000); int other = (rank + 1) % 2; // Rank of other process … // fill source with values MPI_Recv(dest, 1000, MPI_INT, other, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); MPI_Send(source, 1000, MPI_INT, other, 0, MPI_COMM_WORLD); B: int* source = (int*)malloc(sizeof(int)*1000); // assume filled with values int* dest = (int*)malloc(sizeof(int)*1000); int other = (rank + 1) % 2; // Rank of other process … // fill source with values MPI_Ssend(source, 1000, MPI_INT, other, 0, MPI_COMM_WORLD); MPI_Recv(dest, 1000, MPI_INT, other, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); C: int* source = (int*)malloc(sizeof(int)*1000); // assume filled with values int* dest = (int*)malloc(sizeof(int)*1000); int other = (rank + 1) % 2; // Rank of other process … // fill source with values MPI_Send(source, 1000, MPI_INT, other, 0, MPI_COMM_WORLD); MPI_Recv(dest, 1000, MPI_INT, other, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
A, because the process will stuck at receiving side
Thanks brother , it worked.
Thanks a lot!
thank you
Welcome!
Thanks, it was very informative :)
You're welcome!
Its not working
Thanks brother it worked
Hello, I have a question about Mpi, how can I contact you? I have code and I can't run.
dev.aijazreshi@gmail.com
thank you
thanks a lot. really liked it ANELE Clap
Thanks
Thankyou for the help brother. It worked!
I don’t known why it always gives me 1 fail !! 😭😭😭😭😭 can any one help me plz Update: I do it 😭😭❤️❤️❤️❤️👏🏻👏🏻👏🏻👏🏻👏🏻 I solve the problem Thank you so much for the tutorial
Many thanks, your two methods saved me of I have been battling for days, my system was actually virtualization enabled but the hyper v box was checked so I have to uncheck it.
how to run send and receive on two different computers?
sir please add the part 2 please thanks for the work so far
th-cam.com/video/7yO_PvG__pg/w-d-xo.html
Please add part 2 of this lecture.
th-cam.com/video/7yO_PvG__pg/w-d-xo.html
is this point to point communication?