This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//~~~START:Mon, 02-Jan-2023, 16:26:44 IST | |
//~~~Author:Rajesh Pandian M | mrprajesh.co.in | |
//~ nvc++ -acc -gpu=managed -Minfo=all shuffle-2D-csr2.cpp -o shuffle-2D-csr2.out && ./shuffle-2D-csr2.out | |
//~ nvc++ -acc=multicore -Minfo=all -fopenmp shuffle-2D-csr2.cpp -o shuffle-2D-csr2.out && ./shuffle-2D-csr2.out | |
#include <iostream> | |
#include <random> //default rand in shuffle | |
#include <algorithm> // shuffle | |
#include <cstring> // memset |
OlderNewer