UINT64

From Jacket Wiki

Jump to: navigation, search
Back to Function List

Convert to unsigned integer

Usage

Jacket for M Language
    Supported Syntax
    
I = uint64(X)
    

GFOR Supported

No

GCOMPILE Supported

No

Types Supported

-  GDOUBLE   GSINGLE   GLOGICAL   GINT32   GINT8   GUINT32   GUINT8   COMPLEX 

Types Not Supported

-

CPU usageJacket only contains GPU computing functions. To run functions on the CPU, try one of the MathWorks products:
http://www.mathworks.com/access/helpdesk/help/techdoc/ref/uint64.html

Notes

One bottleneck in achieving reasonable amounts of speedup is memory transfer. If you wish to optimize your code and achieve speed-ups, try to reduce the amount of casts to CPU types especially on large variables, as each such operation can incur a costly memory transfer operation which would slow down your code.

  • Converts to UINT64 from Jacket specific types
  • Output range 0 to 18,446,744,073,709,551,615

See Also

DOUBLE, SINGLE, INT8, INT16, INT32, INT64, INTMAX, INTMIN, UINT8, UINT16, UINT32

Views