Long OpenMP directives in FORTRAN fixed format

Hi,
I have to write (very)long OpenMP directives in FORTRAN fixed format but the compiler complains to any of the techniques used to split them on more than one line. Any suggestions?
I mention that I am using a Forte 7 compiler under Solaris 8(10).
Thanks,
Rak

(The Forte 7 compiler is really old. But I'm sure you know that already.)
The compiler should accept continuations with directives.
Doesn't something like the following work for you:
!omp parallel do
!omp+shared(a,b,c)

Similar Messages

  • When I open my safari it will no longer go directly to my yahoo home page, says..Safari cannot open page because too many redirects occurred,  Can some one tell me how to fix this, I have tried bookmark but won't open from there.

    when I open my safari it will no longer go directly to my yahoo home page, says.. Safari cannot open page because too many redirects accured, how do I fix this.

    Clear the cache in Safari and have another try
    Cheers!

  • Have current Firefox on 3 computers. Get no response on all three even though different server involved. Firefox won't stay up long enough to try your fixes.

    "No response" occurs so frequently that Firefox is non-functioning. I have had to resort to using IE & Chrome. UGH! Typically, Firefox won't stay up long enough to try recommended fixes. Any suggestions?

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back soon.

  • Fixed format data file output

    Does anyone know how to generate fixed format text file? I have few fields in the select which are null and hence messes up the file format, as space does not take up same amount of character width than any alphabets.
    Basically I want to generate fixed length data file which is scheduled through DBMS_JOBS. I am using UTL_FILE utility.
    Every suggestion are welcome
    Thanks in advance for help :)
    email your response at [email protected]

    hello,
    using spaces as filler is sufficient. a space takes up the same room (one character) as any other letter in the alphabet.
    if you look at the output in any word-processing tool or editor, that uses fonts like times, helvetica, arial, etc. those fonts are rendering the space-character smaller. in fact they are rendering each letter different. if you want to see what your output looks like, choose a font like courier.
    if you just generate the file and then process it further, you should be OK. don't let you be fooled by what you see in your editor.
    regards,
    philipp

  • External table: How to load data from a fixed format UTF8 external file

    Hi Experts,
    I am trying to read data from a fixed format UTF8 external file in to a external table. The file has non-ascii characters, and the presence of the non-ascii characters causes the data to be positioned incorrectly in the external table.
    The following is the content's of the file:
    20100423094529000000I1 ABÄCDE 1 000004
    20100423094529000000I2 OMS Crew 2 2 000004
    20100423094529000000I3 OMS Crew 3 3 000004
    20100423094529000000I4 OMS Crew 4 4 000004
    20100423094529000000I5 OMS Crew 5 5 000004
    20100423094529000000I6 OMS Crew 6 6 000004
    20100423094529000000I7 Mobile Crew 7 7 000004
    20100423094529000000I8 Mobile Crew 8 8 000004
    The structure of the data is as follows:
    Name Type Start End Length
    UPDATE_DTTM CHAR 1 20 20
    CHANGE_TYPE_CD CHAR 21 21 1
    CREW_CD CHAR 22 37 16
    CREW_DESCR CHAR 38 97 60
    CREW_ID CHAR 98 113 16
    UDF1_CD CHAR 114 143 30
    UDF1_DESCR CHAR 144 203 60
    UDF2_CD CHAR 204 233 30
    DATA_SOURCE_IND CHAR 294 299 6
    UDF2_DESCR CHAR 234 293 60
    I create the external table as follows:
    CREATE TABLE "D_CREW_EXT"
    "UPDATE_DTTM" CHAR(20 BYTE),
    "CHANGE_TYPE_CD" CHAR(1 BYTE),
    "CREW_CD" CHAR(16 BYTE),
    "CREW_DESCR" CHAR(60 BYTE),
    "CREW_ID" CHAR(16 BYTE),
    "UDF1_CD" CHAR(30 BYTE),
    "UDF1_DESCR" CHAR(60 BYTE),
    "UDF2_CD" CHAR(30 BYTE),
    "DATA_SOURCE_IND" CHAR(6 BYTE),
    "UDF2_DESCR" CHAR(60 BYTE)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER DEFAULT DIRECTORY "TMP"
    ACCESS PARAMETERS ( RECORDS DELIMITED BY NEWLINE
    CHARACTERSET UTF8
    STRING SIZES ARE IN BYTES
    NOBADFILE NODISCARDFILE NOLOGFILE FIELDS NOTRIM
    ( "UPDATE_DTTM" POSITION (1:20) CHAR(20),
    "CHANGE_TYPE_CD" POSITION (21:21) CHAR(1),
    "CREW_CD" POSITION (22:37) CHAR(16),
    "CREW_DESCR" POSITION (38:97) CHAR(60),
    "CREW_ID" POSITION (98:113) CHAR(16),
    "UDF1_CD" POSITION (114:143) CHAR(30),
    "UDF1_DESCR" POSITION (144:203) CHAR(60),
    "UDF2_CD" POSITION (204:233) CHAR(30),
    "DATA_SOURCE_IND" POSITION (294:299) CHAR(6),
    "UDF2_DESCR" POSITION (234:293) CHAR(60) )
    ) LOCATION ( 'D_CREW_EXT.DAT' )
    REJECT LIMIT UNLIMITED;
    Check the result in database:
    select * from D_CREW_EXT;
    I found the first row is incorrect. For each non-ascii character,the fields to the right of the non-ascii character are off by 1 character,meaning that the data is moved 1 character to the right.
    Then I tried to use the option STRING SIZES ARE IN CHARACTERS instead of STRING SIZES ARE IN BYTES, it doesn't work either.
    The database version is 11.1.0.6.
    Edited by: yuan on May 21, 2010 2:43 AM

    Hi,
    I changed the BYTE in the create table part to CHAR, it still doesn't work. The result is the same. I think the problem is in ACCESS PARAMETERS.
    Any other suggestion?

  • Has anyone experienced 'Parent' & 'Child' TOC (bookmark version) issues, when using an InDesign Book to create a fixed format ePub3?

    Hello,
    I'm using the latest versions of AdobeCC and Indesign on the mac to generate fixed format ePub3 files.
    I have an Indesign Book which is comprised of 9 documents (chapters). When I create a bookmark based Table Of Contents, I'm finding that I'm having trouble getting the 'parent' and 'child' hierarchy perfect. This is because some 'child' bookmarks need to be under the 'parent' of one document within my book, and yet I need to add the bookmark from a different document (or chapter).
    In essence, I'm asking is there a way of having a 'child' bookmark in one document, nestled under a 'parent' on a different document within my InDesign book? All I seem to get are repeats of the 'parent' rather than it looking at all of the documents and synching them.
    In the screenshot below (the larger circle), I have added sharks as a parent folder in one 'document/chapter', and then later on in the book (in a different document/chapter, another shark needs to be added to the list under the sharks parent, and yet it doesn't give me the option to add it as a Child to sharks. I created another sharks parent in this later document thinking I might be able to synch across all documents, but all it seems to do is create a duplicate.
    Any help appreciated!
    Thanks, Joe

    Just thought that a much better way of phrasing what I initially asked would be: Is there is a way to synchronize bookmarks across all documents in a book?
    Thanks
    Joe

  • My "Notes" app on my iPhone 4S is no longer syncing up with my "Notes" app on my PC or on my iPad.  It was syncing up fine before.  But no longer.  How do I fix this so that whatever I type in iPhone "Notes" will appear in my other devices' "Notes"?

    My "Notes" app on my iPhone 4S is no longer syncing up with my "Notes" app on my PC or on my iPad.  It was syncing up fine before.  But no longer.  How do I fix this so that whatever I type in iPhone "Notes" will appear in my other devices' "Notes"?

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • I can no longer down load on iTunes said I need a new payment method but why does my bank card no longer work how do I fix this

    Hey everyone I can no longer down load or up date my games videos so on on iTunes
    It's telling me I need a new payment method  but why would my bank card no longer work how can I fix it so my bank card works again

    how do i fix this

  • I can no longer print any document in PDF format. Not sure why

    I can no longer print any document in PDF format. Not sure why? When I try to print, the document saves to my hard drive as a PDF and will not allow me to print? Never had this issue before. Any thoughts?

    Print to file is in the main print dialog (on Acrobat 9.x) as opposed to under Advanced

  • Why can I no longer text message on the larger format by turning my phone?

    Why can I no longer text message on the larger format by turning my phone on its side?

    Hi,
    Since iChat 6 the SMS option in the Menus has disappeared.
    However if you add the number to a Buddy List as if it were  Screen Name but with the leading +1 (as in +1234567890) it will work over AIM.
    It only works to US phones on some Carriers.
    9:44 pm      Wednesday; January 8, 2014
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I upgraded to lion when it first came out but today i tried to open my photoshop cs2 and its telling me the powerpc applications are no longer supported is there any fix out there for this

    i upgraded to lion when it first came out but today i tried to open my photoshop cs2 and its telling me the powerpc applications are no longer supported is there any fix out there for this

    Lion is Not compatible with PPC (Power PC) based software, such as your older version of PhotoShop.  Your choices are you can either upgrade to the newer version of PhotoShop, or you can backup your data and apps, erase your harddrive and reinstall Snow Leopard.
    Hope this helps

  • How can I unload data to ASCII fixed-format or delimited files,

    Hello,
    SQL*Loader loads data from ASCII fixed-format or delimited files. Is there such utility to unload data from Oracle database ?
    Agnieszka

    No. The Export utility will dump data out but not into an ascii file.
    Do you need the whole database or just some table or result of a query set?
    Check out the ULT_FILE package - this will allow you to write some SQL code which will do the job you want.
    Cheers,
    R

  • Hidden text at bottom of page, how can I fix formatting?

    hidden text at bottom of page, how can I fix formatting?

    You don't give much information so I'm going to guess you're using a text box, perhaps in a layout document. Click on the little empty blue box on the lower right side, then click where you want the text to continue.
    Walt

  • Im trying to install photoshop trial but says im running an operating system photoshop no longer supports how do i fix this?

    i keep receiving an error message that says im running an operating system photoshop no longer supports. how do i fix this asap?

    First check to see if your system meets the requirements or not.  If not then see about getting a new system.
    Photoshop - http://helpx.adobe.com/photoshop/system-requirements.html

  • I can no longer shoot directly into phaseone software since i use my new macbook pro with retina display. pictures are not transfered from the camera into captureone. anyone else with this problem? any solutions?

    i can no longer shoot directly into phaseone software - neihter version 6 or 7 - since i use my new macbook pro with retina display. pictures are not transfered from the camera into captureone. anyone else with this problem? any solutions?

    My eyes just glazed over...Please in the future break down each of your issues with paragraphs separated by two carriage returns. It would be much easier when trying to address your issues.
    Go to Apple menu -> System Preferences -> Keyboard and Mouse -> Mouse
    And edit your mouse settings to do what you want it to do.
    Secondly, this is not the place to vent. If you have a complaint, there is:
    http://www.apple.com/feedback/
    or http://www.apple.com/contact/
    We are just end users here helping other end users.
    Third, from my understanding, it would appear you are concerned about the noise the hard drive makes when it falls asleep? Why not put your machine in screen saver mode instead? Apple menu -> System Preferences -> Energy Saver turn off all Energy Saver settings, or set them to run Never.
    Fourth, if your machine was purchased just a few days ago, you may still be able to get an exchange from the store, quicker than you can get a repair done. You may want to look into that possibility.
    Fifth, it does appear you found the Logic forum. I would persist in asking there how to solve your technical issue with Logic regarding the audio. It may be you don't have to do anything special to the hard drive. Remember audio can be transmitted by wire, avoiding ambient sounds.
    Good luck!

Maybe you are looking for

  • Why cant i drag and drop mp3 files into my itunes library in itunes 11.1.1?

    I recently lost a hard drive with most of my music on it. i removed and reinstalled itunes and set it to work on my other hard drive. i was able to drag and drop mp3 files that i had and put them into my library. After the latest updates, now it only

  • IPod Classic to iMac photo transfer

    Laptop died, lost everything. However, my old iPod Classic (click wheel 120GB) still had all of my old photos on it. I have an iMac now and am trying to transfer the photos over. Any good (hopefully free, although not opposed to buying) transfer soft

  • I cant connect to my office wifi

    i cant connect to my office wifi although i've followed all the steps in the manual. My colleague is also using ipad and she can access. i. i have the checked the password ..it's the same ii. i have reset the network pls help

  • Re: Adobe Application Manager Freezing

    I am the Admin for the account.  I am using 10.6.8. the updater seemingly installs the update, but Application manager freezes once the update is complete.

  • Transporting Metadata from not running system!!!

    Hi all, I have a serious problem to solve. Our main system stop working in the day of the presentation of a demo   The problem is that when we open the SAP Management Console and we try to start the system, the JSTART.EXE process hangs in the step "S