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 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
|
// Copyright 2020-2023 Intel Corporation
// SPDX-License-Identifier: BSD-3-Clause
#if defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#else
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
#endif
#include "ispcrt.h"
// std
#include <exception>
#include <iostream>
#include <string>
// ispcrt
#include "detail/Exception.h"
#include "detail/Module.h"
#include "detail/ModuleOptions.h"
#include "detail/TaskQueue.h"
#ifdef ISPCRT_BUILD_CPU
#include "detail/cpu/CPUContext.h"
#include "detail/cpu/CPUDevice.h"
#endif
#ifdef ISPCRT_BUILD_GPU
#include "detail/gpu/GPUContext.h"
#include "detail/gpu/GPUDevice.h"
#endif
static void defaultErrorFcn(ISPCRTError e, const char *msg) {
std::cerr << "ISPCRT Error (" << e << "): " << msg << std::endl;
exit(-1);
}
static ISPCRTErrorFunc g_errorFcn = &defaultErrorFcn;
// Helper functions ///////////////////////////////////////////////////////////
static void handleError(ISPCRTError e, const char *msg) {
if (g_errorFcn)
g_errorFcn(e, msg);
}
template <typename OBJECT_T = ispcrt::RefCounted, typename HANDLE_T = ISPCRTGenericHandle>
static OBJECT_T &referenceFromHandle(HANDLE_T handle) {
return *((OBJECT_T *)handle);
}
#define ISPCRT_CATCH_BEGIN try {
#define ISPCRT_CATCH_END_NO_RETURN() \
} \
catch (const ispcrt::base::ispcrt_runtime_error &e) { \
handleError(e.e, e.what()); \
return; \
} \
catch (const std::logic_error &e) { \
handleError(ISPCRT_INVALID_OPERATION, e.what()); \
return; \
} \
catch (const std::exception &e) { \
handleError(ISPCRT_UNKNOWN_ERROR, e.what()); \
return; \
} \
catch (...) { \
handleError(ISPCRT_UNKNOWN_ERROR, "an unrecognized exception was caught"); \
return; \
}
#define ISPCRT_CATCH_END(a) \
} \
catch (const ispcrt::base::ispcrt_runtime_error &e) { \
handleError(e.e, e.what()); \
return a; \
} \
catch (const std::logic_error &e) { \
handleError(ISPCRT_INVALID_OPERATION, e.what()); \
return a; \
} \
catch (const std::exception &e) { \
handleError(ISPCRT_UNKNOWN_ERROR, e.what()); \
return a; \
} \
catch (...) { \
handleError(ISPCRT_UNKNOWN_ERROR, "an unrecognized exception was caught"); \
return a; \
}
// Define names of devices libraries.
#if defined(_WIN32) || defined(_WIN64)
#define ISPCRT_SO_LIB_PREFIX ""
#define ISPCRT_SO_LIB_SUFFIX "dll"
#elif defined(__APPLE__)
#define ISPCRT_SO_LIB_PREFIX "lib"
#define ISPCRT_SO_LIB_SUFFIX "dylib"
#else
#define ISPCRT_SO_LIB_PREFIX "lib"
#define ISPCRT_SO_LIB_SUFFIX "so"
#endif
#define ISPCRT_DEVICE_CPU_SOLIB_PREFIX ISPCRT_SO_LIB_PREFIX "ispcrt_device_cpu."
#define ISPCRT_DEVICE_GPU_SOLIB_PREFIX ISPCRT_SO_LIB_PREFIX "ispcrt_device_gpu."
#define ISPCRT_DEVICE_CPU_SOLIB_NAME ISPCRT_DEVICE_CPU_SOLIB_PREFIX ISPCRT_SO_LIB_SUFFIX
#define ISPCRT_DEVICE_GPU_SOLIB_NAME ISPCRT_DEVICE_GPU_SOLIB_PREFIX ISPCRT_SO_LIB_SUFFIX
#if defined(_WIN32) || defined(_WIN64)
#define ISPCRT_DEVICE_CPU_SOLIB_MAJOR_VERSION_NAME nullptr
#define ISPCRT_DEVICE_GPU_SOLIB_MAJOR_VERSION_NAME nullptr
#define ISPCRT_DEVICE_CPU_SOLIB_FULL_VERSION_NAME nullptr
#define ISPCRT_DEVICE_GPU_SOLIB_FULL_VERSION_NAME nullptr
#elif defined(__APPLE__)
#define ISPCRT_DEVICE_CPU_SOLIB_MAJOR_VERSION_NAME \
ISPCRT_DEVICE_CPU_SOLIB_PREFIX "." ISPCRT_VERSION_MAJOR "." ISPCRT_SO_LIB_SUFFIX
#define ISPCRT_DEVICE_GPU_SOLIB_MAJOR_VERSION_NAME \
ISPCRT_DEVICE_GPU_SOLIB_PREFIX "." ISPCRT_VERSION_MAJOR "." ISPCRT_SO_LIB_SUFFIX
#define ISPCRT_DEVICE_CPU_SOLIB_FULL_VERSION_NAME \
ISPCRT_DEVICE_CPU_SOLIB_PREFIX "." ISPCRT_VERSION_FULL "." ISPCRT_SO_LIB_SUFFIX
#define ISPCRT_DEVICE_GPU_SOLIB_FULL_VERSION_NAME \
ISPCRT_DEVICE_GPU_SOLIB_PREFIX "." ISPCRT_VERSION_FULL "." ISPCRT_SO_LIB_SUFFIX
#else
#define ISPCRT_DEVICE_CPU_SOLIB_MAJOR_VERSION_NAME ISPCRT_DEVICE_CPU_SOLIB_NAME "." ISPCRT_VERSION_MAJOR
#define ISPCRT_DEVICE_GPU_SOLIB_MAJOR_VERSION_NAME ISPCRT_DEVICE_GPU_SOLIB_NAME "." ISPCRT_VERSION_MAJOR
#define ISPCRT_DEVICE_CPU_SOLIB_FULL_VERSION_NAME ISPCRT_DEVICE_CPU_SOLIB_NAME "." ISPCRT_VERSION_FULL
#define ISPCRT_DEVICE_GPU_SOLIB_FULL_VERSION_NAME ISPCRT_DEVICE_GPU_SOLIB_NAME "." ISPCRT_VERSION_FULL
#endif
// OS agnostic function to dynamically load a shared library.
void *dyn_load_lib(const char *name, [[maybe_unused]] const char *name_major_version,
[[maybe_unused]] const char *name_full_version) {
#if defined(_WIN32) || defined(_WIN64)
// Removes CWD from the search path to reduce the risk of DLL injection.
SetDllDirectory("");
return LoadLibraryEx(name, NULL, 0);
#else
// Try to load a device library starting from the most specific name down to more general one.
void *handle = dlopen(name_full_version, RTLD_NOW | RTLD_LOCAL);
if (handle) {
return handle;
}
handle = dlopen(name_major_version, RTLD_NOW | RTLD_LOCAL);
if (handle) {
return handle;
}
// This is the most general name, e.g., libispcrt_device_cpu.so. Under some
// circumstances, it may points to older or newer version. This is probably
// not a big deal until incompatible changes are encountered between versions.
return dlopen(name, RTLD_NOW | RTLD_LOCAL);
#endif
}
// OS agnostic function to get an address of symbol from the previously loaded shared library.
void *dyn_load_sym(void *handle, const char *symbol) {
#if defined(_WIN32) || defined(_WIN64)
return (void *)GetProcAddress((HMODULE)handle, symbol);
#else
return dlsym(handle, symbol);
#endif
}
// CPU device API.
static ISPCRTTaskingLaunchFType ispc_launch_fptr = nullptr;
static ISPCRTTaskingAllocFType ispc_alloc_fptr = nullptr;
static ISPCRTTaskingSyncFType ispc_sync_fptr = nullptr;
// Applications can provide their own implementation of ISPCLaunch/ISPCAlloc/ISPCSync tasking API.
void ispcrtSetTaskingCallbacks(ISPCRTTaskingLaunchFType launch, ISPCRTTaskingAllocFType alloc,
ISPCRTTaskingSyncFType sync) {
ispc_launch_fptr = launch;
ispc_alloc_fptr = alloc;
ispc_sync_fptr = sync;
}
#ifndef ISPCRT_BUILD_STATIC
// During static linking this API is delivered by linking the real implementation.
// ispc expects these functions to have C linkage / not be mangled
// Stubs to load and call actual implementations (*_cpu) from detail/cpu/ispc_tasking.cpp.
extern "C" {
void ISPCLaunch(void **handlePtr, void *f, void *data, int countx, int county, int countz) {
if (ispc_launch_fptr) {
return ispc_launch_fptr(handlePtr, f, data, countx, county, countz);
}
// TODO: this code can be called directly from ISPC code. Not sure how to exit error safely.
fprintf(stderr, "Missing ISPCLaunch symbol");
abort();
}
void *ISPCAlloc(void **handlePtr, int64_t size, int32_t alignment) {
if (ispc_alloc_fptr) {
return ispc_alloc_fptr(handlePtr, size, alignment);
}
// TODO: this code can be called directly from ISPC code. Not sure how to exit error safely.
fprintf(stderr, "Missing ISPCAlloc symbol");
abort();
}
void ISPCSync(void *handle) {
if (ispc_sync_fptr) {
return ispc_sync_fptr(handle);
}
// TODO: this code can be called directly from ISPC code. Not sure how to exit error safely.
fprintf(stderr, "Missing ISPCSync symbol");
abort();
}
}
#endif
// Auxiliary function to load device CPU solib and initialize tasking API pointers if build with tasking support.
void *handleCPUDeviceLib() {
static void *handle = nullptr;
if (handle) {
return handle;
}
handle = dyn_load_lib(ISPCRT_DEVICE_CPU_SOLIB_NAME, ISPCRT_DEVICE_CPU_SOLIB_MAJOR_VERSION_NAME,
ISPCRT_DEVICE_CPU_SOLIB_FULL_VERSION_NAME);
if (!handle) {
throw std::runtime_error("Fail to load " ISPCRT_DEVICE_CPU_SOLIB_NAME " library");
}
#ifdef ISPCRT_BUILD_TASKING
// Pointers to ISPCLaunch/ISPCAlloc/ISPCSync tasking API may be already initialized by ispcSetTaskingCallbacks.
if (!ispc_launch_fptr) {
ispc_launch_fptr = (ISPCRTTaskingLaunchFType)dyn_load_sym(handle, "ISPCLaunch_cpu");
if (!ispc_launch_fptr) {
throw std::runtime_error("Missing ISPCLaunch_cpu symbol");
}
}
if (!ispc_alloc_fptr) {
ispc_alloc_fptr = (ISPCRTTaskingAllocFType)dyn_load_sym(handle, "ISPCAlloc_cpu");
if (!ispc_alloc_fptr) {
throw std::runtime_error("Missing ISPCAlloc_cpu symbol");
}
}
if (!ispc_sync_fptr) {
ispc_sync_fptr = (ISPCRTTaskingSyncFType)dyn_load_sym(handle, "ISPCSync_cpu");
if (!ispc_sync_fptr) {
throw std::runtime_error("Missing ISPCSync_cpu symbol");
}
}
#endif
return handle;
}
// Auxiliary function to load device GPU solib.
void *handleGPUDeviceLib() {
static void *handle = nullptr;
if (handle) {
return handle;
}
handle = dyn_load_lib(ISPCRT_DEVICE_GPU_SOLIB_NAME, ISPCRT_DEVICE_GPU_SOLIB_MAJOR_VERSION_NAME,
ISPCRT_DEVICE_GPU_SOLIB_FULL_VERSION_NAME);
if (!handle) {
throw std::runtime_error("Fail to load " ISPCRT_DEVICE_GPU_SOLIB_NAME " library");
}
return handle;
}
// Stubs around CPU device solibs API.
uint32_t cpuDeviceCount();
ISPCRTDeviceInfo cpuDeviceInfo(uint32_t idx);
ispcrt::base::Device *loadCPUDevice();
ispcrt::base::Context *loadCPUContext();
// Stubs around GPU device solibs API.
uint32_t gpuDeviceCount();
ISPCRTDeviceInfo gpuDeviceInfo(uint32_t idx);
ispcrt::base::Device *loadGPUDevice();
ispcrt::base::Device *loadGPUDevice(void *ctx, void *dev, uint32_t idx);
ispcrt::base::Context *loadGPUContext();
ispcrt::base::Context *loadGPUContext(void *ctx);
// Function pointer types declarations.
typedef uint32_t (*DeviceCountF)();
typedef ISPCRTDeviceInfo (*DeviceInfoF)(uint32_t);
typedef ispcrt::base::Device *(*LoadDeviceF)();
typedef ispcrt::base::Device *(*LoadDeviceCtxF)(void *, void *, uint32_t);
typedef ispcrt::base::Context *(*LoadContextF)();
typedef ispcrt::base::Context *(*LoadContextCtxF)(void *);
// CPU stubs
uint32_t cpuDeviceCount() {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_CPU
return ispcrt::cpu::deviceCount();
#else
throw std::runtime_error("CPU support not enabled");
#endif
#else
static DeviceCountF device_count = nullptr;
if (device_count) {
return device_count();
}
device_count = (DeviceCountF)dyn_load_sym(handleCPUDeviceLib(), "cpu_device_count");
if (!device_count) {
throw std::runtime_error("Missing cpu_device_count symbol");
}
return device_count();
#endif
}
ISPCRTDeviceInfo cpuDeviceInfo(uint32_t idx) {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_CPU
return ispcrt::cpu::deviceInfo(idx);
#else
throw std::runtime_error("CPU support not enabled");
#endif
#else
static DeviceInfoF device_info = nullptr;
if (device_info) {
return device_info(idx);
}
device_info = (DeviceInfoF)dyn_load_sym(handleCPUDeviceLib(), "cpu_device_info");
if (!device_info) {
throw std::runtime_error("Missing cpu_device_info symbol");
}
return device_info(idx);
#endif
}
ispcrt::base::Device *loadCPUDevice() {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_CPU
return new ispcrt::CPUDevice;
#else
throw std::runtime_error("CPU support not enabled");
#endif
#else
static LoadDeviceF load_device = nullptr;
if (load_device) {
return load_device();
}
load_device = (LoadDeviceF)dyn_load_sym(handleCPUDeviceLib(), "load_cpu_device");
if (!load_device) {
throw std::runtime_error("Missing load_cpu_device symbol");
}
return load_device();
#endif
}
ispcrt::base::Context *loadCPUContext() {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_CPU
return new ispcrt::CPUContext;
#else
throw std::runtime_error("CPU support not enabled");
#endif
#else
static LoadContextF load_context = nullptr;
if (load_context) {
return load_context();
}
load_context = (LoadContextF)dyn_load_sym(handleCPUDeviceLib(), "load_cpu_context");
if (!load_context) {
throw std::runtime_error("Missing load_cpu_context symbol");
}
return load_context();
#endif
}
// GPU stubs.
uint32_t gpuDeviceCount() {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_GPU
return ispcrt::gpu::deviceCount();
#else
throw std::runtime_error("GPU support not enabled");
#endif
#else
static DeviceCountF device_count = nullptr;
if (device_count) {
return device_count();
}
device_count = (DeviceCountF)dyn_load_sym(handleGPUDeviceLib(), "gpu_device_count");
if (!device_count) {
throw std::runtime_error("Missing gpu_device_count symbol");
}
return device_count();
#endif
}
ISPCRTDeviceInfo gpuDeviceInfo([[maybe_unused]] uint32_t idx) {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_GPU
return ispcrt::gpu::deviceInfo(idx);
#else
throw std::runtime_error("GPU support not enabled");
#endif
#else
static DeviceInfoF device_info = nullptr;
if (device_info) {
return device_info(idx);
}
device_info = (DeviceInfoF)dyn_load_sym(handleGPUDeviceLib(), "gpu_device_info");
if (!device_info) {
throw std::runtime_error("Missing gpu_device_info symbol");
}
return device_info(idx);
#endif
}
ispcrt::base::Device *loadGPUDevice() {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_GPU
return new ispcrt::GPUDevice;
#else
throw std::runtime_error("GPU support not enabled");
#endif
#else
static LoadDeviceF load_device = nullptr;
if (load_device) {
return load_device();
}
load_device = (LoadDeviceF)dyn_load_sym(handleGPUDeviceLib(), "load_gpu_device");
if (!load_device) {
throw std::runtime_error("Missing load_gpu_device symbol");
}
return load_device();
#endif
}
ispcrt::base::Device *loadGPUDevice([[maybe_unused]] void *ctx, [[maybe_unused]] void *dev,
[[maybe_unused]] uint32_t idx) {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_GPU
return new ispcrt::GPUDevice(ctx, dev, idx);
#else
throw std::runtime_error("GPU support not enabled");
#endif
#else
static LoadDeviceCtxF load_device = nullptr;
if (load_device) {
return load_device(ctx, dev, idx);
}
load_device = (LoadDeviceCtxF)dyn_load_sym(handleGPUDeviceLib(), "load_gpu_device_ctx");
if (!load_device) {
throw std::runtime_error("Missing load_gpu_device_ctx symbol");
}
return load_device(ctx, dev, idx);
#endif
}
ispcrt::base::Context *loadGPUContext() {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_GPU
return new ispcrt::GPUContext;
#else
throw std::runtime_error("GPU support not enabled");
#endif
#else
static LoadContextF load_context = nullptr;
if (load_context) {
return load_context();
}
load_context = (LoadContextF)dyn_load_sym(handleGPUDeviceLib(), "load_gpu_context");
if (!load_context) {
throw std::runtime_error("Missing load_gpu_context symbol");
}
return load_context();
#endif
}
ispcrt::base::Context *loadGPUContext([[maybe_unused]] void *ctx) {
#ifdef ISPCRT_BUILD_STATIC
#ifdef ISPCRT_BUILD_GPU
return new ispcrt::GPUContext(ctx);
#else
throw std::runtime_error("GPU support not enabled");
#endif
#else
static LoadContextCtxF load_context = nullptr;
if (load_context) {
return load_context(ctx);
}
load_context = (LoadContextCtxF)dyn_load_sym(handleGPUDeviceLib(), "load_gpu_context_ctx");
if (!load_context) {
throw std::runtime_error("Missing load_gpu_context_ctx symbol");
}
return load_context(ctx);
#endif
}
///////////////////////////////////////////////////////////////////////////////
////////////////////////// API DEFINITIONS ////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
extern "C" {
void ispcrtSetErrorFunc(ISPCRTErrorFunc fcn) { g_errorFcn = fcn; }
///////////////////////////////////////////////////////////////////////////////
// Object lifetime ////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
long long ispcrtUseCount(ISPCRTGenericHandle h) ISPCRT_CATCH_BEGIN {
auto &obj = referenceFromHandle(h);
return obj.useCount();
}
ISPCRT_CATCH_END(0)
void ispcrtRelease(ISPCRTGenericHandle h) ISPCRT_CATCH_BEGIN {
auto &obj = referenceFromHandle(h);
obj.refDec();
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtRetain(ISPCRTGenericHandle h) ISPCRT_CATCH_BEGIN {
auto &obj = referenceFromHandle(h);
obj.refInc();
}
ISPCRT_CATCH_END_NO_RETURN()
///////////////////////////////////////////////////////////////////////////////
// Device initialization //////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
static ISPCRTDevice getISPCRTDevice(ISPCRTDeviceType type, ISPCRTContext context,
[[maybe_unused]] ISPCRTGenericHandle d,
[[maybe_unused]] uint32_t deviceIdx) ISPCRT_CATCH_BEGIN {
ispcrt::base::Device *device = nullptr;
[[maybe_unused]] void *nativeContext = nullptr;
if (context) {
auto &c = referenceFromHandle<ispcrt::base::Context>(context);
nativeContext = c.contextNativeHandle();
}
switch (type) {
case ISPCRT_DEVICE_TYPE_AUTO: {
#if defined(ISPCRT_BUILD_GPU) && defined(ISPCRT_BUILD_CPU)
try {
device = loadGPUDevice();
} catch (...) {
if (device)
delete device;
device = loadCPUDevice();
}
#elif defined(ISPCRT_BUILD_CPU)
device = loadCPUDevice();
#elif defined(ISPCRT_BUILD_GPU)
device = loadGPUDevice();
#endif
break;
}
case ISPCRT_DEVICE_TYPE_GPU:
#ifdef ISPCRT_BUILD_GPU
device = loadGPUDevice(nativeContext, d, deviceIdx);
#else
throw std::runtime_error("GPU support not enabled");
#endif
break;
case ISPCRT_DEVICE_TYPE_CPU:
#ifdef ISPCRT_BUILD_CPU
device = loadCPUDevice();
#else
throw std::runtime_error("CPU support not enabled");
#endif
break;
default:
throw std::runtime_error("Unknown device type queried!");
}
return (ISPCRTDevice)device;
}
ISPCRT_CATCH_END(0)
ISPCRTDevice ispcrtGetDevice(ISPCRTDeviceType type, uint32_t deviceIdx) {
return getISPCRTDevice(type, nullptr, nullptr, deviceIdx);
}
ISPCRTDevice ispcrtGetDeviceFromContext(ISPCRTContext context, uint32_t deviceIdx) {
auto &c = referenceFromHandle<ispcrt::base::Context>(context);
return getISPCRTDevice(c.getDeviceType(), context, nullptr, deviceIdx);
}
ISPCRTDevice ispcrtGetDeviceFromNativeHandle(ISPCRTContext context, ISPCRTGenericHandle d) {
auto &c = referenceFromHandle<ispcrt::base::Context>(context);
return getISPCRTDevice(c.getDeviceType(), context, d, 0);
}
ISPCRTDeviceType ispcrtGetDeviceType(ISPCRTDevice d) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return device.getType();
}
ISPCRT_CATCH_END(ISPCRT_DEVICE_TYPE_AUTO)
uint32_t ispcrtGetDeviceCount(ISPCRTDeviceType type) ISPCRT_CATCH_BEGIN {
uint32_t devices = 0;
switch (type) {
case ISPCRT_DEVICE_TYPE_AUTO:
throw std::runtime_error("Device type must be specified");
break;
case ISPCRT_DEVICE_TYPE_GPU:
#ifdef ISPCRT_BUILD_GPU
devices = gpuDeviceCount();
#else
throw std::runtime_error("GPU support not enabled");
#endif
break;
case ISPCRT_DEVICE_TYPE_CPU:
#ifdef ISPCRT_BUILD_CPU
devices = cpuDeviceCount();
#else
throw std::runtime_error("CPU support not enabled");
#endif
break;
default:
throw std::runtime_error("Unknown device type queried!");
}
return devices;
}
ISPCRT_CATCH_END(0)
void ispcrtGetDeviceInfo(ISPCRTDeviceType type, uint32_t deviceIdx, ISPCRTDeviceInfo *info) ISPCRT_CATCH_BEGIN {
if (info == nullptr)
throw std::runtime_error("info cannot be null!");
switch (type) {
case ISPCRT_DEVICE_TYPE_AUTO:
throw std::runtime_error("Device type must be specified");
break;
case ISPCRT_DEVICE_TYPE_GPU:
#ifdef ISPCRT_BUILD_GPU
*info = gpuDeviceInfo(deviceIdx);
#else
throw std::runtime_error("GPU support not enabled");
#endif
break;
case ISPCRT_DEVICE_TYPE_CPU:
#ifdef ISPCRT_BUILD_CPU
*info = cpuDeviceInfo(deviceIdx);
#else
throw std::runtime_error("CPU support not enabled");
#endif
break;
default:
throw std::runtime_error("Unknown device type queried!");
}
}
ISPCRT_CATCH_END_NO_RETURN()
///////////////////////////////////////////////////////////////////////////////
// Context initialization //////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
static ISPCRTContext getISPCRTContext(ISPCRTDeviceType type,
[[maybe_unused]] ISPCRTGenericHandle c) ISPCRT_CATCH_BEGIN {
ispcrt::base::Context *context = nullptr;
switch (type) {
case ISPCRT_DEVICE_TYPE_AUTO: {
#if defined(ISPCRT_BUILD_GPU) && defined(ISPCRT_BUILD_CPU)
try {
context = loadGPUContext();
} catch (...) {
if (context)
delete context;
context = loadCPUContext();
}
#elif defined(ISPCRT_BUILD_CPU)
context = loadCPUContext();
#elif defined(ISPCRT_BUILD_GPU)
context = loadGPUContext();
#endif
break;
}
case ISPCRT_DEVICE_TYPE_GPU:
#ifdef ISPCRT_BUILD_GPU
context = loadGPUContext(c);
#else
throw std::runtime_error("GPU support not enabled");
#endif
break;
case ISPCRT_DEVICE_TYPE_CPU:
#ifdef ISPCRT_BUILD_CPU
context = loadCPUContext();
#else
throw std::runtime_error("CPU support not enabled");
#endif
break;
default:
throw std::runtime_error("Unknown device type queried!");
}
return (ISPCRTContext)context;
}
ISPCRT_CATCH_END(0)
ISPCRTContext ispcrtNewContext(ISPCRTDeviceType type) { return getISPCRTContext(type, nullptr); }
ISPCRTContext ispcrtGetContextFromNativeHandle(ISPCRTDeviceType type, ISPCRTGenericHandle c) {
return getISPCRTContext(type, c);
}
///////////////////////////////////////////////////////////////////////////////
// MemoryViews ////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ISPCRTMemoryView ispcrtNewMemoryView(ISPCRTDevice d, void *appMemory, size_t numBytes,
ISPCRTNewMemoryViewFlags *flags) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
if (flags->allocType != ISPCRT_ALLOC_TYPE_SHARED && flags->allocType != ISPCRT_ALLOC_TYPE_DEVICE) {
throw std::runtime_error("Unsupported memory allocation type requested!");
}
return (ISPCRTMemoryView)device.newMemoryView(appMemory, numBytes, flags);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTMemoryView ispcrtNewMemoryViewForContext(ISPCRTContext c, void *appMemory, size_t numBytes,
ISPCRTNewMemoryViewFlags *flags) ISPCRT_CATCH_BEGIN {
const auto &context = referenceFromHandle<ispcrt::base::Context>(c);
if (flags->allocType != ISPCRT_ALLOC_TYPE_SHARED) {
throw std::runtime_error("Only shared memory allocation is allowed for context!");
}
return (ISPCRTMemoryView)context.newMemoryView(appMemory, numBytes, flags);
}
ISPCRT_CATCH_END(nullptr)
void *ispcrtHostPtr(ISPCRTMemoryView h) ISPCRT_CATCH_BEGIN {
auto &mv = referenceFromHandle<ispcrt::base::MemoryView>(h);
return mv.hostPtr();
}
ISPCRT_CATCH_END(nullptr)
void *ispcrtDevicePtr(ISPCRTMemoryView h) ISPCRT_CATCH_BEGIN {
auto &mv = referenceFromHandle<ispcrt::base::MemoryView>(h);
return mv.devicePtr();
}
ISPCRT_CATCH_END(nullptr)
size_t ispcrtSize(ISPCRTMemoryView h) ISPCRT_CATCH_BEGIN {
auto &mv = referenceFromHandle<ispcrt::base::MemoryView>(h);
return mv.numBytes();
}
ISPCRT_CATCH_END(0)
ISPCRTAllocationType ispcrtGetMemoryViewAllocType(ISPCRTMemoryView h) ISPCRT_CATCH_BEGIN {
auto &mv = referenceFromHandle<ispcrt::base::MemoryView>(h);
return mv.isShared() ? ISPCRTAllocationType::ISPCRT_ALLOC_TYPE_SHARED
: ISPCRTAllocationType::ISPCRT_ALLOC_TYPE_DEVICE;
}
ISPCRT_CATCH_END(ISPCRTAllocationType::ISPCRT_ALLOC_TYPE_UNKNOWN)
ISPCRTAllocationType ispcrtGetMemoryAllocType(ISPCRTDevice d, void *memBuffer) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return device.getMemAllocType(memBuffer);
}
ISPCRT_CATCH_END(ISPCRTAllocationType::ISPCRT_ALLOC_TYPE_UNKNOWN)
void *ispcrtSharedPtr(ISPCRTMemoryView h) ISPCRT_CATCH_BEGIN {
auto &mv = referenceFromHandle<ispcrt::base::MemoryView>(h);
return mv.devicePtr();
}
ISPCRT_CATCH_END(nullptr)
///////////////////////////////////////////////////////////////////////////////
// Modules ////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ISPCRTModuleOptions ispcrtNewModuleOptionsEmpty(ISPCRTDevice d) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return (ISPCRTModuleOptions)device.newModuleOptions();
}
ISPCRT_CATCH_END(nullptr)
ISPCRTModuleOptions ispcrtNewModuleOptions(ISPCRTDevice d, ISPCRTModuleType moduleType, bool libraryCompilation,
uint32_t stackSize) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return (ISPCRTModuleOptions)device.newModuleOptions(moduleType, libraryCompilation, stackSize);
}
ISPCRT_CATCH_END(nullptr)
uint32_t ispcrtModuleOptionsGetStackSize(ISPCRTModuleOptions o) ISPCRT_CATCH_BEGIN {
const auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
return opts.stackSize();
}
ISPCRT_CATCH_END(0)
bool ispcrtModuleOptionsGetLibraryCompilation(ISPCRTModuleOptions o) ISPCRT_CATCH_BEGIN {
const auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
return opts.libraryCompilation();
}
ISPCRT_CATCH_END(false)
ISPCRTModuleType ispcrtModuleOptionsGetModuleType(ISPCRTModuleOptions o) ISPCRT_CATCH_BEGIN {
const auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
return opts.moduleType();
}
ISPCRT_CATCH_END(ISPCRTModuleType::ISPCRT_VECTOR_MODULE)
void ispcrtModuleOptionsSetStackSize(ISPCRTModuleOptions o, uint32_t size) ISPCRT_CATCH_BEGIN {
auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
opts.setStackSize(size);
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtModuleOptionsSetLibraryCompilation(ISPCRTModuleOptions o, bool isLibraryCompilation) ISPCRT_CATCH_BEGIN {
auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
opts.setLibraryCompilation(isLibraryCompilation);
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtModuleOptionsSetModuleType(ISPCRTModuleOptions o, ISPCRTModuleType type) ISPCRT_CATCH_BEGIN {
auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
opts.setModuleType(type);
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTModule ispcrtLoadModule(ISPCRTDevice d, const char *moduleFile) ISPCRT_CATCH_BEGIN {
ISPCRTModule module;
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
const auto &o = (ISPCRTModuleOptions)device.newModuleOptions();
module = ispcrtLoadModuleWithOptions(d, moduleFile, o);
ispcrtRelease(o);
return module;
}
ISPCRT_CATCH_END(nullptr)
ISPCRTModule ispcrtLoadModuleWithOptions(ISPCRTDevice d, const char *moduleFile,
ISPCRTModuleOptions o) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
const auto &opts = referenceFromHandle<ispcrt::base::ModuleOptions>(o);
return (ISPCRTModule)device.newModule(moduleFile, opts);
}
ISPCRT_CATCH_END(nullptr)
void ispcrtDynamicLinkModules(ISPCRTDevice d, ISPCRTModule *modules, const uint32_t numModules) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
device.dynamicLinkModules((ispcrt::base::Module **)modules, numModules);
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTModule ispcrtStaticLinkModules(ISPCRTDevice d, ISPCRTModule *modules,
const uint32_t numModules) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return (ISPCRTModule)device.staticLinkModules((ispcrt::base::Module **)modules, numModules);
}
ISPCRT_CATCH_END(nullptr)
void *ispcrtFunctionPtr(ISPCRTModule m, const char *name) ISPCRT_CATCH_BEGIN {
const auto &module = referenceFromHandle<ispcrt::base::Module>(m);
return module.functionPtr(name);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTKernel ispcrtNewKernel(ISPCRTDevice d, ISPCRTModule m, const char *name) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
const auto &module = referenceFromHandle<ispcrt::base::Module>(m);
return (ISPCRTKernel)device.newKernel(module, name);
}
ISPCRT_CATCH_END(nullptr)
///////////////////////////////////////////////////////////////////////////////
// Command lists //////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
void ispcrtCommandListBarrier(ISPCRTCommandList l) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
list.barrier();
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTFuture ispcrtCommandListCopyToDevice(ISPCRTCommandList l, ISPCRTMemoryView mv) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
auto &view = referenceFromHandle<ispcrt::base::MemoryView>(mv);
return (ISPCRTFuture)list.copyToDevice(view);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtCommandListCopyToHost(ISPCRTCommandList l, ISPCRTMemoryView mv) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
auto &view = referenceFromHandle<ispcrt::base::MemoryView>(mv);
return (ISPCRTFuture)list.copyToHost(view);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtCommandListCopyMemoryView(ISPCRTCommandList l, ISPCRTMemoryView mvDst, ISPCRTMemoryView mvSrc,
const size_t size) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
auto &viewDst = referenceFromHandle<ispcrt::base::MemoryView>(mvDst);
auto &viewSrc = referenceFromHandle<ispcrt::base::MemoryView>(mvSrc);
if (size > viewDst.numBytes()) {
throw std::runtime_error("Requested copy size is bigger than destination buffer size!");
}
if (size > viewSrc.numBytes()) {
throw std::runtime_error("Requested copy size is bigger than source buffer size!");
}
return (ISPCRTFuture)list.copyMemoryView(viewDst, viewSrc, size);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtCommandListLaunch1D(ISPCRTCommandList l, ISPCRTKernel k, ISPCRTMemoryView p,
size_t dim0) ISPCRT_CATCH_BEGIN {
return ispcrtCommandListLaunch3D(l, k, p, dim0, 1, 1);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtCommandListLaunch2D(ISPCRTCommandList l, ISPCRTKernel k, ISPCRTMemoryView p, size_t dim0,
size_t dim1) ISPCRT_CATCH_BEGIN {
return ispcrtCommandListLaunch3D(l, k, p, dim0, dim1, 1);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtCommandListLaunch3D(ISPCRTCommandList l, ISPCRTKernel k, ISPCRTMemoryView p, size_t dim0,
size_t dim1, size_t dim2) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
auto &kernel = referenceFromHandle<ispcrt::base::Kernel>(k);
ispcrt::base::MemoryView *params = nullptr;
if (p)
params = &referenceFromHandle<ispcrt::base::MemoryView>(p);
return (ISPCRTFuture)list.launch(kernel, params, dim0, dim1, dim2);
}
ISPCRT_CATCH_END(nullptr)
void ispcrtCommandListClose(ISPCRTCommandList l) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
list.close();
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTFence ispcrtCommandListSubmit(ISPCRTCommandList l) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
return (ISPCRTFence)list.submit();
}
ISPCRT_CATCH_END(nullptr)
void ispcrtCommandListReset(ISPCRTCommandList l) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
list.reset();
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtCommandListEnableTimestamps(ISPCRTCommandList l) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
return list.enableTimestamps();
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTGenericHandle ispcrtCommandListNativeHandle(ISPCRTCommandList l) ISPCRT_CATCH_BEGIN {
auto &list = referenceFromHandle<ispcrt::base::CommandList>(l);
return list.nativeHandle();
}
ISPCRT_CATCH_END(nullptr)
///////////////////////////////////////////////////////////////////////////////
// Command queues /////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ISPCRTCommandQueue ispcrtNewCommandQueue(ISPCRTDevice d, uint32_t ordinal) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return (ISPCRTCommandQueue)device.newCommandQueue(ordinal);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTCommandList ispcrtCommandQueueCreateCommandList(ISPCRTCommandQueue q) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::CommandQueue>(q);
return (ISPCRTCommandList)queue.createCommandList();
}
ISPCRT_CATCH_END(nullptr)
void ispcrtCommandQueueSync(ISPCRTCommandQueue q) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::CommandQueue>(q);
queue.sync();
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTGenericHandle ispcrtCommandQueueNativeHandle(ISPCRTCommandQueue q) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::CommandQueue>(q);
return queue.nativeHandle();
}
ISPCRT_CATCH_END(nullptr)
///////////////////////////////////////////////////////////////////////////////
// Task queues ////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ISPCRTTaskQueue ispcrtNewTaskQueue(ISPCRTDevice d) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return (ISPCRTTaskQueue)device.newTaskQueue();
}
ISPCRT_CATCH_END(nullptr)
void ispcrtDeviceBarrier(ISPCRTTaskQueue q) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
queue.barrier();
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtCopyToDevice(ISPCRTTaskQueue q, ISPCRTMemoryView mv) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
auto &view = referenceFromHandle<ispcrt::base::MemoryView>(mv);
queue.copyToDevice(view);
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtCopyToHost(ISPCRTTaskQueue q, ISPCRTMemoryView mv) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
auto &view = referenceFromHandle<ispcrt::base::MemoryView>(mv);
queue.copyToHost(view);
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtCopyMemoryView(ISPCRTTaskQueue q, ISPCRTMemoryView mvDst, ISPCRTMemoryView mvSrc,
const size_t size) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
auto &viewDst = referenceFromHandle<ispcrt::base::MemoryView>(mvDst);
auto &viewSrc = referenceFromHandle<ispcrt::base::MemoryView>(mvSrc);
if (size > viewDst.numBytes()) {
throw std::runtime_error("Requested copy size is bigger than destination buffer size!");
}
if (size > viewSrc.numBytes()) {
throw std::runtime_error("Requested copy size is bigger than source buffer size!");
}
queue.copyMemoryView(viewDst, viewSrc, size);
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTFuture ispcrtLaunch1D(ISPCRTTaskQueue q, ISPCRTKernel k, ISPCRTMemoryView p, size_t dim0) ISPCRT_CATCH_BEGIN {
return ispcrtLaunch3D(q, k, p, dim0, 1, 1);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtLaunch2D(ISPCRTTaskQueue q, ISPCRTKernel k, ISPCRTMemoryView p, size_t dim0,
size_t dim1) ISPCRT_CATCH_BEGIN {
return ispcrtLaunch3D(q, k, p, dim0, dim1, 1);
}
ISPCRT_CATCH_END(nullptr)
ISPCRTFuture ispcrtLaunch3D(ISPCRTTaskQueue q, ISPCRTKernel k, ISPCRTMemoryView p, size_t dim0, size_t dim1,
size_t dim2) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
auto &kernel = referenceFromHandle<ispcrt::base::Kernel>(k);
ispcrt::base::MemoryView *params = nullptr;
if (p)
params = &referenceFromHandle<ispcrt::base::MemoryView>(p);
return (ISPCRTFuture)queue.launch(kernel, params, dim0, dim1, dim2);
}
ISPCRT_CATCH_END(nullptr)
void ispcrtSync(ISPCRTTaskQueue q) ISPCRT_CATCH_BEGIN {
auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
queue.sync();
}
ISPCRT_CATCH_END_NO_RETURN()
void ispcrtFenceSync(ISPCRTFence f) ISPCRT_CATCH_BEGIN {
auto &fence = referenceFromHandle<ispcrt::base::Fence>(f);
fence.sync();
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTFenceStatus ispcrtFenceStatus(ISPCRTFence f) ISPCRT_CATCH_BEGIN {
auto &fence = referenceFromHandle<ispcrt::base::Fence>(f);
return fence.status();
}
ISPCRT_CATCH_END(ISPCRT_FENCE_SIGNALED)
void ispcrtFenceReset(ISPCRTFence f) ISPCRT_CATCH_BEGIN {
auto &fence = referenceFromHandle<ispcrt::base::Fence>(f);
fence.reset();
}
ISPCRT_CATCH_END_NO_RETURN()
ISPCRTGenericHandle ispcrtFenceNativeHandle(ISPCRTFence f) ISPCRT_CATCH_BEGIN {
auto &fence = referenceFromHandle<ispcrt::base::Fence>(f);
return fence.nativeHandle();
}
ISPCRT_CATCH_END(nullptr)
uint64_t ispcrtFutureGetTimeNs(ISPCRTFuture f) ISPCRT_CATCH_BEGIN {
if (!f)
return -1;
auto &future = referenceFromHandle<ispcrt::base::Future>(f);
if (!future.valid())
return -1;
return future.time();
}
ISPCRT_CATCH_END(-1)
bool ispcrtFutureIsValid(ISPCRTFuture f) ISPCRT_CATCH_BEGIN {
auto &future = referenceFromHandle<ispcrt::base::Future>(f);
return future.valid();
}
ISPCRT_CATCH_END(false)
///////////////////////////////////////////////////////////////////////////////
// Native handles//////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
ISPCRTGenericHandle ispcrtPlatformNativeHandle(ISPCRTDevice d) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return device.platformNativeHandle();
}
ISPCRT_CATCH_END(nullptr)
ISPCRTGenericHandle ispcrtDeviceNativeHandle(ISPCRTDevice d) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return device.deviceNativeHandle();
}
ISPCRT_CATCH_END(nullptr)
ISPCRTGenericHandle ispcrtDeviceContextNativeHandle(ISPCRTDevice d) ISPCRT_CATCH_BEGIN {
const auto &device = referenceFromHandle<ispcrt::base::Device>(d);
return device.contextNativeHandle();
}
ISPCRT_CATCH_END(nullptr)
ISPCRTGenericHandle ispcrtContextNativeHandle(ISPCRTContext c) ISPCRT_CATCH_BEGIN {
const auto &context = referenceFromHandle<ispcrt::base::Context>(c);
return context.contextNativeHandle();
}
ISPCRT_CATCH_END(nullptr)
ISPCRTGenericHandle ispcrtTaskQueueNativeHandle(ISPCRTTaskQueue q) ISPCRT_CATCH_BEGIN {
const auto &queue = referenceFromHandle<ispcrt::base::TaskQueue>(q);
return queue.taskQueueNativeHandle();
}
ISPCRT_CATCH_END(nullptr)
} // extern "C"
|