// // memtest.cc // // Copyright (C) 1996 Limit Point Systems, Inc. // // Author: Curtis Janssen // Maintainer: LPS // // This file is part of the SC Toolkit. // // The SC Toolkit is free software; you can redistribute it and/or modify // it under the terms of the GNU Library General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // // The SC Toolkit is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Library General Public License for more details. // // You should have received a copy of the GNU Library General Public License // along with the SC Toolkit; see the file COPYING.LIB. If not, write to // the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. // // The U.S. Government is granted a limited license as per AL 91-7. // #include #include #include #include #include #include #include #ifdef HAVE_NX # include #endif using namespace std; using namespace sc; // Force linkages: //#ifndef __PIC__ #ifdef HAVE_SYSV_IPC # include static ForceLink fl0; #endif #ifdef HAVE_MPI # include # include static ForceLink fl2; static ForceLink fl3; #endif //#endif #include static const char * (sc::SCException::*force_except_link)() const = &sc::SCException::description; // this is needed for debugging #ifdef HAVE_NX extern "C" { #include } #endif // HAVE_NX #ifdef HAVE_HRECV # define DISABLE do { masktrap(1); cout.flush(); } while(0) # define ENABLE do { cout.flush(); masktrap(0); } while(0) extern "C" { long masktrap(long state); } #else # define DISABLE # define ENABLE #endif #define PRINTF(args) do { DISABLE; \ cout << scprintf args; \ cout.flush(); \ ENABLE; \ } while(0) void do_simple_tests(const Ref&,const Ref&); void do_int_tests(const Ref&,const Ref&); void do_double_tests(const Ref&,const Ref&); void do_double2_tests(const Ref&,const Ref&); int main(int argc, char**argv) { Ref msg = MessageGrp::initial_messagegrp(argc, argv); const char* input = SRCDIR "/memtest.in"; Ref keyval = new ParsedKeyVal(input); if (msg.null()) { const char* keyword = "message"; if (argc >= 2) input = argv[1]; if (argc >= 3) keyword = argv[2]; msg << keyval->describedclassvalue(keyword); if (msg.null()) { cerr << scprintf("Couldn't initialize MessageGrp\n"); abort(); } } // This causes problems for automated testing: // // now set up the debugger // Ref debugger; // debugger << keyval->describedclassvalue(":debug"); // if (debugger.nonnull()) { // debugger->set_exec(argv[0]); // debugger->set_prefix(msg->me()); // } keyval = 0; msg->sync(); MessageGrp::set_default_messagegrp(msg); Ref mem = MemoryGrp::initial_memorygrp(argc, argv); if (mem.nonnull()) MemoryGrp::set_default_memorygrp(mem); else mem = MemoryGrp::get_default_memorygrp(); do_simple_tests(msg, mem); do_double_tests(msg, mem); do_double2_tests(msg, mem); do_int_tests(msg, mem); return 0; } void do_simple_tests(const Ref&msg, const Ref&mem) { mem->set_localsize(8); cout << scprintf("Using memory group \"%s\".\n", mem->class_name()); mem->sync(); mem->set_localsize(0); } void do_int_tests(const Ref&msg, const Ref&mem) { const int intbufsize = 10; mem->set_localsize(intbufsize*sizeof(int)); cout << scprintf("Using memory group \"%s\".\n", mem->class_name()); //sleep(1); cout.flush(); cout << scprintf("111111111111111111111111111111111\n"); cout.flush(); //sleep(1); mem->sync(); //sleep(1); cout.flush(); cout << scprintf("222222222222222222222222222222222\n"); cout.flush(); //sleep(1); //mem->deactivate(); //sleep(1); cout.flush(); cout << scprintf("333333333333333333333333333333333\n"); cout.flush(); //sleep(1); //mem = 0; //return; PRINTF(("creating MemoryGrpBuf\n")); MemoryGrpBuf buf(mem); PRINTF(("%d: obtaining writelock\n", mem->me())); int *data = buf.writeonly(0, intbufsize); PRINTF(("%d: releasing writelock\n", mem->me())); int i; for (i=0; ime())); const int *cdata = buf.readonly(0, intbufsize); PRINTF(("%d: releasing readlock\n", mem->me())); buf.release(); // if (mem->me() == 0) { // cdata = buf.readonly(0, intbufsize); // for (i=0; ime())); mem->sync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); PRINTF(("%d: done syncing\n", mem->me())); if (mem->me() == 0 || mem->me() == 1) { int start[2]; int length[2]; start[0] = 0; length[0] = intbufsize/2; start[1] = length[0]; length[1] = intbufsize - length[0]; data = buf.readwrite(start[mem->me()], length[mem->me()]); PRINTF(("%d: adding %d to [%d, %d)\n", mem->me(), 10 * (mem->me()+1), start[mem->me()], start[mem->me()]+length[mem->me()])); for (i=0; ime() + 1); } buf.release(); mem->sync(); PRINTF(("------------------------------------------------------\n")); mem->sync(); data = buf.readwrite(start[1-mem->me()], length[1-mem->me()]); PRINTF(("%d: adding %d to [%d, %d)\n", mem->me(), 100 * (mem->me()+1), start[1-mem->me()], start[1-mem->me()]+length[1-mem->me()])); for (i=0; ime() + 1); } buf.release(); mem->sync(); PRINTF(("------------------------------------------------------\n")); mem->sync(); } else { mem->sync(); PRINTF(("------------------------------------------------------\n")); mem->sync(); mem->sync(); PRINTF(("------------------------------------------------------\n")); mem->sync(); } if (mem->me() == 0) { cdata = buf.readonly(0, intbufsize); for (i=0; ime())); mem->sync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); PRINTF(("%d: exiting\n", mem->me())); PRINTF(("%d: syncing\n", mem->me())); mem->sync(); PRINTF(("==========================================================\n")); mem->sync(); mem->set_localsize(0); } void do_double_tests(const Ref&msg, const Ref&mem) { PRINTF(("double tests entered\n")); int i,j; const int doublebufsize = 4; mem->set_localsize(doublebufsize*sizeof(double)); cout << scprintf("Using memory group \"%s\".\n", mem->class_name()); mem->sync(); MemoryGrpBuf dbuf(mem); PRINTF(("%d: double tests mem = 0x%x\n", mem->me(), mem.pointer())); double factor = 1.0; for (i=0; ime(); i++) factor *= 10.0; PRINTF(("%d: setting 5th digit\n", mem->me())); double *data = dbuf.writeonly_on_node(0, doublebufsize); for (i=0; ime()+1) + 100000.0 * i; } dbuf.release(); PRINTF(("%d: 5th digit set\n", mem->me())); double contrib[doublebufsize]; for (i=0; ime()+1) * factor; } mem->sync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); PRINTF(("%d: starting sum reduction\n", mem->me())); for (i=0; in(); i++) { mem->sum_reduction_on_node(contrib, mem->me(), doublebufsize-mem->me(), i); } PRINTF(("%d: done with sum reduction\n", mem->me())); mem->sync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); for (i=0; in(); i++) { mem->sync(); if (i==mem->me()) { const double *cdata = dbuf.readonly_on_node(0, doublebufsize); for (j=0; jsync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); for (i=0; in(); i++) { mem->sync(); if (i==mem->me()) { const double *cdata = dbuf.readonly(0, doublebufsize*mem->n()); for (j=0; jn(); j++) { PRINTF(("%2d: data[%2d] = %12.1f\n", i, j, cdata[j])); } dbuf.release(); } } mem->sync(); PRINTF(("==========================================================\n")); mem->sync(); mem->set_localsize(0); } void do_double2_tests(const Ref&msg, const Ref&mem) { PRINTF(("double2 tests entered\n")); int i,j; const int doublebufsize = 4; mem->set_localsize(doublebufsize*sizeof(double)); cout << scprintf("Using memory group \"%s\".\n", mem->class_name()); mem->sync(); MemoryGrpBuf dbuf(mem); double *data = dbuf.writeonly_on_node(0, doublebufsize); for (i=0; ime() + 1)%mem->n(); double contrib[doublebufsize]; for (i=0; ime()/200.0; } mem->sync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); PRINTF(("%d: starting sum reduction\n", mem->me())); for (i=0; i<200; i++) { mem->sum_reduction_on_node(contrib, 0, doublebufsize, target); } PRINTF(("%d: done with sum reduction\n", mem->me())); mem->sync(); PRINTF(("---------------------------------------------------------\n")); mem->sync(); for (i=0; in(); i++) { mem->sync(); if (i==mem->me()) { const double *cdata = dbuf.readonly(0, doublebufsize*mem->n()); for (j=0; jn(); j++) { PRINTF(("%2d: data[%2d] = %12.1f\n", i, j, cdata[j])); } dbuf.release(); } } mem->sync(); PRINTF(("==========================================================\n")); mem->sync(); mem->set_localsize(0); } ///////////////////////////////////////////////////////////////////////////// // Local Variables: // mode: c++ // c-file-style: "CLJ" // End: