IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Choosing efficient computational data items


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
sachinji84

New User


Joined: 13 Dec 2007
Posts: 14
Location: india

PostPosted: Fri Feb 13, 2015 8:39 am
Reply with quote

Hi,

I have been asked ;
for optimum storage points of view and for faster performance from below options which one is best;

1. PIC 9(4) COMP-3
2. PIC 9(5)
3. PIC S9(5) COMP
4. PIC S9(5) COMP-3

please assist to get the correct answer.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Feb 13, 2015 9:13 am
Reply with quote

Unless your program is doing BILLIONS to TENS OF BILLIONS of arithmetic operations, none of them will make any noticeable difference in CPU time or elapsed time. However, in general COMP-3 and COMP are preferred for mathematical operations (depending upon the precise operations being used). From the Enterprise COBOL Programming Guide manual:
Quote:
8.1.2.1 Choosing efficient computational data items




When you use a data item mainly for arithmetic or as a subscript, code USAGE BINARY on the data description entry for the item. The operations for manipulating binary data are faster than those for manipulating decimal data. However, if a fixed-point arithmetic statement has intermediate results with a large precision (number of significant digits), the compiler uses decimal arithmetic anyway, after converting the operands to packed-decimal form. For fixed-point arithmetic statements, the compiler normally uses binary arithmetic for simple computations with binary operands if the precision is eight or fewer digits. Above 18 digits, the compiler always uses decimal arithmetic. With a precision of nine to 18 digits, the compiler uses either form. To produce the most efficient code for a BINARY data item, ensure that it has:
A sign (an S in its PICTURE clause)
Eight or fewer digits


For a data item that is larger than eight digits or is used with DISPLAY | or NATIONAL data items, use PACKED-DECIMAL. The code generated for | PACKED-DECIMAL data items can be as fast as that for BINARY data items in some cases, especially if the statement is complicated or specifies rounding. To produce the most efficient code for a PACKED-DECIMAL data item, ensure that it has:
A sign (an S in its PICTURE clause)
An odd number of digits (9s in the PICTURE clause), so that it occupies an exact number of bytes without a half byte left over
15 or fewer digits in the PICTURE specification to avoid using library routines for multiplication and division
So your question does not have any ONE correct answer -- COMP or COMP-3 will be better, depending.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
No new posts JCL EXEC PARM data in C Java & MQSeries 2
Search our Forums:

Back to Top