Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

PTP/release notes/3.0

< PTP‎ | release notes
Revision as of 11:16, 5 December 2009 by G.watson.computer.org (Talk | contribs) (Download and install Eclipse)

PTP Installation

This installation describes how to install PTP and its pre-requisites. This is intended for PTP users. If you are a PTP Developer and want to build PTP from the plug-ins yourself, see PTP 3.0 Development Environment Setup

The installation process for PTP depends on a number of factors, including the versions of software you have installed on your system, your operating system, and the types of target systems you want to use. The basic installation steps are:

  1. Install Java
  2. Install Eclipse
  3. Install CDT (C/C++ Development Tools) and other pre-reqs e.g. RSE
  4. Install PTP (including RDT)

To complete the installation, you will probably also need to build and install a small set of platform-specific runtime components.

These steps are detailed below:

Install Java

Ensure that a Java Runtime Environment (JRE) version 1.5 or higher is installed. This can be done with the command:

   java -version

In addition an IBM, Sun, or equivalent JRE is required; The gcj-based Java shipped with most Linux distributions does not work with Eclipse. If in doubt, run the above command and check if there is a reference to gcj. If you are using the Linux operating system, download and install either the Sun Java Runtime Environment or the IBM Java Runtime Environment.

Download and install Eclipse

Download Eclipse 3.5.1 (Galileo) from http://eclipse.org/downloads/

We recommend either:

  • "Eclipse Classic" - if you also plan to do Java and/or plugin development, or
  • "Eclipse IDE for C/C++ Developers" - only includes support for C/C++, which is simpler and smaller

Unpack and launch Eclipse

After downloading and extracting Eclipse (zip or tar file), there's nothing else to the installation process from the Eclipse side. In the extracted folder, simply run the eclipse executable file. It will ask for a workspace location; the default is fine.

Install PTP and its Pre-requisite features

Launch Eclipse, then follow the instructions below.

Note: The "Install New Software" Dialog in Eclipse 3.5 (Galileo) can be confusing when installing from multiple update sites at the same time, which is why we recommend installing each component separately. If you wish to install them all at the same time, add each site if it is not already listed, then use the "Work with:" dropdown box to choose "-- All Available Sites--". You can then check items from the multiple update sites. If you do this, make sure items you check while perusing one update site still stay checked after looking thru another one.

  1. Install Remote System Explorer (RSE) 3.1.1 from the Galileo update site.
    • Open "Help > Install New Software..."
    • In the "Work With" drop-down box, select the Galileo Site.
    • Open "General Purpose Tools"
    • Check "Remote System Explorer End-User Runtime"
    • Finish the install by following the prompts
      • You don't need to restart Eclipse
  2. If you are not planning to use the Remote Development Tools (RDT), go to step 4.
    • If you think you might use RDT in the future, you can always do step 3 now, or leave it until you install RDT.
  3. Install the C/C++ Development Tools (CDT) 6.0.2 from a downloaded archive. Do this only if you are installing RDT.
    • Download the most recent build of CDT 6.0.2 from http://download.eclipse.org/tools/cdt/builds/6.0.2/index.html
    • Save the cdt-master-xxx.zip file to a known location
    • Open "Help > Install New Software..."
    • Click "Add..." to add an update site
    • In the resulting dialog, click "Archive..." and navigate to the location of the cdt-master-xxx.zip file you downloaded. This will fill in the "Location" field. The "Name" field is optional.
    • Check each of the features you want, or check the main categories to install everything.
      • Note that if you are installing all of the Parallel Language Development Tools (PLDT), you'll need UPC, so be sure to check "Unified Parallel C Support" (under "CDT Optional Features")
      • Suggestion: under "CDT Optional Features" select everything, but uncheck "Eclipse CDT Testing Feature" (can be confusing/annoying for users)
    • Finish the install by following the prompts
      • You don't need to restart Eclipse
    • Go to step 5
  4. Install the C/C++ Development Tools (CDT) 6.0.1 from the Galileo update site. Do this only if you are not installing RDT.
    • Open "Help > Install New Software..."
    • In the "Work With" drop-down box, select the Galileo Site.
    • Open "Programming Languages"
    • Check "Eclipse C/C++ Development Tools"
    • Finish the install by following the prompts
      • You don't need to restart Eclipse
  5. Install PTP 3.0
    • Open "Help > Install New Software..."
    • Click "Add..." to add an update site
    • Enter the location of the PTP update site: http://download.eclipse.org/tools/ptp/releases/galileo
      • The "Name" field can contain anything you want
    • Check "Fortran Development Tools (Photran)" if you want to add Fortran support. See the Photran 5.0 User's Guide for more information on installing and using Photran
    • Check "Parallel Tools Platform" to add PTP
    • Check "Remote Development" tools *only* if you completed step 3 above.
    • Finish the install by following the prompts
      • You should restart Eclipse when prompted.

Prerequisites

Component OS (Eclipse) OS (Server) Java Eclipse CDT RSE MPI Other
PTP
Linux
Mac OS X
Windows
Linux
Mac OS X
Unix (e.g. AIX)
1.5 or later 3.5 6.0.1 3.1
Open MPI 1.2.x or 1.3.x
MPICH 2 1.0.x
IBM Parallel Environment
gdb 6.3 - 6.8
RDT
Linux
Mac OS X
Windows
Linux
Mac OS X
Unix (e.g. AIX)
Windows
1.5 or later 3.5 6.0.2 3.1 N/A N/A

Installing OpenMPI

If you do want to build OpenMPI yourself, here are instructions for building OpenMPI 1.3.4:

  1. Download the openmpi-1.3.4.tar.gz file
  2. Untar it using the command tar -xzvf openmpi-1.3.4.tar.gz and cd to the directory it creates
  3. Run ./configure
    • The default installation location is /usr/local
    • To install into a different location, e.g. /usr/local/openmpi1.3.4, use the command:
      • ./configure --prefix=/usr/local/openmpi-1.3.4
      • Then don't forget to modify PATH, etc:
        • export PATH=/usr/local/openmpi-1.3.4/bin:/usr/local/bin:$PATH
        • export LD_LIBRARY_PATH=/usr/local/openmpi-1.3.4/lib:/usr/local/lib
    • If you have problems with Fortran bindings (e.g. Snow Leopard), you can disable this by adding --disable-mpi-f77 to the configure script
  4. Build and install with sudo make install

Then to check your install:

  1. ompi_info should return version info including version of 1.3.4

Build and run a small MPI test case, for example: testMPI.c

  1. mpicc -o testMPI testMPI.c
  2. mpirun -np 4 testMPI


Installing PTP Server Components

PTP comes with optional components that support different resource managers (IBM's LoadLeveler and Parallel Environment, SLURM and PBS), as well as a parallel debugger called the Scalable Debug Manager (SDM). These components must be installed on the target machine before PTP can be used.

If the target machine and the local machine are the same, skip to step 2 below. In the following steps, YYYYMMDDHHMM corresponds to the numeric build date of the PTP release, for example, 200908181129.

  1. Copy the server components to the target machine
    1. Locate the plugins directory contained in the Eclipse installation directory eclipse.
    2. Copy the following directories and their contents to a known location on the target machine. The only requirement is that they are all in the same location.
      • org.eclipse.ptp.utils_3.0.0.YYYYMMDDHHMM
      • org.eclipse.ptp.proxy_3.0.0.YYYYMMDDHHMM
      • org.eclipse.ptp.debug.sdm_3.0.0.YYYYMMDDHHMM
    3. If you wish to use PTP with IBM LoadLeveler, copy the following directory and its contents:
      • org.eclipse.ptp.rm.ibm.ll.proxy_3.0.0.YYYYMMDDHHMM
    4. If you wish to use PTP with IBM Parallel Environment, copy the following directory and its contents:
      • org.eclipse.ptp.rm.ibm.pe.proxy_3.0.0.YYYYMMDDHHMM
    5. If you wish to use PTP with SLURM, copy the following directory and its contents:
      • org.eclipse.ptp.rm.slurm.proxy_3.0.0.YYYYMMDDHHMM
    6. If you wish to use PTP with PBS, copy the following directory and its contents:
      • org.eclipse.ptp.rm.pbs.proxy_3.0.0.YYYYMMDDHHMM
    7. Finally, copy the following directory and contents, replacing <os> and <arch> with the target system's operating system and architecture respectively:
      • org.eclipse.ptp.<os>.<arch>_3.0.0.YYYYMMDDHHMM
  2. To complete the installation on the target system, change to the org.eclipse.ptp.<os>.<arch>_3.0.0.YYYYMMDDHHMM directory and run the command:
     sh BUILD

This should build and install the executables. Check the bin directory to see if there are executables in it (e.g. ptp_ibmpe_proxy or sdm). If you see any errors here, please refer to the Trouble Shooting section below.

The server executables can reside in any convenient directory. When you create a resource manager, you will need to navigate to the this directory (the bin directory by default) and select the appropriate resource manager proxy agent (if it requires one). When you configure a debug launch configuration, you will need to select the sdm executable in this directory.

Install Remote Development Tools (RDT)

Installation of RDT is in two parts. The first part comprises installing RDT into your Eclipse distribution on the local machine. The second part comprises installing components on the target machine you wish to use with RDT to host your remote projects.

Installing RDT

If you didn't install RDT when you installed PTP, you can do this any time from Eclipse as follows:

  1. Open "Help > Install New Software..."
  2. If you added the PTP update site previously, select it from the "Work with:" dropdown
  3. Select "Remote Development Tools" from the update site.
  4. Finish the installation by following the prompts.
    • When asked, click "Yes" to restart the Eclipse workbench.

Installing RDT Server Components

RDT provides advanced parsing and indexing functionality for C/C++ projects in a remote client-server scenario. The RDT server component, which contains the parser and index database, must be located on the same remote machine as the project files.

The RDT server component provides the following functionality:

  • Editing of remote files.
  • Creation of an index database from C/C++ source code files located on the remote machine.
  • Advanced search and code assist functionality based on the contents of the remote index database.
  • Remote C/C++ projects require a connection to be established with a remote RDT server. This guide describes how to install and run the RDT server.

Note: The RDT server component is based on the RSE dstore server. Therefore setting up the RDT server is very similar to setting up the RSE dstore server. The guide to setting up the RSE dstore server can be found here, however this section contains documentation specific to the RDT server.

See Server Installation on Unix, Linux and MacOS X for installing on Unix, Linux or MacOS X systems.

See Server Installation on Windows for installing on Windows systems.

Server Installation on Unix, Linux and MacOS X

The following documentation explains how to install the Linux or UNIX server code, start the server daemon, and make a connection to a remote Linux or UNIX server.

Prerequisites

To use the Remote System Explorer communications server daemon you need to install Perl. Using the daemon helps eliminate some of the manual steps when you connect to the server.

Installing the server code

  1. Ensure that Perl is installed.
  2. Ensure that a Java Runtime Environment (JRE) version 1.5 or higher is installed. An IBM, Sun or equivalent JRE is required; The gcj-based Java shipped with most Linux distributions does not work. If in doubt, run the command java -version and check if there is a reference to gcj.
  3. Choose a directory where you want to install the server code. These instructions will use the /home/user/ directory as an example, but you are free to use any directory. When the server archive file is expanded it will create a directory named rdt-server in the location where it is expanded.
  4. Go to the PTP 3.0 Builds page and download the RDT server package that suits your operating system to this directory.
  5. Switch to the /home/user/ directory.
  6. Run the following command in the /home/user directory to extract the server code from the package appropriate to your operating system. For example, for Linux this command is:
    tar -xvf rdt-server-linux-1.0.tar
  1. A directory named /home/user/rdt-server will be created that contains the server files.

Starting the server

You can start the RSE communications server with the server daemon, or manually. Before starting the server, make sure the Java command is in your path, you can do this by running the following command:

   java -version

You should see something similar to the following:

   java version "1.5.0_16"
   Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_16-b06-284)
   Java HotSpot(TM) Client VM (build 1.5.0_16-133, mixed mode, sharing)
   

If you receive a "command not found" error, then try creating a symbolic link to the java command in /usr/bin by running the following command:

   ln -s  /opt/IBMJava2-141/jre/bin/java /usr/bin/java

To start the server with the server daemon

Ensure that you are running using the root user ID. (If the daemon is not run under root, it will be unable to authenticate connecting users.) Run the following commands:

   su -l root
   cd /home/user/rdt-server
   perl ./daemon.pl [daemonPort] [serverPortRange]

Note that the server daemon runs on port 4075 by default. You can pass the optional daemonPort argument to force a different port if you want. If your daemon runs behind a firewall, you may want to specify the optional serverPortRange argument to restrict selected server ports to the range given:

   perl ./daemon.pl 4075 10000-10010

To start the server manually

Note: In the following discussion we assume that the RSE server has been installed on Linux. If you are running on a UNIX system the script name is server.sh" rather than server.pl.

If you do not have root access on a remote machine, you can start the server manually for your particular user id only. Run the following commands:

   cd /home/user/rdt-server
   perl ./server.pl [port]

These commands run the server.pl script located in the /opt/rseserver directory. The port parameter to the server.pl script is optional. If you do not specify a port, then the server will pick the first one available and print the port number to standard out. By default, it is usually 4033. If you would like to use a different port, you will then have to enter this port number in port property for the Files subsystem for your connection in the Remote System Explorer (see Connecting to the Remote Server, below). Otherwise, you do not need to change this property.

Note: When you connect RSE to the server, the server will terminate as soon as you disconnect the client. The daemon, however, will not terminate.

Server Installation on Windows

The following documentation explains how to install the Windows server code, start the server daemon, and make a connection to a remote Windows server.

Installing the server code

  1. Choose a directory where you want to install the server code. These instructions will use the C:/ directory as an example, but you are free to use any directory. When the server archive file is expanded it will create a directory named rdt-server in the location where it is expanded.
  2. Go to the PTP 3.0 Builds page and download the RDT Windows server package.
  3. Copy the file rdt-server-windows-1.0.zip to the <code>C:\ directory (this could be on a different machine).
  4. Use an unzip utility to extract the server code.
  5. A directory named C:\rdt-server will be created that contains the server files.

Starting the server

You can start the RDT communications server manually, or as a daemon.

To start the server as a daemon

Note that the server daemon does not enforce any user authentication. If you run the server daemon, any user can connect to the machine, work with the file system and run commands. Use of the server daemon on Windows systems is not recommended.

Simply double click the daemon.bat program to start a server daemon. You can edit the daemon.bat file to change properties for the daemon, like a specific daemon port to use or to force a port range for the server (in order to comply with firewalls).

The server daemon runs on port 4075 by default. You can pass the optional daemonPort argument to force a different port if you want. If your daemon runs behind a firewall, you may want to specify the optional serverPortRange argument to restrict selected server ports to the range given:

   daemon.bat 4075 10000-10010

To start the server manually

Simply double click on the server.bat program to start the RDT server. The server will pick the first port available and print the port number. By default, it is usually 4033. You will then have to enter this port number in port property for the Files subsystem for your connection in the Remote System Explorer.

For security reasons, the server will only wait a limited time until a client connects (12000 seconds by default). In order to start the server with an exactly specified port or timeout, open a Windows command prompt and enter:

   c:
   cd \rdt-server
   server.bat [port] [timeout]

When you connect RDT to the server, the server will terminate as soon as you disconnect the client. The daemon, however, will not terminate.

Feature Descriptions

Feature Required Description
Parallel Tools Platform Core Y Core components of PTP
Parallel Tools Platform End-User Runtime Y Main PTP feature
PTP Remote Services Y (for remote services) Adds a remote services abstraction that can be used to connect to remote systems using either Remote Tools or RSE. Can be installed as a stand-alone component.
PTP Common External Components Y (for proxy agents and debugger) Components that must be installed on a target system to support certain resource managers and the debugger
PTP Common Utilities Y Common utility functions. Can be installed as a stand-alone component.
PTP Parallel Language Development Tools N (recommended) Adds MPI, OpenMP, LAPI, and UPC analysis and assistance tools
PTP Parallel Language Development Tools LAPI Support N Adds LAPI assistance tools
PTP External Tools Framework N Adds support for the integration of external tools (formerly Performance Tools Framework)
PTP External Tools Framework TAU Support N Adds support for the integration of the Tuning and Analysis Utilities (TAU)
PTP Remote Tools N (recommended) Light weight ssh-based remote services. Can be installed as a stand-alone component.
PTP Remote Tools Enabler N (recommended) Adds support to allow PTP to use the remote services provided by Remote Tools
PTP RSE Enabler N (recommended) Adds support to allow PTP to use the remote services provided by RSE
PTP Scalable Debug Manager N (recommended) External component to allow debugging of parallel applications. Can be installed as a stand-alone component.
PTP Support For IBM LoadLeveler N Adds resource manager support for IBM LoadLeveler
PTP Support For IBM Parallel Environment N Adds resource manager support for IBM Parallel Environment
PTP Support For MPICH2 N Adds resource manager support for MPICH2
PTP Support For Open MPI N (recommended) Adds resource manager support for Open MPI
PTP Remote Development Tools (RDT) N (recommended) Adds capability to work with C/C++ projects on a remote machine

Test your installation

The easiest way to test your installation is to create and run an MPI application.

  1. Start Eclipse. (You may need to use the -clean parameter to force it to recognize new features and plug-ins).
  2. Switch to the C/C++ perspective (Window > Open Perspective > Other...)
  3. Create a small MPI C project.
  4. Open the PTP Runtime perspective (Window>Open Perspective>Other...).
  5. Create a new resource manager (e.g. Open MPI) and start it. You should see a machine and one or more nodes appear in the 'Machines View'.
  6. Create a launch configuration (Run > Run Configurations...) and create a launch configuration for a Parallel Application.
    • Fill in the information for the particular type of resource manager.
    • For example, for an Open MPI application this includes (but may not be limited to):
      • On Resources tab, select Number of processes
      • On Application tab, select your Project for Parallel Project, and the executable for Application Program.
      • On Debugger tab, find the sdm executable that you build from the command line during the installation process as the "Path to debugger executable"
  7. Launch the application.

More details on using PTP can be found in Help > Help Contents. Click on "Parallel Tools Platform User Guide".

The PTP help is also available online.


Troubleshooting

  1. I created a resource manager using the "Remote Tools" remote services but I entered the wrong username/password. How do I change these?
  2. Solution: Open the "Remote Environments" view by selecting "Window > Show View > Other...", open the "Remote Tools" folder, and selecting "Remote Environments". In the view, open "PTP Remote Host" and double click on the name of the connection you used in the resource manager configuration.

  3. The parallel debugger does not start (may be stuck in "Waiting for connection...".
  4. Solution: There are many reasons that this could be happing:

    • Check that you can run the MPI program successfully (non-debug), both from the command line, and from within Eclipse
    • Check that you have compiled the application for debuggering with -g
    • Check that the debugger session address is set to "localhost" if you are tunneling over an ssh connection (using "Remote Tools")
    • Check that the debugger session address is set to the hostname of the machine running Eclipse, and this machine is accessible from the remote system, if you are not tunneling or are using RSE
    • Check that you have installed the sdm on the remote machine, and the path is correct on the "Debugger" tab in the launch configuration
    • See Known Issues - Debugger below

    If still have a problem, ask on ptp-dev mailing list, and be sure to list your platform, version of Open MPI (or other system), and what the debugger session address is set to.

  5. How do I simulate multiple nodes on a single machine with Open MPI?
  6. Solution: Edit /usr/local/etc/openmpi-default-hostfile (or wherever you installed Open MPI) and add lines containing
    node0
    node1
    ...
    

    Edit /etc/hosts and add a localhost entry for each name you added to the openmpi-default-hostfile:

    127.0.0.1 node0
    127.0.0.1 node1
    ...
    

    Edit /usr/local/etc/openmpi-mca-params.conf and add the following to the end:

    orte_default_hostfile = /usr/local/etc/openmpi-default-hostfile
    
  7. How do I launch eclipse?
  8. Solution: Normally just run the eclipse executable - however, you may want to try this from a command line instead of from a "shortcut" - some OS's or windowing systems do not properly send the environment information. And, some OS's send the wrong info from the command line. Your mileage may vary.

  9. Why are there XML tags in my parallel program output when I run my OpenMPI program in PTP?
  10. Solution: XML tags should be gone in OpenMPI version 1.3.4 and later

  11. I installed PTP and built the executables ("Server Components") by running 'sh BUILD' but I see the message "configure: error: utils directory not found"
  12. Solution: Building these components tries to build all resource managers. If you don't have IBM PE or LoadLeveler installed, it can't build these. You probably can see "Building org.eclipse.ptp.rm.ibm.pe.proxy" and "Building org.eclipse.ptp.rm.ibm.ll.proxy" a few lines ahead of the "configure: error" errors. If so, it just can't install these, which is OK because you don't need them.

Known Issues

Resource Managers

  1. Resource managers seem to get stuck at "Opening connection" when starting.
  2. Connecting to a remote resource manager on some operating systems (in particular Fedora Core 11) generate a Kerberos authentication request. Check the command line where you started Eclipse for a Kerberos prompt. Enter your login name and password when requested.

    Your operating system documentation may provide information on how to disable this request from being generated.

  3. A "Secure Storage" dialog is seen when starting Eclipse on Linux.
  4. Eclipse stores usernames/passwords in secure storage. On some systems, a password (usually your login password) must be entered to unlock this storage before Eclipse can access it. Check your operating system documentation for ways to disable this prompt.

  5. There are synchronization issues when two (or more) remote resource managers attempt to start simultaneously.
  6. This only happens when PTP is first launched, and attempts to reconnect to resource managers that were running when Eclipse was closed.

    Reproduce By: Start two remote resource managers that use remote tools connections. Exit from Eclipse. Restart Eclipse.

    Workaround: Shutdown resource managers before exiting Eclipse

  7. If two resource managers share the same remote connection, stopping one will also stop the other.
  8. Reproduce By: Create two resource managers that use the same remote connection. Start both resource managers. Stop one resource manager.

    Workaround: None. This is expected behavior since shutting down a resource manager also closes the connection.

Debugger

  1. The debugger gets stuck at "Waiting for connection"
  2. The debugger requires a filesystem that is shared across all nodes in the cluster in order to distribute routing information. If this routing file doesn't exist, then one or more of the debugger server processes will appear to hang.

    Workaround: In this situation, the routing file must be manually distributed in order for the server processes to proceed.

    This limitation will be addressed in a future version of the debugger.

  3. Accelerator keys (F5, F6) operate on the current process selected in Debug view.
  4. There is currently no way to use these keys for the Parallel Debug view.

Remote Development Tools (RDT)

  1. The Remote C/C++ Editor is used by default for local files
  2. RDT currently provides a framework for developing C/C++ programs on remote machines. Although it is our intention that RDT work seamlessly with CDT and other Eclipse plug-ins, there is a problem with the Eclipse platform which hinders interoperabilty between base CDT and RDT, namely that the Remote C/C++ Editor provided by RDT is always used by default for editing C/C++ files.

    Workaround: Although this issue can be worked around by manually selecting the CDT editor (Context Menu->Open With->C/C++ Editor) when you are working with a local CDT project, it can be tedious having to do this for every single file you open. As such, we recommend that you install RDT into an Eclipse installation which you do not intend to do local C/C++ development with. Future versions of Eclipse and RDT should better support local development.

  3. Remote projects are always closed when Eclipse restarts
  4. When you exit and restart Eclipse, all your remote projects are closed. This happens because the .project file is on the remote server and when eclipse starts there is no connection yet, so eclipse thinks the .project file is missing and closes the project.

    Workaround: To work around this issue, simply reopen your projects after the connection to the remote machine has been re-established.

  5. Remote editors are not properly restored on Eclipse restart
  6. If you leave remote editors open upon closing down the workbench, when you restart, the editors will not be properly initialized, showing a "resource not found" error. Closing and reopening the editor will not alleviate the problem. This problem occurs because on startup of the workbench, the remote connection is not yet established, and hence opening the editors fails.

    Workaround: To work around this problem, close all editors opened on remote resources before shutting down the workbench. If the problem occurs, you can alleviate it by closing the affected editors and restarting the workbench.

  7. Cannot cancel builds when using the RSE provider
  8. There is an RSE bug which prevents RSE from forcibly terminating remote processes. As a result, if you use RSE to build, you won't be able to cancel a build while it's in progress.

    Workaround: Use the Remote Tools provider if possible. Otherwise there is no workaround.

  9. Quick Type Hierarchy does nothing
  10. Invoking Quick Type Hierarchy from the editor context menu does not currently do anything.

    Workaround: Use "Open Type Hierarchy" instead to open the Type Hierarchy View for an alternate method of viewing type hierarchy information.

  11. Creating a remote project that uses Remote Tools as the filesystem does not seem to work.
  12. There is a problem with that causes the ssh connection used by Remote Tools to become disconnected.

    Workaround: Use RSE for the filesystem. This will be fixed in the next release of PTP.

Parallel Language Development Tools (PLDT)

  1. Analysis of parallel applications located on a remote server doesn't seem to work
  2. Note that not all PLDT features are tested and verified for running with RDT at this time.

    Workaround: To use PLDT analysis features, use a local CDT project, instead of a remote project.

Back to the top