Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ocelot/include/ocelot/executive/CooperativeThreadArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ namespace executive {
ir::PTXS64 operandAsS64(int, const ir::PTXOperand &);

ir::PTXF32 operandAsF32(int, const ir::PTXOperand &);
ir::PTXF32 operandAsHalf(int, const ir::PTXOperand &);
ir::PTXF64 operandAsF64(int, const ir::PTXOperand &);

ir::PTXB8 operandAsB8(int, const ir::PTXOperand &);
Expand Down
3 changes: 2 additions & 1 deletion ocelot/include/ocelot/parser/PTXParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ namespace parser
void maxnreg( unsigned int regs );
void maxntid( unsigned int tidx, unsigned int tidy = 1024,
unsigned int tidz = 1024 );
void ctapersm( int target, unsigned int ctas );
void ctapersm( const char* target, unsigned int ctas );
void maxnctapersm( unsigned int ctas );
void maxnctapersm();
void minnctapersm( unsigned int ctas );
Expand All @@ -171,6 +171,7 @@ namespace parser
void singleList( float value );
void singleList1( float value );
void targetElement( int token );
void targetElement( const char* target );
void target();
void noAddressSpace();
void addressSpace( int token );
Expand Down
Loading
Loading