Commit 0af10b15 authored by peastman's avatar peastman
Browse files

Minor changes to doxygen comments

parent d92e0937
...@@ -53,7 +53,7 @@ class KernelFactory; ...@@ -53,7 +53,7 @@ class KernelFactory;
* To get a Platform object, call * To get a Platform object, call
* *
* <pre> * <pre>
* Platform& platform Platform::findPlatform(kernelNames); * Platform& platform = Platform::findPlatform(kernelNames);
* </pre> * </pre>
* *
* passing in the names of all kernels that will be required for the calculation you plan to perform. It * passing in the names of all kernels that will be required for the calculation you plan to perform. It
...@@ -78,6 +78,9 @@ public: ...@@ -78,6 +78,9 @@ public:
/** /**
* Get whether this Platform supports double precision arithmetic. If this returns false, the platform * Get whether this Platform supports double precision arithmetic. If this returns false, the platform
* is permitted to represent double precision values internally as single precision. * is permitted to represent double precision values internally as single precision.
*
* @deprecated This method is not well defined, and is too simplistic to describe the actual behavior of
* some Platforms, such as ones that offer multiple precision modes. It will be removed in a future release.
*/ */
virtual bool supportsDoublePrecision() const = 0; virtual bool supportsDoublePrecision() const = 0;
/** /**
......
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