"platforms/reference/src/ReferenceIntStreamImpl.cpp" did not exist on "0e879806cdd38e58b04481ecf7fcd93c44c7dc27"
Commit 89d3d50d authored by peastman's avatar peastman
Browse files

Merge pull request #1017 from rmcgibbo/sadface-nvrtc

NVRTC sadface
parents 63bb38a9 7f133cdb
...@@ -370,9 +370,9 @@ private: ...@@ -370,9 +370,9 @@ private:
int getKeySize() const {return 4;} int getKeySize() const {return 4;}
const char* getDataType() const {return "int2";} const char* getDataType() const {return "int2";}
const char* getKeyType() const {return "int";} const char* getKeyType() const {return "int";}
const char* getMinKey() const {return "INT_MIN";} const char* getMinKey() const {return "(-2147483647 - 1)";}
const char* getMaxKey() const {return "INT_MAX";} const char* getMaxKey() const {return "2147483647";}
const char* getMaxValue() const {return "make_int2(INT_MAX, INT_MAX)";} const char* getMaxValue() const {return "make_int2(2147483647, 2147483647)";}
const char* getSortKey() const {return "value.y";} const char* getSortKey() const {return "value.y";}
}; };
void initializeScaleFactors(); void initializeScaleFactors();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment