Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
89d3d50d
Commit
89d3d50d
authored
Jul 06, 2015
by
peastman
Browse files
Merge pull request #1017 from rmcgibbo/sadface-nvrtc
NVRTC sadface
parents
63bb38a9
7f133cdb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
plugins/amoeba/platforms/cuda/src/AmoebaCudaKernels.h
plugins/amoeba/platforms/cuda/src/AmoebaCudaKernels.h
+3
-3
No files found.
plugins/amoeba/platforms/cuda/src/AmoebaCudaKernels.h
View file @
89d3d50d
...
...
@@ -370,9 +370,9 @@ private:
int
getKeySize
()
const
{
return
4
;}
const
char
*
getDataType
()
const
{
return
"int2"
;}
const
char
*
getKeyType
()
const
{
return
"int"
;}
const
char
*
getMinKey
()
const
{
return
"
INT_MIN
"
;}
const
char
*
getMaxKey
()
const
{
return
"
INT_MAX
"
;}
const
char
*
getMaxValue
()
const
{
return
"make_int2(
INT_MAX, INT_MAX
)"
;}
const
char
*
getMinKey
()
const
{
return
"
(-2147483647 - 1)
"
;}
const
char
*
getMaxKey
()
const
{
return
"
2147483647
"
;}
const
char
*
getMaxValue
()
const
{
return
"make_int2(
2147483647, 2147483647
)"
;}
const
char
*
getSortKey
()
const
{
return
"value.y"
;}
};
void
initializeScaleFactors
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment