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
c095bb58
Commit
c095bb58
authored
Jul 24, 2015
by
peastman
Browse files
Merge pull request #1050 from peastman/winimport
Added missing Windows imports
parents
363406d1
48c77012
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
platforms/cuda/src/CudaParameterSet.cpp
platforms/cuda/src/CudaParameterSet.cpp
+4
-4
platforms/opencl/src/OpenCLParameterSet.cpp
platforms/opencl/src/OpenCLParameterSet.cpp
+4
-4
No files found.
platforms/cuda/src/CudaParameterSet.cpp
View file @
c095bb58
...
@@ -191,8 +191,8 @@ string CudaParameterSet::getParameterSuffix(int index, const std::string& extraS
...
@@ -191,8 +191,8 @@ string CudaParameterSet::getParameterSuffix(int index, const std::string& extraS
* Define template instantiations for float and double versions of getParameterValues() and setParameterValues().
* Define template instantiations for float and double versions of getParameterValues() and setParameterValues().
*/
*/
namespace
OpenMM
{
namespace
OpenMM
{
template
void
CudaParameterSet
::
getParameterValues
<
float
>(
vector
<
vector
<
float
>
>&
values
);
template
OPENMM_EXPORT_CUDA
void
CudaParameterSet
::
getParameterValues
<
float
>(
vector
<
vector
<
float
>
>&
values
);
template
void
CudaParameterSet
::
setParameterValues
<
float
>(
const
vector
<
vector
<
float
>
>&
values
);
template
OPENMM_EXPORT_CUDA
void
CudaParameterSet
::
setParameterValues
<
float
>(
const
vector
<
vector
<
float
>
>&
values
);
template
void
CudaParameterSet
::
getParameterValues
<
double
>(
vector
<
vector
<
double
>
>&
values
);
template
OPENMM_EXPORT_CUDA
void
CudaParameterSet
::
getParameterValues
<
double
>(
vector
<
vector
<
double
>
>&
values
);
template
void
CudaParameterSet
::
setParameterValues
<
double
>(
const
vector
<
vector
<
double
>
>&
values
);
template
OPENMM_EXPORT_CUDA
void
CudaParameterSet
::
setParameterValues
<
double
>(
const
vector
<
vector
<
double
>
>&
values
);
}
}
\ No newline at end of file
platforms/opencl/src/OpenCLParameterSet.cpp
View file @
c095bb58
...
@@ -198,8 +198,8 @@ string OpenCLParameterSet::getParameterSuffix(int index, const std::string& extr
...
@@ -198,8 +198,8 @@ string OpenCLParameterSet::getParameterSuffix(int index, const std::string& extr
* Define template instantiations for float and double versions of getParameterValues() and setParameterValues().
* Define template instantiations for float and double versions of getParameterValues() and setParameterValues().
*/
*/
namespace
OpenMM
{
namespace
OpenMM
{
template
void
OpenCLParameterSet
::
getParameterValues
<
float
>(
vector
<
vector
<
float
>
>&
values
)
const
;
template
OPENMM_EXPORT_OPENCL
void
OpenCLParameterSet
::
getParameterValues
<
float
>(
vector
<
vector
<
float
>
>&
values
)
const
;
template
void
OpenCLParameterSet
::
setParameterValues
<
float
>(
const
vector
<
vector
<
float
>
>&
values
);
template
OPENMM_EXPORT_OPENCL
void
OpenCLParameterSet
::
setParameterValues
<
float
>(
const
vector
<
vector
<
float
>
>&
values
);
template
void
OpenCLParameterSet
::
getParameterValues
<
double
>(
vector
<
vector
<
double
>
>&
values
)
const
;
template
OPENMM_EXPORT_OPENCL
void
OpenCLParameterSet
::
getParameterValues
<
double
>(
vector
<
vector
<
double
>
>&
values
)
const
;
template
void
OpenCLParameterSet
::
setParameterValues
<
double
>(
const
vector
<
vector
<
double
>
>&
values
);
template
OPENMM_EXPORT_OPENCL
void
OpenCLParameterSet
::
setParameterValues
<
double
>(
const
vector
<
vector
<
double
>
>&
values
);
}
}
\ No newline at end of file
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