| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678 |
- #include <functional>
- #include "types.hpp"
- #include "duoram.hpp"
- #include "cell.hpp"
- #include "rdpf.hpp"
- #include "shapes.hpp"
- #include "heap.hpp"
- // The optimized insertion protocol works as follows
- // Do a binary search from the root of the rightmost child
- // Binary search returns the index in the path where the new element should go to
- // We next do a trickle down.
- // Consdier a path P = [a1, a2, a3, a4, ..., a_n]
- // Consider a standard-basis vector [0, ... 0, 1 , 0, ... , 0] (at i)
- // we get a new path P = [a1, ... , ai,ai ..., a_n]
- // P[i] = newelement
- int MinHeap::insert_optimized(MPCTIO tio, yield_t & yield, RegAS val) {
-
- auto HeapArray = oram.flat(tio, yield);
- num_items++;
- //std::cout << "num_items = " << num_items << std::endl;
- uint64_t height = std::log2(num_items) + 1;
-
- size_t childindex = num_items;
- RegAS zero;
- zero.ashare = 0;
- HeapArray[childindex] = zero;
- typename Duoram<RegAS>::Path P(HeapArray, tio, yield, childindex);
- RegXS foundidx = P.binary_search(val);
- // std::cout << "height = " << height << std::endl;
-
- RDPF<1> dpf2(tio, yield, foundidx, height, false, false);
- RegBS * flags_array = new RegBS[height];
- RegBS * standard_basis_vector = new RegBS[height];
- for(size_t j = 0; j < height; ++j)
- {
- if(tio.player() !=2)
- {
- RDPF<1>::LeafNode tmp = dpf2.leaf(j, tio.aes_ops());
- RegBS tmp__ = dpf2.unit_bs(tmp);
- flags_array[j] = tmp__;
- standard_basis_vector[j] = tmp__;
-
- if(j > 0) flags_array[j] = flags_array[j] ^ flags_array[j-1];
- }
- }
- #ifdef VERBOSE
- for(size_t j = 0; j < height; ++j)
- {
- uint64_t reconstruction = mpc_reconstruct(tio, yield, standard_basis_vector[j], 64);
- std::cout << j << " --->> reconstruction [standard_basis_vector] = " << reconstruction << std::endl;
- }
- #endif
- RegAS * z_array2 = new RegAS[height];
- RegAS * z2_tmp = new RegAS[height];
- RegAS * standard_basis_vector_time_value = new RegAS[height];
- for(size_t j = 0; j < height; ++j) z_array2[j] = P[j];
-
- //print_heap(tio, yield);
- std::vector<coro_t> coroutines;
- for(size_t j = 1; j < height; ++j)
- {
- coroutines.emplace_back(
- [&tio, z2_tmp, flags_array, z_array2, j](yield_t &yield) {
- mpc_flagmult(tio, yield, z2_tmp[j], flags_array[j-1], (z_array2[j-1]-z_array2[j]), 64);
- });
- coroutines.emplace_back(
- [&tio, standard_basis_vector_time_value, standard_basis_vector, val, z_array2, j](yield_t &yield) {
- mpc_flagmult(tio, yield, standard_basis_vector_time_value[j-1], standard_basis_vector[j-1], (val - z_array2[j-1]) , 64);
- });
- }
-
- run_coroutines(tio, coroutines);
- #ifdef VERBOSE
- for(size_t j = 0; j < height; ++j)
- {
- int64_t reconstruction = mpc_reconstruct(tio, yield, z2_tmp[j], 64);
- std::cout << j << " --->> reconstruction [z2_tmp] = " << reconstruction << std::endl;
- }
- std::cout << std::endl << " =============== " << std::endl;
- for(size_t j = 0; j < height; ++j)
- {
- int64_t reconstruction = mpc_reconstruct(tio, yield, flags_array[j], 64);
- std::cout << j << " --->> reconstruction [flags_array] = " << reconstruction << std::endl;
- }
- std::cout << std::endl << " =============== " << std::endl;
- for(size_t j = 0; j < height; ++j)
- {
- int64_t reconstruction = mpc_reconstruct(tio, yield, standard_basis_vector[j], 64);
- std::cout << j << " --->> reconstruction [standard_basis_vector] = " << reconstruction << std::endl;
- }
- std::cout << std::endl << " =============== " << std::endl;
- for(size_t j = 0; j < height; ++j)
- {
- int64_t reconstruction = mpc_reconstruct(tio, yield, z_array2[j], 64);
- std::cout << j << " --->> reconstruction [z_array2] = " << reconstruction << std::endl;
- }
- #endif
- for(size_t j = 0; j < height; ++j) P[j] += (z2_tmp[j] + standard_basis_vector_time_value[j]);
-
- #ifdef VERBOSE
- std::cout << std::endl << " =============== " << std::endl;
- for(size_t j = 0; j < height; ++j)
- {
- int64_t reconstruction = mpc_reconstruct(tio, yield, P[j], 64);
- std::cout << j << " --->> reconstruction [P] = " << reconstruction << std::endl;
- }
- print_heap(tio, yield);
- #endif
-
- // for(size_t j = 1; j < height; ++j) P[j] += z2_tmp[j];
- // typename Duoram<RegAS>::template OblivIndex<RegXS,1> oidx(tio, yield, foundidx, height);
-
- //P[oidx] = val;
- return 1;
- }
- // The insert protocol works as follows:
- // It adds a new element in the last entry of the array
- // From the leaf (the element added), compare with its parent (1 oblivious compare)
- // If the child is larger, then we do an OSWAP.
- int MinHeap::insert(MPCTIO tio, yield_t & yield, RegAS val) {
- auto HeapArray = oram.flat(tio, yield);
- num_items++;
- //std::cout << "num_items = " << num_items << std::endl;
- // uint64_t val_reconstruct = mpc_reconstruct(tio, yield, val);
- // std::cout << "val_reconstruct = " << val_reconstruct << std::endl;
- size_t childindex = num_items;
- size_t parentindex = childindex / 2;
-
- #ifdef VERBOSE
- std::cout << "childindex = " << childindex << std::endl;
- std::cout << "parentindex = " << parentindex << std::endl;
- #endif
- HeapArray[num_items] = val;
- typename Duoram<RegAS>::Path P(HeapArray, tio, yield, childindex);
- //RegXS foundidx = P.binary_search(val);
- while (parentindex > 0) {
- RegAS sharechild = HeapArray[childindex];
- RegAS shareparent = HeapArray[parentindex];
-
- CDPF cdpf = tio.cdpf(yield);
- RegAS diff = sharechild - shareparent;
- auto[lt, eq, gt] = cdpf.compare(tio, yield, diff, tio.aes_ops());
- auto lteq = lt ^ eq;
- mpc_oswap(tio, yield, sharechild, shareparent, lteq, 64);
- HeapArray[childindex] = sharechild;
- HeapArray[parentindex] = shareparent;
-
- childindex = parentindex;
- parentindex = parentindex / 2;
- }
- return 1;
- }
- int MinHeap::verify_heap_property(MPCTIO tio, yield_t & yield) {
- std::cout << std::endl << std::endl << "verify_heap_property is being called " << std::endl;
- auto HeapArray = oram.flat(tio, yield);
- uint64_t heapreconstruction[num_items];
- for (size_t j = 0; j <= num_items; ++j) {
- heapreconstruction[j] = mpc_reconstruct(tio, yield, HeapArray[j]);
- }
- for (size_t j = 1; j < num_items / 2; ++j) {
- if (heapreconstruction[j] > heapreconstruction[2 * j]) {
- std::cout << "heap property failure\n\n";
- std::cout << "j = " << j << std::endl;
- std::cout << heapreconstruction[j] << std::endl;
- std::cout << "2*j = " << 2 * j << std::endl;
- std::cout << heapreconstruction[2 * j] << std::endl;
- }
- if (heapreconstruction[j] > heapreconstruction[2 * j + 1]) {
- std::cout << "heap property failure\n\n";
- std::cout << "j = " << j << std::endl;
- std::cout << heapreconstruction[j] << std::endl;
- std::cout << "2*j + 1 = " << 2 * j + 1<< std::endl;
- std::cout << heapreconstruction[2 * j + 1] << std::endl;
- }
- //assert(heapreconstruction[j] <= heapreconstruction[2 * j]);
- //assert(heapreconstruction[j] <= heapreconstruction[2 * j + 1]);
- }
- return 1;
- }
- void verify_parent_children_heaps(MPCTIO tio, yield_t & yield, RegAS parent, RegAS leftchild, RegAS rightchild) {
-
- uint64_t parent_reconstruction = mpc_reconstruct(tio, yield, parent);
-
- uint64_t leftchild_reconstruction = mpc_reconstruct(tio, yield, leftchild);
-
- uint64_t rightchild_reconstruction = mpc_reconstruct(tio, yield, rightchild);
-
- assert(parent_reconstruction <= leftchild_reconstruction);
- assert(parent_reconstruction <= rightchild_reconstruction);
- }
- // Let "x" be the root, and let "y" and "z" be the left and right children
- // For an array, we have A[i] = x, A[2i] = y, A[2i + 1] = z.
- // We want x \le y, and x \le z.
- // The steps are as follows:
- // Step 1: compare(y,z); (1st call to to MPC Compare)
- // Step 2: smaller = min(y,z); This is done with an mpcselect (1st call to mpcselect)
- // Step 3: if(smaller == y) then smallerindex = 2i else smalleindex = 2i + 1;
- // Step 4: compare(x,smaller); (2nd call to to MPC Compare)
- // Step 5: smallest = min(x, smaller); (2nd call to mpcselect)
- // Step 6: otherchild = max(x, smaller)
- // Step 7: A[i] \gets smallest (1st Duoam Write)
- // Step 8: A[smallerindex] \gets otherchild (2nd Duoam Write)
- // Overall restore_heap_property takes 2 MPC Comparisons, 2 MPC Selects, and 2 Duoram Writes
- RegXS MinHeap::restore_heap_property(MPCTIO tio, yield_t & yield, RegXS index) {
- RegAS smallest;
- auto HeapArray = oram.flat(tio, yield);
- RegAS parent = HeapArray[index];
- RegXS leftchildindex = index;
- leftchildindex = index << 1;
- RegXS rightchildindex;
- rightchildindex.xshare = leftchildindex.xshare ^ (tio.player());
- RegAS leftchild = HeapArray[leftchildindex];
- RegAS rightchild = HeapArray[rightchildindex];
-
- RegAS sum = parent + leftchild + rightchild;
- CDPF cdpf = tio.cdpf(yield);
- auto[lt_c, eq_c, gt_c] = cdpf.compare(tio, yield, leftchild - rightchild, tio.aes_ops());
- auto lteq = lt_c ^ eq_c;
- RegXS smallerindex;
-
- #ifdef VERBOSE
- uint64_t LC_rec = mpc_reconstruct(tio, yield, leftchildindex);
- std::cout << "LC_rec = " << LC_rec << std::endl;
- #endif
- mpc_select(tio, yield, smallerindex, lteq, rightchildindex, leftchildindex, 64);
- #ifdef VERBOSE
- uint64_t smallerindex_rec = mpc_reconstruct(tio, yield, smallerindex);
- std::cout << "smallerindex_rec = " << smallerindex_rec << std::endl;
- #endif
- RegAS smallerchild;
- mpc_select(tio, yield, smallerchild, lt_c, rightchild, leftchild, 64);
- CDPF cdpf0 = tio.cdpf(yield);
- auto[lt_p, eq_p, gt_p] = cdpf0.compare(tio, yield, smallerchild - parent, tio.aes_ops());
-
- auto lt_p_eq_p = lt_p ^ eq_p;
- RegBS ltlt1;
-
- mpc_and(tio, yield, ltlt1, lteq, lt_p_eq_p);
- RegAS z, zz;
- run_coroutines(tio, [&tio, &zz, ltlt1, parent, leftchild](yield_t &yield)
- { mpc_flagmult(tio, yield, zz, ltlt1, (parent - leftchild), 64);},
- [&tio, &z, lt_p, parent, smallerchild](yield_t &yield)
- {mpc_flagmult(tio, yield, z, lt_p, smallerchild - parent, 64);}
- );
-
- HeapArray[index] += z;
- HeapArray[leftchildindex] += zz;
- RegAS leftchildplusparent = RegAS(HeapArray[index]) + RegAS(HeapArray[leftchildindex]);
- RegAS tmp = (sum - leftchildplusparent);
-
- HeapArray[rightchildindex] += tmp - rightchild;
-
- //verify_parent_children_heaps(tio, yield, HeapArray[index], HeapArray[leftchildindex] , HeapArray[rightchildindex]);
- return smallerindex;
- }
- auto MinHeap::restore_heap_property_optimized(MPCTIO tio, yield_t & yield, RegXS index, size_t layer, size_t depth, typename Duoram < RegAS > ::template OblivIndex < RegXS, 3 > (oidx)) {
- auto HeapArray = oram.flat(tio, yield);
- RegXS leftchildindex = index;
- leftchildindex = index << 1;
- RegXS rightchildindex;
- rightchildindex.xshare = leftchildindex.xshare ^ (tio.player());
- typename Duoram < RegAS > ::Flat P(HeapArray, tio, yield, 1 << layer, 1 << layer);
- typename Duoram < RegAS > ::Flat C(HeapArray, tio, yield, 2 << layer, 2 << layer);
- typename Duoram < RegAS > ::Stride L(C, tio, yield, 0, 2);
- typename Duoram < RegAS > ::Stride R(C, tio, yield, 1, 2);
- RegAS parent_tmp = P[oidx];
- RegAS leftchild_tmp = L[oidx];
- RegAS rightchild_tmp = R[oidx];
- RegAS sum = parent_tmp + leftchild_tmp + rightchild_tmp;
- CDPF cdpf = tio.cdpf(yield);
- auto[lt, eq, gt] = cdpf.compare(tio, yield, leftchild_tmp - rightchild_tmp, tio.aes_ops());
- auto lteq = lt ^ eq;
- RegXS smallerindex;
- RegAS smallerchild;
- // mpc_select(tio, yield, smallerindex, lteq, rightchildindex, leftchildindex, 64);
- // mpc_select(tio, yield, smallerchild, lt, rightchild_tmp, leftchild_tmp, 64);
- run_coroutines(tio, [&tio, &smallerindex, lteq, rightchildindex, leftchildindex](yield_t &yield)
- { mpc_select(tio, yield, smallerindex, lteq, rightchildindex, leftchildindex, 64);;},
- [&tio, &smallerchild, lt, rightchild_tmp, leftchild_tmp](yield_t &yield)
- { mpc_select(tio, yield, smallerchild, lt, rightchild_tmp, leftchild_tmp, 64);;});
- CDPF cdpf0 = tio.cdpf(yield);
- auto[lt1, eq1, gt1] = cdpf0.compare(tio, yield, smallerchild - parent_tmp, tio.aes_ops());
- RegAS z;
- mpc_flagmult(tio, yield, z, lt1, smallerchild - parent_tmp, 64);
- P[oidx] += z;
- auto lt1eq1 = lt1 ^ eq1;
- RegBS ltlt1;
- RegAS zz;
-
- // mpc_and(tio, yield, ltlt1, lteq, lt1eq1);
- // mpc_flagmult(tio, yield, zz, ltlt1, (parent_tmp - leftchild_tmp), 64);
- run_coroutines(tio, [&tio, <lt1, lteq, lt1eq1](yield_t &yield)
- { mpc_and(tio, yield, ltlt1, lteq, lt1eq1);},
- [&tio, &zz, ltlt1, parent_tmp, leftchild_tmp](yield_t &yield)
- { mpc_flagmult(tio, yield, zz, ltlt1, (parent_tmp - leftchild_tmp), 64);});
- L[oidx] += zz;// - leftchild_tmp;
- RegAS leftchildplusparent = RegAS(HeapArray[index]) + RegAS(HeapArray[leftchildindex]);
- RegAS tmp = (sum - leftchildplusparent);
- R[oidx] += tmp - rightchild_tmp;
- return std::make_pair(smallerindex, gt);
- }
- void MinHeap::initialize(MPCTIO tio, yield_t & yield) {
- auto HeapArray = oram.flat(tio, yield);
- HeapArray.init(0x7fffffffffffff);
- }
- void MinHeap::initialize_random(MPCTIO tio, yield_t & yield) {
- auto HeapArray = oram.flat(tio, yield);
- std::cout << "initialize_random " << num_items << std::endl;
- for(size_t j = 1; j <= num_items; ++j)
- {
- RegAS inserted_val;
- inserted_val.randomize(10);
- inserted_val.ashare = j * tio.player();
- HeapArray[j] = inserted_val;
- }
- // HeapArray.init(0x7fffffffffffff);
- }
- void MinHeap::print_heap(MPCTIO tio, yield_t & yield) {
- auto HeapArray = oram.flat(tio, yield);
- uint64_t * Pjreconstruction = new uint64_t[num_items + 1];
- for(size_t j = 0; j <= num_items; ++j) Pjreconstruction[j] = mpc_reconstruct(tio, yield, HeapArray[j]);
- for(size_t j = 0; j <= num_items; ++j)
- {
-
- if(2 * j < num_items) {
- std::cout << j << "-->> HeapArray[" << j << "] = " << std::dec << Pjreconstruction[j] << ", children are: " << Pjreconstruction[2 * j] << " and " << Pjreconstruction[2 * j + 1] << std::endl;
- }
- else
- {
- std::cout << j << "-->> HeapArray[" << j << "] = " << std::dec << Pjreconstruction[j] << " is a LEAF " << std::endl;
- }
- }
- }
- auto MinHeap::restore_heap_property_at_root(MPCTIO tio, yield_t & yield, size_t index = 1) {
- //size_t index = 1;
- //std::cout << "index = " << index << std::endl;
-
- auto HeapArray = oram.flat(tio, yield);
- RegAS parent = HeapArray[index];
- RegAS leftchild = HeapArray[2 * index];
- RegAS rightchild = HeapArray[2 * index + 1];
- RegAS sum = parent + leftchild + rightchild;
- CDPF cdpf = tio.cdpf(yield);
- auto[lt, eq, gt] = cdpf.compare(tio, yield, leftchild - rightchild, tio.aes_ops()); // c_1 in the paper
- RegAS smallerchild;
- mpc_select(tio, yield, smallerchild, lt, rightchild, leftchild, 64); // smallerchild holds smaller of left and right child
- auto lteq = lt ^ eq;
- RegXS smallerindex(lt);
- uint64_t leftchildindex = (2 * index);
- uint64_t rightchildindex = (2 * index) + 1;
- smallerindex = (RegXS(lteq) & leftchildindex) ^ (RegXS(gt) & rightchildindex);
-
- CDPF cdpf0 = tio.cdpf(yield);
- auto[lt1, eq1, gt1] = cdpf0.compare(tio, yield, smallerchild - parent, tio.aes_ops());
-
- auto lt_p_eq_p = lt1 ^ eq1;
- RegBS ltlt1;
-
- mpc_and(tio, yield, ltlt1, lteq, lt_p_eq_p);
- RegAS z, zz;
- run_coroutines(tio, [&tio, &zz, ltlt1, parent, leftchild](yield_t &yield)
- { mpc_flagmult(tio, yield, zz, ltlt1, (parent - leftchild), 64);},
- [&tio, &z, lt1, parent, smallerchild](yield_t &yield)
- {mpc_flagmult(tio, yield, z, lt1, smallerchild - parent, 64);}
- );
-
- HeapArray[index] += z;
- HeapArray[leftchildindex] += zz;
- RegAS leftchildplusparent = RegAS(HeapArray[index]) + RegAS(HeapArray[leftchildindex]);
- RegAS tmp = (sum - leftchildplusparent);
- HeapArray[rightchildindex] += tmp - rightchild;
- #ifdef VERBOSE
- RegAS new_parent = HeapArray[index];
- RegAS new_left = HeapArray[leftchildindex];
- RegAS new_right = HeapArray[rightchildindex];
- uint64_t parent_R = mpc_reconstruct(tio, yield, new_parent);
- uint64_t left_R = mpc_reconstruct(tio, yield, new_left);
- uint64_t right_R = mpc_reconstruct(tio, yield, new_right);
- std::cout << "parent_R = " << parent_R << std::endl;
- std::cout << "left_R = " << left_R << std::endl;
- std::cout << "right_R = " << right_R << std::endl;
- #endif
- //verify_parent_children_heaps(tio, yield, HeapArray[index], HeapArray[leftchildindex] , HeapArray[rightchildindex]);
- return std::make_pair(smallerindex, gt);
- }
-
- RegAS MinHeap::extract_min(MPCTIO tio, yield_t & yield, int is_optimized) {
- RegAS minval;
- auto HeapArray = oram.flat(tio, yield);
- minval = HeapArray[1];
- HeapArray[1] = RegAS(HeapArray[num_items]);
- num_items--;
- auto outroot = restore_heap_property_at_root(tio, yield);
- RegXS smaller = outroot.first;
- // uint64_t smaller_rec = mpc_reconstruct(tio, yield, smaller, 64);
- // std::cout << "smaller_rec [root] = " << smaller_rec << std::endl;
- size_t height = std::log2(num_items);
-
- //std::cout << "height = " << height << std::endl << "===================" << std::endl;
-
- typename Duoram < RegAS > ::template OblivIndex < RegXS, 3 > oidx(tio, yield, height);
- oidx.incr(outroot.second);
- for (size_t i = 0; i < height; ++i) {
-
- if(is_optimized > 0)
- {
- auto out = restore_heap_property_optimized(tio, yield, smaller, i + 1, height, typename Duoram < RegAS > ::template OblivIndex < RegXS, 3 > (oidx));;
- smaller = out.first;
- oidx.incr(out.second);
- }
- if(is_optimized == 0)
- {
- smaller = restore_heap_property(tio, yield, smaller);
- }
-
- //std::cout << "\n-------\n\n";
- }
- return minval;
- }
- void MinHeap::heapify2(MPCTIO tio, yield_t & yield, size_t index = 1) {
- auto outroot = restore_heap_property_at_root(tio, yield, index);
- RegXS smaller = outroot.first;
-
- #ifdef VERBOSE
- uint64_t smaller_rec = mpc_reconstruct(tio, yield, smaller, 64);
- std::cout << "smaller_rec = " << smaller_rec << std::endl;
- std::cout << "num_items = " << num_items << std::endl;
- std::cout << "index = " << index << std::endl;
- #endif
- size_t height = std::log2(num_items) - std::floor(log2(index)) ;
-
- #ifdef VERBOSE
- std::cout << "height = " << height << std::endl << "===================" << std::endl;
- #endif
- for (size_t i = 0; i < height - 1; ++i) {
-
- #ifdef VERBOSE
- std::cout << "index = " << index << ", i = " << i << std::endl;
- uint64_t smaller_rec = mpc_reconstruct(tio, yield, smaller, 64);
- std::cout << "[inside loop] smaller_rec = " << smaller_rec << std::endl;
- #endif
- smaller = restore_heap_property(tio, yield, smaller);
- }
- }
- void MinHeap::heapify(MPCTIO tio, yield_t & yield) {
- size_t startIdx = ((num_items + 1) / 2) - 1;
- //std::cout << "startIdx " << startIdx << std::endl;
- for (size_t i = startIdx; i >= 1; i--) {
- heapify2(tio, yield, i);
- //print_heap(tio, yield);
- }
- }
- void Heap(MPCIO & mpcio,
- const PRACOptions & opts, char ** args) {
- nbits_t depth = atoi(args[0]);
- nbits_t depth2 = atoi(args[1]);
- size_t n_inserts = atoi(args[2]);
- size_t n_extracts = atoi(args[3]);
- int is_optimized = atoi(args[4]);
- std::cout << "print arguements " << std::endl;
- std::cout << args[0] << std::endl;
- if ( * args) {
- depth = atoi( * args);
- ++args;
- }
- size_t items = (size_t(1) << depth) - 1;
- if ( * args) {
- items = atoi( * args);
- ++args;
- }
- //
- std::cout << "items = " << items << std::endl;
- MPCTIO tio(mpcio, 0, opts.num_threads);
- run_coroutines(tio, [ & tio, depth, depth2, items, n_inserts, n_extracts, is_optimized, &mpcio](yield_t & yield) {
- size_t size = size_t(1) << depth;
- // std::cout << "size = " << size << std::endl;
- MinHeap tree(tio.player(), size);
- tree.initialize(tio, yield);
- tree.num_items = (size_t(1) << depth2) - 1;
- // std::cout << "num_items " << tree.num_items << std::endl;
- tree.initialize_random(tio, yield);
- // tree.print_heap(tio, yield);
- //tree.verify_heap_property(tio, yield);
- //tree.heapify(tio, yield);
-
- //tree.print_heap(tio, yield);
- std::cout << "\n===== Heapify Stats =====\n";
- tio.sync_lamport();
- mpcio.dump_stats(std::cout);
- mpcio.reset_stats();
- tio.reset_lamport();
- for (size_t j = 0; j < n_inserts; ++j) {
- RegAS inserted_val;
- inserted_val.randomize(8);
-
- #ifdef VERBOSE
- inserted_val.ashare = inserted_val.ashare;
- uint64_t inserted_val_rec = mpc_reconstruct(tio, yield, inserted_val, 64);
- std::cout << "inserted_val_rec = " << inserted_val_rec << std::endl << std::endl;
- #endif
- if(is_optimized > 0) tree.insert_optimized(tio, yield, inserted_val);
- if(is_optimized == 0) tree.insert(tio, yield, inserted_val);
- //tree.print_heap(tio, yield);
- }
- std::cout << "\n===== Insert Stats =====\n";
- tio.sync_lamport();
- mpcio.dump_stats(std::cout);
- mpcio.reset_stats();
- tio.reset_lamport();
- // tree.verify_heap_property(tio, yield);
-
- for (size_t j = 0; j < n_extracts; ++j) {
-
- tree.extract_min(tio, yield, is_optimized);
-
- //RegAS minval = tree.extract_min(tio, yield, is_optimized);
- // uint64_t minval_reconstruction = mpc_reconstruct(tio, yield, minval, 64);
- // std::cout << "minval_reconstruction = " << minval_reconstruction << std::endl;
- // tree.verify_heap_property(tio, yield);
- // tree.print_heap(tio, yield);
- }
- std::cout << "\n===== Extract Min Stats =====\n";
- tio.sync_lamport();
- mpcio.dump_stats(std::cout);
-
- // tree.verify_heap_property(tio, yield);
-
-
- });
- }
|