Skip to main content

PyTorch Code for Simple Neural Networks for MNIST Dataset

Recompiling NS2 (Network Simulator 2)

Assumptions:

I have installed my ns-allinone-2.34 under /home/pradeep/ns-allinone-2.34
Path is been set in the .bash_profile (which are located at /home/pradeep/) in fedora and .bashrc in ubuntu

There are two ways in which the NS2 can be recompiled

1. You modify the existing algorithm (use the same header and the C++ source files)

2. Adding new files (adding new header and C++ source files)

In first method,

Step 1: open the shell prompt and go to the ns-allinone-2.34/ns-2.34/ folder(there are 3 makefiles, Makefile.vc, Makefile, Makefile.in, for adding any new file should be done at the Makefile.in file)

Step 2: Once the existing algorithm is changed (after modifying the existing header and the C++ source file), go to step 1

Step 3: execute the command, make (the make command executes the instructions given in the Makefile.in) and press enter, If you have no errors in your modified code, then the compilation will be success, else you may get errors, which needs to be corrected

Step 4: Test your tcl script for the new algorithm

In the second Method,

Step 1: open the shell prompt and go to the /home/pradeep/ns-allinone-2.34/ns-2.34/ folder(there are 3 makefiles namely Makefile.vc, Makefile, Makefile.in, for adding any new file should be done at the Makefile.in file)

Step 2: You may create new header and C++ source files for your new proposed algorithm and hence you need to tell that information to the Makefile.in (which is available in /home/pradeep/ns-allinone-2.34/ns-2.34/). For example, assume i created two files tcpnew.h and tcpnew.cc

Step 3: Put all your files inside a folder (for Example create a new folder tcpnew) and put the tcpnew folder under the folder /home/pradeep/ns-allinone-2.34/ns-2.34/

Step 4: Now open the Makefile.in using any editor (usually vi or gedit) and add the folder information to the OBJ_CC variable)

Step 5: anywhere inside the OBJ_CC variable, put the tcpnew folder information like this  tcpnew/tcpnew.o  \

Step 6: after editing the file entry, go to step 1 and execute the command make and press enter. If you have no errors in your modified code, then the compilation will be success, else you may get errors, which needs to be corrected.

Step 7: Test your tcl script for the new Algorithm.

Comments

  1. hello sir

    sir u hav done a great job. i really lyked ur site.. its really helpful.

    ReplyDelete
  2. Sir
    i have tried your procedure.
    i have added tcp-nreno.cc (copy of tcp-reno with changed name) and tcpnew.h (tcp.h with changed name) to folder newtcp. I have make entry in make.in about newtcp/tcp-nreno.o and './configure' ns and 'make' it. And i get following error :

    newtcp/tcp-nreno.cc: In member function ‘virtual TclObject* RenoTcpClass::create(int, const char* const*)’:
    newtcp/tcp-nreno.cc:38:15: error: expected type-specifier before ‘NRenoTcpAgent’
    newtcp/tcp-nreno.cc:38:15: error: expected ‘)’ before ‘NRenoTcpAgent’
    newtcp/tcp-nreno.cc:38:30: error: cannot convert ‘int*’ to ‘TclObject*’ in return
    newtcp/tcp-nreno.cc: At global scope:
    newtcp/tcp-nreno.cc:42:5: error: ‘NRenoTcpAgent’ has not been declared
    newtcp/tcp-nreno.cc: In function ‘int window()’:
    newtcp/tcp-nreno.cc:49:16: error: ‘cwnd_’ was not declared in this scope
    newtcp/tcp-nreno.cc:49:25: error: ‘dupwnd_’ was not declared in this scope
    newtcp/tcp-nreno.cc:50:6: error: ‘frto_’ was not declared in this scope
    newtcp/tcp-nreno.cc:53:20: error: ‘force_wnd’ was not declared in this scope
    newtcp/tcp-nreno.cc:55:16: error: ‘wnd_’ was not declared in this scope
    newtcp/tcp-nreno.cc: At global scope:
    newtcp/tcp-nreno.cc:60:8: error: ‘NRenoTcpAgent’ has not been declared
    newtcp/tcp-nreno.cc: In function ‘double windowd()’:
    newtcp/tcp-nreno.cc:67:15: error: ‘cwnd_’ was not declared in this scope
    newtcp/tcp-nreno.cc:67:23: error: ‘dupwnd_’ was not declared in this scope
    newtcp/tcp-nreno.cc:68:12: error: ‘wnd_’ was not declared in this scope
    newtcp/tcp-nreno.cc: At global scope:
    newtcp/tcp-nreno.cc:73:1: error: ‘NRenoTcpAgent’ does not name a type
    newtcp/tcp-nreno.cc:77:6: error: ‘NRenoTcpAgent’ has not been declared
    newtcp/tcp-nreno.cc: In function ‘void recv(Packet*, Handler*)’:
    newtcp/tcp-nreno.cc:81:13: error: ‘qs_approved_’ was not declared in this scope
    newtcp/tcp-nreno.cc:81:50: error: ‘last_ack_’ was not declared in this scope
    newtcp/tcp-nreno.cc:82:17: error: ‘endQuickStart’ was not declared in this scope
    newtcp/tcp-nreno.cc:83:13: error: ‘qs_requested_’ was not declared in this scope
    newtcp/tcp-nreno.cc:84:38: error: ‘processQuickStart’ was not declared in this scope
    newtcp/tcp-nreno.cc:93:26: error: ‘lastreset_’ was not declared in this scope
    newtcp/tcp-nreno.cc:98:4: error: ‘nackpack_’ was not declared in this scope
    newtcp/tcp-nreno.cc:99:2: error: ‘ts_peer_’ was not declared in this scope
    newtcp/tcp-nreno.cc:101:43: error: ‘ecn_’ was not declared in this scope
    newtcp/tcp-nreno.cc:102:20: error: ‘ecn’ was not declared in this scope
    newtcp/tcp-nreno.cc:103:17: error: ‘recv_helper’ was not declared in this scope
    newtcp/tcp-nreno.cc:104:22: error: ‘recv_frto_helper’ was not declared in this scope

    Can you please help me with it?

    ReplyDelete
  3. I had change the aodv with aodv.cc and aodv.h after made changes in the makefile.in the following errors had occured pls can u help me to fix it?

    Makefile.in is newer than Makefile.
    You need to re-run configure.
    false
    make: *** [Makefile] Error 1

    ReplyDelete
    Replies
    1. I also got the same error
      How did you resolve

      Delete
    2. I also got the same error
      How did you resolve

      Delete
    3. I also got the same error
      How did you resolve

      Delete

Post a Comment

Popular posts from this blog

Installing ns3 in Ubuntu 22.04 | Complete Instructions

In this post, we are going to see how to install ns-3.36.1 in Ubuntu 22.04. You can follow the video for complete details Tools used in this simulation: NS3 version ns-3.36.1  OS Used: Ubuntu 22.04 LTS Installation of NS3 (ns-3.36.1) There are some changes in the ns3 installation procedure and the dependencies. So open a terminal and issue the following commands Step 1:  Prerequisites $ sudo apt update In the following packages, all the required dependencies are taken care and you can install all these packages for the complete use of ns3. $ sudo apt install g++ python3 python3-dev pkg-config sqlite3 cmake python3-setuptools git qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools gir1.2-goocanvas-2.0 python3-gi python3-gi-cairo python3-pygraphviz gir1.2-gtk-3.0 ipython3 openmpi-bin openmpi-common openmpi-doc libopenmpi-dev autoconf cvs bzr unrar gsl-bin libgsl-dev libgslcblas0 wireshark tcpdump sqlite sqlite3 libsqlite3-dev  libxml2 libxml2-dev libc6-dev libc6-dev-i386 libclang-dev llvm-

Installation of NS2 (ns-2.35) in Ubuntu 20.04

Installation of NS2 (ns-2.35) in Ubuntu 20.04 LTS Step 1: Install the basic libraries like      $] sudo apt install build-essential autoconf automake libxmu-dev Step 2: install gcc-4.8 and g++-4.8 open the file using sudo mode $] sudo nano /etc/apt/sources.list Include the following line deb http://in.archive.ubuntu.com/ubuntu bionic main universe $] sudo apt update $] sudo apt install gcc-4.8 g++-4.8 Step 3:  Unzip the ns2 packages to home folder $] tar zxvf ns-allinone-2.35.tar.gz $] cd ns-allinone-2.35/ns-2.35 Modify the following make files. ~ns-2.35/Makefile.in Change @CC@ to gcc-4.8 change @CXX@ to g++-4.8 ~nam-1.15/Makefile.in ~xgraph-12.2/Makefile.in ~otcl-1.14/Makefile.in Change in all places  @CC@ to gcc-4.8 @CPP@ or @CXX@ to g++-4.8 open the file: ~ns-2.35/linkstate/ls.h Change at the Line no 137  void eraseAll() { erase(baseMap::begin(), baseMap::end()); } to This void eraseAll() { this->erase(baseMap::begin(), baseMap::end()); } All changes made Step 4: Open a new termi

Installation of NS2 in Ubuntu 22.04 | NS2 Tutorial 2

NS-2.35 installation in Ubuntu 22.04 This post shows how to install ns-2.35 in Ubuntu 22.04 Operating System Since ns-2.35 is too old, it needs the following packages gcc-4.8 g++-4.8 gawk and some more libraries Follow the video for more instructions So, here are the steps to install this software: To download and extract the ns2 software Download the software from the following link http://sourceforge.net/projects/nsnam/files/allinone/ns-allinone-2.35/ns-allinone-2.35.tar.gz/download Extract it to home folder and in my case its /home/pradeepkumar (I recommend to install it under your home folder) $ tar zxvf ns-allinone-2.35.tar.gz or Right click over the file and click extract here and select the home folder. $ sudo apt update $ sudo apt install build-essential autoconf automake libxmu-dev gawk To install gcc-4.8 and g++-4.8 $ sudo gedit /etc/apt/sources.list make an entry in the above file deb http://in.archive.ubuntu.com/ubuntu/ bionic main universe $ sudo apt update Since, it&#