Kaydet (Commit) c62baccb authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Add some informative comments

Change-Id: I3c85543efe824c06781486aff2d836e5ba48e66e
üst eca4625c
......@@ -45,7 +45,12 @@ enum ds_status
enum class DeviceType
{
None,
// NativeCPU means the traditional Calc interpreter code path. (That also includes the so-called
// "software interpreter", but note that it definitely does not mean *exclusively* that.)
NativeCPU,
// OpenCLDevice means an OpenCL device as supplied by an OpenCL platform, which might well be
// implemented using code that runs on the CPU (and not a GPU). On Windows, OpenCL platforms
// typically provide two devices, one for the GPU and one for the CPU.
OpenCLDevice
};
......
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