Skip to content

Commit

Permalink
Final Edit
Browse files Browse the repository at this point in the history
  • Loading branch information
GARG authored and GARG committed Jun 3, 2020
1 parent badd056 commit 42fca3a
Show file tree
Hide file tree
Showing 32 changed files with 10 additions and 246 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions Non-Cache-Oblivious/inputMatTrans.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2 2
1 0
0 1
Binary file removed Non-Cache-Oblivious/normalMatrixMult
Binary file not shown.
20 changes: 0 additions & 20 deletions Non-Cache-Oblivious/normalMatrixMult.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
Binary file removed Non-Cache-Oblivious/normalMatrixTranspose
Binary file not shown.
4 changes: 2 additions & 2 deletions Non-Cache-Oblivious/normalMatrixTranspose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ using namespace std;
int main(){
ifstream fin;
ofstream fout;
fin.open("inputMatrixTranspose.txt");
fout.open("outputMatrixTranspose.txt");
fin.open("inputMatTrans.txt");
fout.open("outputMatTrans.txt");
int n, m;
fin>>n>>m;
vector<vector<int>> A(n, vector<int>(m)), B(m, vector<int>(n));
Expand Down
20 changes: 0 additions & 20 deletions Non-Cache-Oblivious/normalMatrixTranspose.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
Binary file removed Non-Cache-Oblivious/randomInputMult
Binary file not shown.
25 changes: 0 additions & 25 deletions Non-Cache-Oblivious/randomInputMult.cpp

This file was deleted.

20 changes: 0 additions & 20 deletions Non-Cache-Oblivious/randomInputMult.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
Binary file removed Non-Cache-Oblivious/randomInputTranspose
Binary file not shown.
17 changes: 0 additions & 17 deletions Non-Cache-Oblivious/randomInputTranspose.cpp

This file was deleted.

20 changes: 0 additions & 20 deletions Non-Cache-Oblivious/randomInputTranspose.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
20 changes: 0 additions & 20 deletions VEB_SearchTree.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
20 changes: 0 additions & 20 deletions caclc.dSYM/Contents/Info.plist

This file was deleted.

Binary file removed caclc.dSYM/Contents/Resources/DWARF/caclc
Binary file not shown.
3 changes: 3 additions & 0 deletions inputMatTrans.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
2 2
1 0
1 1
20 changes: 0 additions & 20 deletions matrixMultiplication.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
4 changes: 2 additions & 2 deletions matrixTransposition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ void Transposition(int x, int delx, int y, int dely, int N, int M, vector<int> &
int main(){
ifstream fin;
ofstream fout;
fin.open("inputMatrixTransposition.txt");
fout.open("outputMatrixTransposition.txt");
fin.open("inputMatTrans.txt");
fout.open("outputMatTrans.txt");
int n, m;
fin>>n>>m;
vector<int> matrix(n*m, 0), matrixT(n*m, 0);
Expand Down
Binary file not shown.
20 changes: 0 additions & 20 deletions medianSelection.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
20 changes: 0 additions & 20 deletions randCacheTranspose.dSYM/Contents/Info.plist

This file was deleted.

Binary file not shown.
20 changes: 0 additions & 20 deletions randMedian.dSYM/Contents/Info.plist

This file was deleted.

Binary file removed randMedian.dSYM/Contents/Resources/DWARF/randMedian
Binary file not shown.

0 comments on commit 42fca3a

Please sign in to comment.