1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
|
/*=========================================================================
*
* Copyright UMC Utrecht and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itkOpenCLDevice.h"
#include "itkOpenCLExtension.h"
#include "itkOpenCLStringUtils.h"
#include <vector>
#include <set>
namespace itk
{
OpenCLVersion
OpenCLDevice::GetOpenCLVersion() const
{
if (!this->m_Version)
{
this->m_Version = opencl_version_flags(opencl_get_device_info_string(this->m_Id, CL_DEVICE_VERSION));
}
return OpenCLVersion(this->m_Version);
}
//------------------------------------------------------------------------------
std::string
OpenCLDevice::GetVersion() const
{
return opencl_get_device_info_string(this->m_Id, CL_DEVICE_VERSION);
}
//------------------------------------------------------------------------------
OpenCLDevice::DeviceType
OpenCLDevice::GetDeviceType() const
{
cl_device_type type;
if (this->IsNull() || clGetDeviceInfo(this->m_Id, CL_DEVICE_TYPE, sizeof(type), &type, 0) != CL_SUCCESS)
{
return OpenCLDevice::DeviceType(0);
}
else
{
return OpenCLDevice::DeviceType(type);
}
}
//------------------------------------------------------------------------------
OpenCLPlatform
OpenCLDevice::GetPlatform() const
{
cl_platform_id platform;
if (this->IsNull() || clGetDeviceInfo(this->m_Id, CL_DEVICE_PLATFORM, sizeof(platform), &platform, 0) != CL_SUCCESS)
{
return OpenCLPlatform();
}
else
{
return OpenCLPlatform(platform);
}
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetVendorId() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_VENDOR_ID);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::IsAvailable() const
{
return opencl_get_device_info_bool(this->m_Id, CL_DEVICE_AVAILABLE);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasCompiler() const
{
return opencl_get_device_info_bool(this->m_Id, CL_DEVICE_COMPILER_AVAILABLE);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasNativeKernels() const
{
cl_device_exec_capabilities caps;
if (this->IsNull() ||
clGetDeviceInfo(this->m_Id, CL_DEVICE_EXECUTION_CAPABILITIES, sizeof(caps), &caps, 0) != CL_SUCCESS)
{
return false;
}
else
{
return (caps & CL_EXEC_NATIVE_KERNEL) != 0;
}
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasOutOfOrderExecution() const
{
cl_command_queue_properties props;
if (this->IsNull() || clGetDeviceInfo(this->m_Id, CL_DEVICE_QUEUE_PROPERTIES, sizeof(props), &props, 0) != CL_SUCCESS)
{
return false;
}
else
{
return (props & CL_QUEUE_OUT_OF_ORDER_EXEC_MODE_ENABLE) != 0;
}
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasDouble() const
{
return this->HasExtension("cl_khr_fp64");
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasHalfFloat() const
{
return this->HasExtension("cl_khr_fp16");
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasErrorCorrectingMemory() const
{
return opencl_get_device_info_bool(this->m_Id, CL_DEVICE_ERROR_CORRECTION_SUPPORT);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasUnifiedMemory() const
{
return opencl_get_device_info_bool(this->m_Id, CL_DEVICE_HOST_UNIFIED_MEMORY);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetComputeUnits() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MAX_COMPUTE_UNITS);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetClockFrequency() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MAX_CLOCK_FREQUENCY);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetAddressBits() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_ADDRESS_BITS);
}
//------------------------------------------------------------------------------
OpenCLDevice::Endian
OpenCLDevice::GetByteOrder() const
{
if (opencl_get_device_info_bool(this->m_Id, CL_DEVICE_ENDIAN_LITTLE))
{
return OpenCLDevice::LittleEndian;
}
else
{
return OpenCLDevice::BigEndian;
}
}
//------------------------------------------------------------------------------
OpenCLSize
OpenCLDevice::GetMaximumWorkItemSize() const
{
std::size_t dims = 0;
if (this->IsNull() ||
clGetDeviceInfo(this->m_Id, CL_DEVICE_MAX_WORK_ITEM_DIMENSIONS, sizeof(dims), &dims, 0) != CL_SUCCESS || !dims)
{
return OpenCLSize(1, 1, 1);
}
std::vector<std::size_t> buffer(dims);
clGetDeviceInfo(this->m_Id, CL_DEVICE_MAX_WORK_ITEM_SIZES, sizeof(std::size_t) * dims, &buffer[0], 0);
if (dims == 1)
{
return OpenCLSize(buffer[0]);
}
else if (dims == 2)
{
return OpenCLSize(buffer[0], buffer[1]);
}
else
{
return OpenCLSize(buffer[0], buffer[1], buffer[2]);
}
}
//------------------------------------------------------------------------------
size_t
OpenCLDevice::GetMaximumWorkItemsPerGroup() const
{
return opencl_get_device_info_size(this->m_Id, CL_DEVICE_MAX_WORK_GROUP_SIZE);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasImage2D() const
{
return opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasImage3D() const
{
if (!opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT))
{
return false;
}
return opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE3D_MAX_WIDTH) != 0 ||
opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE3D_MAX_HEIGHT) != 0 ||
opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE3D_MAX_DEPTH) != 0;
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasWritableImage3D() const
{
return this->HasExtension("cl_khr_3d_image_writes");
}
//------------------------------------------------------------------------------
OpenCLSize
OpenCLDevice::GetMaximumImage2DSize() const
{
if (!opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT))
{
return OpenCLSize();
}
return OpenCLSize(opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE2D_MAX_WIDTH),
opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE2D_MAX_HEIGHT));
}
//------------------------------------------------------------------------------
OpenCLSize
OpenCLDevice::GetMaximumImage3DSize() const
{
if (!opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT))
{
return OpenCLSize(0, 0, 0);
}
return OpenCLSize(opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE3D_MAX_WIDTH),
opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE3D_MAX_HEIGHT),
opencl_get_device_info_size(this->m_Id, CL_DEVICE_IMAGE3D_MAX_DEPTH));
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetMaximumSamplers() const
{
if (!opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT))
{
return 0;
}
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MAX_SAMPLERS);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetMaximumReadImages() const
{
if (!opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT))
{
return 0;
}
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MAX_READ_IMAGE_ARGS);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetMaximumWriteImages() const
{
if (!opencl_get_device_info_bool(this->m_Id, CL_DEVICE_IMAGE_SUPPORT))
{
return 0;
}
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MAX_WRITE_IMAGE_ARGS);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredCharVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_CHAR);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredShortVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_SHORT);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredIntVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_INT);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredLongVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_LONG);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredFloatVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_FLOAT);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredDoubleVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetPreferredHalfFloatVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_PREFERRED_VECTOR_WIDTH_HALF);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeCharVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_CHAR);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeShortVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_SHORT);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeIntVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_INT);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeLongVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_LONG);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeFloatVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_FLOAT);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeDoubleVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetNativeHalfFloatVectorSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_NATIVE_VECTOR_WIDTH_HALF);
}
//------------------------------------------------------------------------------
OpenCLDevice::FloatCapability
OpenCLDevice::GetFloatCapabilities() const
{
cl_device_fp_config config;
if (this->IsNull() ||
clGetDeviceInfo(this->m_Id, CL_DEVICE_SINGLE_FP_CONFIG, sizeof(config), &config, 0) != CL_SUCCESS)
{
return NotSupported;
}
else
{
return OpenCLDevice::FloatCapability(config);
}
}
//------------------------------------------------------------------------------
OpenCLDevice::FloatCapability
OpenCLDevice::GetDoubleCapabilities() const
{
cl_device_fp_config config;
if (this->IsNull() ||
clGetDeviceInfo(this->m_Id, CL_DEVICE_DOUBLE_FP_CONFIG, sizeof(config), &config, 0) != CL_SUCCESS)
{
return NotSupported;
}
else
{
return OpenCLDevice::FloatCapability(config);
}
}
//------------------------------------------------------------------------------
OpenCLDevice::FloatCapability
OpenCLDevice::GetHalfFloatCapabilities() const
{
cl_device_fp_config config;
if (this->IsNull() || clGetDeviceInfo(this->m_Id, CL_DEVICE_HALF_FP_CONFIG, sizeof(config), &config, 0) != CL_SUCCESS)
{
return NotSupported;
}
else
{
return OpenCLDevice::FloatCapability(config);
}
}
//------------------------------------------------------------------------------
std::size_t
OpenCLDevice::GetProfilingTimerResolution() const
{
return opencl_get_device_info_size(this->m_Id, CL_DEVICE_PROFILING_TIMER_RESOLUTION);
}
//------------------------------------------------------------------------------
unsigned long
OpenCLDevice::GetMaximumAllocationSize() const
{
return opencl_get_device_info_ulong(this->m_Id, CL_DEVICE_MAX_MEM_ALLOC_SIZE);
}
//------------------------------------------------------------------------------
unsigned long
OpenCLDevice::GetGlobalMemorySize() const
{
return opencl_get_device_info_ulong(this->m_Id, CL_DEVICE_GLOBAL_MEM_SIZE);
}
//------------------------------------------------------------------------------
OpenCLDevice::CacheType
OpenCLDevice::GetGlobalMemoryCacheType() const
{
cl_device_mem_cache_type type;
if (this->IsNull() ||
clGetDeviceInfo(this->m_Id, CL_DEVICE_GLOBAL_MEM_CACHE_TYPE, sizeof(type), &type, 0) != CL_SUCCESS)
{
return NoCache;
}
else
{
return OpenCLDevice::CacheType(type);
}
}
//------------------------------------------------------------------------------
unsigned long
OpenCLDevice::GetGlobalMemoryCacheSize() const
{
return opencl_get_device_info_ulong(this->m_Id, CL_DEVICE_GLOBAL_MEM_CACHE_SIZE);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetGlobalMemoryCacheLineSize() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_GLOBAL_MEM_CACHELINE_SIZE);
}
//------------------------------------------------------------------------------
unsigned long
OpenCLDevice::GetLocalMemorySize() const
{
return opencl_get_device_info_ulong(this->m_Id, CL_DEVICE_LOCAL_MEM_SIZE);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::IsLocalMemorySeparate() const
{
cl_device_local_mem_type type;
if (this->IsNull() || clGetDeviceInfo(this->m_Id, CL_DEVICE_LOCAL_MEM_TYPE, sizeof(type), &type, 0) != CL_SUCCESS)
{
return false;
}
else
{
return type == CL_LOCAL;
}
}
//------------------------------------------------------------------------------
unsigned long
OpenCLDevice::GetMaximumConstantBufferSize() const
{
return opencl_get_device_info_ulong(this->m_Id, CL_DEVICE_MAX_CONSTANT_BUFFER_SIZE);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetMaximumConstantArguments() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MAX_CONSTANT_ARGS);
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetDefaultAlignment() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MEM_BASE_ADDR_ALIGN) / 8;
}
//------------------------------------------------------------------------------
unsigned int
OpenCLDevice::GetMinimumAlignment() const
{
return opencl_get_device_info_uint(this->m_Id, CL_DEVICE_MIN_DATA_TYPE_ALIGN_SIZE);
}
//------------------------------------------------------------------------------
std::size_t
OpenCLDevice::GetMaximumParameterBytes() const
{
return opencl_get_device_info_size(this->m_Id, CL_DEVICE_MAX_PARAMETER_SIZE);
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::IsFullProfile() const
{
return opencl_get_device_info_is_string(this->m_Id, CL_DEVICE_PROFILE, "FULL_PROFILE");
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::IsEmbeddedProfile() const
{
return opencl_get_device_info_is_string(this->m_Id, CL_DEVICE_PROFILE, "EMBEDDED_PROFILE");
}
//------------------------------------------------------------------------------
std::string
OpenCLDevice::GetProfile() const
{
return opencl_get_device_info_string(this->m_Id, CL_DEVICE_PROFILE);
}
//------------------------------------------------------------------------------
std::string
OpenCLDevice::GetDriverVersion() const
{
return opencl_get_device_info_string(this->m_Id, CL_DRIVER_VERSION);
}
//------------------------------------------------------------------------------
std::string
OpenCLDevice::GetName() const
{
return opencl_get_device_info_string(this->m_Id, CL_DEVICE_NAME);
}
//------------------------------------------------------------------------------
std::string
OpenCLDevice::GetVendor() const
{
return opencl_get_device_info_string(this->m_Id, CL_DEVICE_VENDOR);
}
//------------------------------------------------------------------------------
std::list<std::string>
OpenCLDevice::GetExtensions() const
{
if (this->IsNull())
{
return std::list<std::string>();
}
const std::string extensions = opencl_simplified(opencl_get_device_info_string(this->m_Id, CL_DEVICE_EXTENSIONS));
if (!extensions.empty())
{
return opencl_split_string(extensions, ' ');
}
else
{
return std::list<std::string>();
}
}
//------------------------------------------------------------------------------
std::string
OpenCLDevice::GetLanguageVersion() const
{
std::string vers = opencl_get_device_info_string(this->m_Id, CL_DEVICE_OPENCL_C_VERSION);
if (vers.empty() && !(this->GetOpenCLVersion() & VERSION_1_1))
{
vers = "OpenCL 1.0";
}
return vers;
}
//------------------------------------------------------------------------------
bool
OpenCLDevice::HasExtension(const std::string & name) const
{
std::size_t size;
if (this->IsNull() || clGetDeviceInfo(this->m_Id, CL_DEVICE_EXTENSIONS, 0, 0, &size) != CL_SUCCESS)
{
return false;
}
std::string buffer(size, '\0');
clGetDeviceInfo(this->m_Id, CL_DEVICE_EXTENSIONS, size, &buffer[0], &size);
return opencl_has_extension(buffer, name);
}
//------------------------------------------------------------------------------
std::list<OpenCLDevice>
OpenCLDevice::GetAllDevices()
{
const std::list<itk::OpenCLPlatform> platforms = OpenCLPlatform::GetAllPlatforms();
std::list<OpenCLDevice> devices;
for (std::list<itk::OpenCLPlatform>::const_iterator platform = platforms.begin(); platform != platforms.end();
++platform)
{
cl_uint size;
if (clGetDeviceIDs(platform->GetPlatformId(), CL_DEVICE_TYPE_ALL, 0, 0, &size) != CL_SUCCESS)
{
continue;
}
std::vector<cl_device_id> buffer(size);
clGetDeviceIDs(platform->GetPlatformId(), CL_DEVICE_TYPE_ALL, size, &buffer[0], &size);
for (std::vector<cl_device_id>::iterator device = buffer.begin(); device != buffer.end(); ++device)
{
devices.push_back(OpenCLDevice(*device));
}
}
return devices;
}
//------------------------------------------------------------------------------
std::list<OpenCLDevice>
OpenCLDevice::GetDevices(const OpenCLDevice::DeviceType types, const OpenCLPlatform & platform)
{
std::list<OpenCLDevice> devices;
std::list<OpenCLPlatform> platforms;
if (platform.IsNull())
{
platforms = OpenCLPlatform::GetAllPlatforms();
}
else
{
platforms.push_back(platform);
}
for (std::list<itk::OpenCLPlatform>::iterator platform = platforms.begin(); platform != platforms.end(); ++platform)
{
cl_uint size;
if (clGetDeviceIDs(platform->GetPlatformId(), cl_device_type(types), 0, 0, &size) != CL_SUCCESS)
{
continue;
}
if (!size)
{
continue;
}
std::vector<cl_device_id> buffer(size);
clGetDeviceIDs(platform->GetPlatformId(), cl_device_type(types), size, &buffer[0], &size);
for (std::vector<cl_device_id>::iterator device = buffer.begin(); device != buffer.end(); ++device)
{
devices.push_back(OpenCLDevice(*device));
}
break;
}
return devices;
}
//------------------------------------------------------------------------------
std::list<OpenCLDevice>
OpenCLDevice::GetDevices(const OpenCLDevice::DeviceType type, const OpenCLPlatform::VendorType vendor)
{
const OpenCLPlatform platform = OpenCLPlatform::GetPlatform(vendor);
if (platform.IsNull())
{
return std::list<OpenCLDevice>();
}
else
{
const std::list<itk::OpenCLDevice> allDevices = itk::OpenCLDevice::GetDevices(type, platform);
std::list<OpenCLDevice> devices;
for (std::list<itk::OpenCLDevice>::const_iterator dev = allDevices.begin(); dev != allDevices.end(); ++dev)
{
if ((dev->GetDeviceType() & type) != 0)
{
devices.push_back(*dev);
}
}
return devices;
}
}
//------------------------------------------------------------------------------
OpenCLDevice
OpenCLDevice::GetMaximumFlopsDevice(const std::list<OpenCLDevice> & devices, const OpenCLDevice::DeviceType type)
{
if (devices.empty())
{
return OpenCLDevice();
}
// Find the device that has maximum Flops
int maxFlops = 0;
cl_device_id id = 0;
for (std::list<OpenCLDevice>::const_iterator device = devices.begin(); device != devices.end(); ++device)
{
int deviceFlops = device->GetComputeUnits() * device->GetClockFrequency();
if (deviceFlops > maxFlops && (device->GetDeviceType() == type))
{
maxFlops = deviceFlops;
id = device->GetDeviceId();
}
}
return OpenCLDevice(id);
}
//------------------------------------------------------------------------------
OpenCLDevice
OpenCLDevice::GetMaximumFlopsDevice(const OpenCLDevice::DeviceType type)
{
const std::list<OpenCLDevice> devices = itk::OpenCLDevice::GetAllDevices();
return GetMaximumFlopsDevice(devices, type);
}
//------------------------------------------------------------------------------
OpenCLDevice
OpenCLDevice::GetMaximumFlopsDeviceByVendor(const OpenCLDevice::DeviceType type,
const OpenCLPlatform::VendorType vendor)
{
const std::list<OpenCLDevice> devices = itk::OpenCLDevice::GetDevices(type, vendor);
return GetMaximumFlopsDevice(devices, type);
}
//------------------------------------------------------------------------------
OpenCLDevice
OpenCLDevice::GetMaximumFlopsDeviceByPlatform(const OpenCLDevice::DeviceType types, const OpenCLPlatform & platform)
{
const std::list<OpenCLDevice> devices = itk::OpenCLDevice::GetDevices(types, platform);
return GetMaximumFlopsDevice(devices, types);
}
//------------------------------------------------------------------------------
std::list<OpenCLDevice>
OpenCLDevice::GetMaximumFlopsDevices(const OpenCLDevice::DeviceType type, const OpenCLPlatform & platform)
{
const std::list<OpenCLDevice> allDevices = itk::OpenCLDevice::GetDevices(type, platform);
if (allDevices.empty())
{
return std::list<OpenCLDevice>();
}
// Find the device that has maximum Flops
using DeviceType = std::pair<std::size_t, cl_device_id>;
using MaximumFlopsDevicesType = std::set<DeviceType>;
MaximumFlopsDevicesType maximumFlopsDevices;
for (std::list<OpenCLDevice>::const_iterator device = allDevices.begin(); device != allDevices.end(); ++device)
{
int deviceFlops = device->GetComputeUnits() * device->GetClockFrequency();
DeviceType deviceWithFlops(deviceFlops, device->GetDeviceId());
maximumFlopsDevices.insert(deviceWithFlops);
}
// Combine result
std::list<OpenCLDevice> devices;
for (MaximumFlopsDevicesType::const_reverse_iterator rit = maximumFlopsDevices.rbegin();
rit != maximumFlopsDevices.rend();
++rit)
{
OpenCLDevice device(rit->second);
devices.push_back(device);
}
return devices;
}
//------------------------------------------------------------------------------
//! Operator ==
bool
operator==(const OpenCLDevice & lhs, const OpenCLDevice & rhs)
{
if (&rhs == &lhs)
{
return true;
}
return lhs.GetDeviceId() == rhs.GetDeviceId();
}
//------------------------------------------------------------------------------
//! Operator !=
bool
operator!=(const OpenCLDevice & lhs, const OpenCLDevice & rhs)
{
return !(lhs == rhs);
}
} // namespace itk
|