28const char *kernel_type_as_string(MetalPipelineType pso_type)
33 case PSO_SPECIALIZED_INTERSECT:
34 return "PSO_SPECIALIZED_INTERSECT";
35 case PSO_SPECIALIZED_SHADE:
36 return "PSO_SPECIALIZED_SHADE";
44 ShaderCache(id<MTLDevice> _mtlDevice) : mtlDevice(_mtlDevice)
51 switch (MetalInfo::get_apple_gpu_architecture(mtlDevice)) {
56 occupancy_tuning[
i] = {64, 64};
103 MetalKernelPipeline *get_best_pipeline(
DeviceKernel kernel,
const MetalDevice *device);
107 void load_kernel(
DeviceKernel kernel, MetalDevice *device, MetalPipelineType pso_type);
110 const MetalDevice *device,
111 MetalPipelineType pso_type);
115 friend ShaderCache *get_shader_cache(id<MTLDevice> mtlDevice);
117 void compile_thread_func();
119 using PipelineCollection = std::vector<unique_ptr<MetalKernelPipeline>>;
121 struct OccupancyTuningParameters {
122 int threads_per_threadgroup = 0;
123 int num_threads_per_block = 0;
129 id<MTLDevice> mtlDevice;
132 std::condition_variable cond_var;
133 std::deque<unique_ptr<MetalKernelPipeline>> request_queue;
134 std::vector<std::thread> compile_threads;
135 std::atomic_int incomplete_requests = 0;
136 std::atomic_int incomplete_specialization_requests = 0;
139bool ShaderCache::running =
true;
141const int MAX_POSSIBLE_GPUS_ON_SYSTEM = 8;
143int g_shaderCacheCount = 0;
144DeviceShaderCache g_shaderCache[MAX_POSSIBLE_GPUS_ON_SYSTEM];
147static std::atomic_int g_next_pipeline_id = 0;
149ShaderCache *get_shader_cache(id<MTLDevice> mtlDevice)
151 for (
int i = 0;
i < g_shaderCacheCount;
i++) {
152 if (g_shaderCache[
i].first == mtlDevice) {
153 return g_shaderCache[
i].second.get();
158 g_shaderCacheCountMutex.lock();
159 int index = g_shaderCacheCount++;
160 g_shaderCacheCountMutex.unlock();
162 assert(index < MAX_POSSIBLE_GPUS_ON_SYSTEM);
163 g_shaderCache[index].first = mtlDevice;
164 g_shaderCache[index].second = make_unique<ShaderCache>(mtlDevice);
165 return g_shaderCache[index].second.get();
168ShaderCache::~ShaderCache()
171 cond_var.notify_all();
173 metal_printf(
"Waiting for ShaderCache threads... (incomplete_requests = %d)\n",
174 int(incomplete_requests));
175 for (
auto &
thread : compile_threads) {
178 metal_printf(
"ShaderCache shut down.\n");
181void ShaderCache::wait_for_all()
183 while (incomplete_requests > 0) {
184 std::this_thread::sleep_for(std::chrono::milliseconds(100));
188void ShaderCache::compile_thread_func()
196 cond_var.wait(
lock, [&] {
return !running || !request_queue.empty(); });
197 if (!running || request_queue.empty()) {
201 pipeline = std::move(request_queue.front());
202 request_queue.pop_front();
207 MetalPipelineType pso_type = pipeline->pso_type;
209 if (MetalDevice::is_device_cancelled(pipeline->originating_device_id)) {
211 metal_printf(
"Cancelling compilation of %s (%s)\n",
213 kernel_type_as_string(pso_type));
220 auto &collection = pipelines[device_kernel];
223 int max_entries_of_same_pso_type = 3;
224 for (
int i = (
int)collection.size() - 1;
i >= 0;
i--) {
225 if (collection[
i]->pso_type == pso_type) {
226 max_entries_of_same_pso_type -= 1;
227 if (max_entries_of_same_pso_type == 0) {
228 metal_printf(
"Purging oldest %s:%s kernel from ShaderCache\n",
229 kernel_type_as_string(pso_type),
231 collection.erase(collection.begin() +
i);
236 collection.push_back(std::move(pipeline));
238 incomplete_requests--;
239 if (pso_type != PSO_GENERIC) {
240 incomplete_specialization_requests--;
245bool ShaderCache::should_load_kernel(
DeviceKernel device_kernel,
246 const MetalDevice *device,
247 MetalPipelineType pso_type)
272 if (pso_type != PSO_GENERIC) {
282 bool is_shade_pso = (pso_type == PSO_SPECIALIZED_SHADE);
283 if (is_shade_pso != is_shade_kernel) {
291 for (
auto &pipeline : pipelines[device_kernel]) {
292 if (pipeline->kernels_md5 == device->kernels_md5[pso_type]) {
301void ShaderCache::load_kernel(
DeviceKernel device_kernel,
303 MetalPipelineType pso_type)
308 if (compile_threads.empty()) {
311 int max_mtlcompiler_threads = 2;
313# if defined(MAC_OS_VERSION_13_3)
314 if (@available(macOS 13.3, *)) {
316 max_mtlcompiler_threads =
max(2,
317 int([mtlDevice maximumConcurrentCompilationTaskCount]) - 1);
321 metal_printf(
"Spawning %d Cycles kernel compilation threads\n", max_mtlcompiler_threads);
322 for (
int i = 0;
i < max_mtlcompiler_threads;
i++) {
323 compile_threads.emplace_back([
this] { this->compile_thread_func(); });
328 if (!should_load_kernel(device_kernel, device, pso_type)) {
332 incomplete_requests++;
333 if (pso_type != PSO_GENERIC) {
334 incomplete_specialization_requests++;
341 pipeline->pipeline_id = g_next_pipeline_id.fetch_add(1);
342 pipeline->originating_device_id = device->device_id;
343 pipeline->kernel_data_ = device->launch_params.data;
344 pipeline->pso_type = pso_type;
345 pipeline->mtlDevice = mtlDevice;
346 pipeline->kernels_md5 = device->kernels_md5[pso_type];
347 pipeline->mtlLibrary = device->mtlLibrary[pso_type];
348 pipeline->device_kernel = device_kernel;
349 pipeline->threads_per_threadgroup = device->max_threads_per_threadgroup;
351 if (occupancy_tuning[device_kernel].threads_per_threadgroup) {
352 pipeline->threads_per_threadgroup = occupancy_tuning[device_kernel].threads_per_threadgroup;
353 pipeline->num_threads_per_block = occupancy_tuning[device_kernel].num_threads_per_block;
357 pipeline->use_metalrt = device->use_metalrt;
358 pipeline->kernel_features = device->kernel_features;
362 request_queue.push_back(std::move(pipeline));
364 cond_var.notify_one();
367MetalKernelPipeline *ShaderCache::get_best_pipeline(
DeviceKernel kernel,
const MetalDevice *device)
369 while (running && !device->has_error) {
371 MetalKernelPipeline *best_match =
nullptr;
374 for (
auto &candidate : pipelines[kernel]) {
375 if (candidate->loaded &&
376 candidate->kernels_md5 == device->kernels_md5[candidate->pso_type])
379 if (!best_match || candidate->pso_type > best_match->pso_type) {
380 best_match = candidate.get();
387 if (best_match->usage_count == 0 && best_match->pso_type != PSO_GENERIC) {
388 metal_printf(
"Swapping in %s version of %s\n",
389 kernel_type_as_string(best_match->pso_type),
392 best_match->usage_count += 1;
397 std::this_thread::sleep_for(std::chrono::milliseconds(100));
402bool MetalKernelPipeline::should_use_binary_archive()
const
405 if (@available(macOS 15.4, *)) {
406 if (
auto *
str = getenv(
"CYCLES_METAL_DISABLE_BINARY_ARCHIVES")) {
407 if (atoi(
str) != 0) {
418 if (pso_type == PSO_GENERIC) {
438static MTLFunctionConstantValues *GetConstantValues(
const KernelData *
data =
nullptr)
440 MTLFunctionConstantValues *constant_values = [MTLFunctionConstantValues
new];
442 MTLDataType MTLDataType_int = MTLDataTypeInt;
443 MTLDataType MTLDataType_float = MTLDataTypeFloat;
444 MTLDataType MTLDataType_float4 = MTLDataTypeFloat4;
445 KernelData zero_data = {0};
449 [constant_values setConstantValue:&zero_data type:MTLDataType_int atIndex:
Kernel_DummyConstant];
451 bool next_member_is_specialized =
true;
453# define KERNEL_STRUCT_MEMBER_DONT_SPECIALIZE next_member_is_specialized = false;
455# define KERNEL_STRUCT_MEMBER(parent, _type, name) \
456 [constant_values setConstantValue:next_member_is_specialized ? (void *)&data->parent.name : \
458 type:MTLDataType_##_type \
459 atIndex:KernelData_##parent##_##name]; \
460 next_member_is_specialized = true;
464 return constant_values;
467void MetalDispatchPipeline::free_intersection_function_tables()
469 for (
int table = 0; table < METALRT_TABLE_NUM; table++) {
470 if (intersection_func_table[table]) {
471 [intersection_func_table[table] release];
472 intersection_func_table[table] = nil;
477MetalDispatchPipeline::~MetalDispatchPipeline()
479 free_intersection_function_tables();
482bool MetalDispatchPipeline::update(MetalDevice *metal_device,
DeviceKernel kernel)
484 const MetalKernelPipeline *best_pipeline = MetalDeviceKernels::get_best_pipeline(metal_device,
486 if (!best_pipeline) {
490 if (pipeline_id == best_pipeline->pipeline_id) {
494 pipeline_id = best_pipeline->pipeline_id;
495 pipeline = best_pipeline->pipeline;
496 pso_type = best_pipeline->pso_type;
497 num_threads_per_block = best_pipeline->num_threads_per_block;
501 free_intersection_function_tables();
503 for (
int table = 0; table < METALRT_TABLE_NUM; table++) {
505 MTLIntersectionFunctionTableDescriptor *ift_desc =
506 [[MTLIntersectionFunctionTableDescriptor alloc]
init];
507 ift_desc.functionCount = best_pipeline->table_functions[table].count;
508 intersection_func_table[table] = [this->pipeline
509 newIntersectionFunctionTableWithDescriptor:ift_desc];
512 int size = int([best_pipeline->table_functions[table]
count]);
513 for (
int i = 0;
i <
size;
i++) {
514 id<MTLFunctionHandle> handle = [pipeline
515 functionHandleWithFunction:best_pipeline->table_functions[table][
i]];
516 [intersection_func_table[table] setFunction:handle atIndex:
i];
525id<MTLFunction> MetalKernelPipeline::make_intersection_function(
const char *function_name)
527 MTLFunctionDescriptor *desc = [MTLIntersectionFunctionDescriptor functionDescriptor];
528 desc.name = [@(function_name)
copy];
530 if (pso_type != PSO_GENERIC) {
531 desc.constantValues = GetConstantValues(&kernel_data_);
534 desc.constantValues = GetConstantValues();
537 NSError *
error =
nullptr;
538 id<MTLFunction> rt_intersection_function = [mtlLibrary newFunctionWithDescriptor:desc
541 if (rt_intersection_function == nil) {
542 NSString *err = [
error localizedDescription];
543 string errors = [err UTF8String];
546 "Error getting intersection function \"%s\": %s", function_name, errors.c_str());
549 rt_intersection_function.label = [@(function_name)
copy];
551 return rt_intersection_function;
554void MetalKernelPipeline::compile()
556 const std::string function_name = std::string(
"cycles_metal_") +
559 NSError *
error =
nullptr;
561 MTLFunctionDescriptor *func_desc = [MTLIntersectionFunctionDescriptor functionDescriptor];
562 func_desc.name = [@(function_name.c_str())
copy];
564 if (pso_type != PSO_GENERIC) {
565 func_desc.constantValues = GetConstantValues(&kernel_data_);
568 func_desc.constantValues = GetConstantValues();
571 function = [mtlLibrary newFunctionWithDescriptor:func_desc
error:&
error];
573 if (function == nil) {
574 NSString *err = [
error localizedDescription];
575 string errors = [err UTF8String];
576 metal_printf(
"Error getting function \"%s\": %s", function_name.c_str(), errors.c_str());
580 function.label = [@(function_name.c_str())
copy];
582 NSArray *linked_functions = nil;
586 NSMutableSet *unique_functions = [[NSMutableSet alloc]
init];
588 auto add_intersection_functions = [&](
int table_index,
590 const char *curve_fn =
nullptr,
591 const char *point_fn =
nullptr) {
592 table_functions[table_index] = [NSArray
593 arrayWithObjects:make_intersection_function(tri_fn),
594 curve_fn ? make_intersection_function(curve_fn) : nil,
595 point_fn ? make_intersection_function(point_fn) : nil,
598 [unique_functions addObjectsFromArray:table_functions[table_index]];
601 add_intersection_functions(METALRT_TABLE_DEFAULT,
602 "__intersection__tri",
603 "__intersection__curve",
604 "__intersection__point");
605 add_intersection_functions(METALRT_TABLE_SHADOW,
606 "__intersection__tri_shadow",
607 "__intersection__curve_shadow",
608 "__intersection__point_shadow");
609 add_intersection_functions(METALRT_TABLE_SHADOW_ALL,
610 "__intersection__tri_shadow_all",
611 "__intersection__curve_shadow_all",
612 "__intersection__point_shadow_all");
613 add_intersection_functions(METALRT_TABLE_VOLUME,
"__intersection__volume_tri");
614 add_intersection_functions(METALRT_TABLE_LOCAL,
"__intersection__local_tri");
615 add_intersection_functions(METALRT_TABLE_LOCAL_MBLUR,
"__intersection__local_tri_mblur");
616 add_intersection_functions(METALRT_TABLE_LOCAL_SINGLE_HIT,
617 "__intersection__local_tri_single_hit");
618 add_intersection_functions(METALRT_TABLE_LOCAL_SINGLE_HIT_MBLUR,
619 "__intersection__local_tri_single_hit_mblur");
621 linked_functions = [[NSArray arrayWithArray:[unique_functions allObjects]]
622 sortedArrayUsingComparator:^NSComparisonResult(id<MTLFunction> f1, id<MTLFunction> f2) {
623 return [f1.label compare:f2.label];
625 unique_functions = nil;
628 MTLComputePipelineDescriptor *computePipelineStateDescriptor =
629 [[MTLComputePipelineDescriptor alloc]
init];
631 computePipelineStateDescriptor.buffers[0].mutability = MTLMutabilityImmutable;
632 computePipelineStateDescriptor.buffers[1].mutability = MTLMutabilityImmutable;
633 computePipelineStateDescriptor.buffers[2].mutability = MTLMutabilityImmutable;
635 computePipelineStateDescriptor.maxTotalThreadsPerThreadgroup = threads_per_threadgroup;
636 computePipelineStateDescriptor.threadGroupSizeIsMultipleOfThreadExecutionWidth =
true;
638 computePipelineStateDescriptor.computeFunction = function;
641 if (linked_functions) {
642 computePipelineStateDescriptor.linkedFunctions = [[MTLLinkedFunctions alloc]
init];
643 computePipelineStateDescriptor.linkedFunctions.functions = linked_functions;
645 computePipelineStateDescriptor.maxCallStackDepth = 1;
647 computePipelineStateDescriptor.maxCallStackDepth = 2;
650 MTLPipelineOption pipelineOptions = MTLPipelineOptionNone;
652 bool use_binary_archive = should_use_binary_archive();
653 bool loading_existing_archive =
false;
654 bool creating_new_archive =
false;
656 id<MTLBinaryArchive> archive = nil;
657 string metalbin_path;
658 string metalbin_name;
659 if (use_binary_archive) {
660 NSProcessInfo *processInfo = [NSProcessInfo processInfo];
661 string osVersion = [[processInfo operatingSystemVersionString] UTF8String];
663 local_md5.
append(kernels_md5);
664 local_md5.
append(osVersion);
665 local_md5.
append((uint8_t *)&this->threads_per_threadgroup,
666 sizeof(this->threads_per_threadgroup));
669 string device_name = [mtlDevice.name UTF8String];
670 for (
char &c : device_name) {
671 if ((c <
'0' || c >
'9') && (c <
'a' || c >
'z') && (c <
'A' || c >
'Z')) {
676 metalbin_name = device_name;
678 metalbin_name =
path_join(metalbin_name, kernel_type_as_string(pso_type));
687 creating_new_archive = !loading_existing_archive;
689 MTLBinaryArchiveDescriptor *archiveDesc = [[MTLBinaryArchiveDescriptor alloc]
init];
690 if (loading_existing_archive) {
691 archiveDesc.url = [NSURL fileURLWithPath:@(metalbin_path.c_str())];
693 NSError *
error = nil;
694 archive = [mtlDevice newBinaryArchiveWithDescriptor:archiveDesc
error:&
error];
696 const char *err =
error ? [[
error localizedDescription] UTF8String] :
nullptr;
697 metal_printf(
"newBinaryArchiveWithDescriptor failed: %s\n", err ? err :
"nil");
699 [archiveDesc release];
701 if (loading_existing_archive) {
702 pipelineOptions = MTLPipelineOptionFailOnBinaryArchiveMiss;
703 computePipelineStateDescriptor.binaryArchives = [NSArray arrayWithObjects:archive, nil];
707 bool recreate_archive =
false;
710 auto do_compilation = [&]() {
711 __block
bool compilation_finished =
false;
712 __block
string error_str;
714 if (loading_existing_archive || !
DebugFlags().metal.use_async_pso_creation) {
718 NSError *
error = nil;
719 pipeline = [mtlDevice newComputePipelineStateWithDescriptor:computePipelineStateDescriptor
723 const char *err =
error ? [[
error localizedDescription] UTF8String] :
nullptr;
724 error_str = err ? err :
"nil";
730 newComputePipelineStateWithDescriptor:computePipelineStateDescriptor
732 completionHandler:^(id<MTLComputePipelineState> computePipelineState,
733 MTLComputePipelineReflection * ,
735 pipeline = computePipelineState;
742 const char *err =
error ?
743 [[
error localizedDescription] UTF8String] :
745 error_str = err ? err :
"nil";
747 compilation_finished =
true;
751 while (ShaderCache::running && !compilation_finished) {
752 std::this_thread::sleep_for(std::chrono::milliseconds(5));
756 if (creating_new_archive && pipeline) {
759 if (![archive addComputePipelineFunctionsWithDescriptor:computePipelineStateDescriptor
762 NSString *errStr = [
error localizedDescription];
763 metal_printf(
"Failed to add PSO to archive:\n%s\n", errStr ? [errStr UTF8String] :
"nil");
769 "newComputePipelineStateWithDescriptor failed for \"%s\"%s. "
772 (archive && !recreate_archive) ?
" Archive may be incomplete or corrupt - attempting "
785 if (pipeline == nil && archive) {
786 recreate_archive =
true;
787 pipelineOptions = MTLPipelineOptionNone;
793 double duration =
time_dt() - starttime;
795 if (pipeline == nil) {
796 metal_printf(
"%16s | %2d | %-55s | %7.2fs | FAILED!\n",
797 kernel_type_as_string(pso_type),
804 if (!num_threads_per_block) {
805 num_threads_per_block =
round_down(pipeline.maxTotalThreadsPerThreadgroup,
806 pipeline.threadExecutionWidth);
807 num_threads_per_block = std::max(num_threads_per_block, (
int)pipeline.threadExecutionWidth);
810 if (ShaderCache::running) {
811 if (creating_new_archive || recreate_archive) {
812 if (![archive serializeToURL:[NSURL fileURLWithPath:@(metalbin_path.c_str())]
error:&
error])
814 metal_printf(
"Failed to save binary archive to %s, error:\n%s\n",
815 metalbin_path.c_str(),
816 [[
error localizedDescription] UTF8String]);
825 [computePipelineStateDescriptor release];
826 computePipelineStateDescriptor = nil;
828 if (!use_binary_archive) {
829 metal_printf(
"%16s | %2d | %-55s | %7.2fs\n",
830 kernel_type_as_string(pso_type),
836 metal_printf(
"%16s | %2d | %-55s | %7.2fs | %s: %s\n",
837 kernel_type_as_string(pso_type),
841 creating_new_archive ?
" new" :
"load",
842 metalbin_name.c_str());
846bool MetalDeviceKernels::load(MetalDevice *device, MetalPipelineType pso_type)
848 auto *shader_cache = get_shader_cache(device->mtlDevice);
850 shader_cache->load_kernel((
DeviceKernel)
i, device, pso_type);
855void MetalDeviceKernels::wait_for_all()
857 for (
int i = 0;
i < g_shaderCacheCount;
i++) {
858 g_shaderCache[
i].second->wait_for_all();
862int MetalDeviceKernels::num_incomplete_specialization_requests()
867 for (
int i = 0;
i < g_shaderCacheCount;
i++) {
868 total += g_shaderCache[
i].second->incomplete_specialization_requests;
873int MetalDeviceKernels::get_loaded_kernel_count(
const MetalDevice *device,
874 MetalPipelineType pso_type)
876 auto *shader_cache = get_shader_cache(device->mtlDevice);
879 if (shader_cache->should_load_kernel((
DeviceKernel)
i, device, pso_type)) {
886bool MetalDeviceKernels::should_load_kernels(
const MetalDevice *device, MetalPipelineType pso_type)
891const MetalKernelPipeline *MetalDeviceKernels::get_best_pipeline(
const MetalDevice *device,
894 return get_shader_cache(device->mtlDevice)->get_best_pipeline(kernel, device);
897bool MetalDeviceKernels::is_benchmark_warmup()
899 NSArray *args = [[NSProcessInfo processInfo] arguments];
900 for (
int i = 0;
i < args.count;
i++) {
901 if (
const char *arg = [[args objectAtIndex:
i] cStringUsingEncoding:NSASCIIStringEncoding]) {
902 if (!strcmp(arg,
"--warm-up")) {
910void MetalDeviceKernels::static_deinitialize()
912 for (
int i = 0;
i < g_shaderCacheCount;
i++) {
913 g_shaderCache[
i] = DeviceShaderCache();
BMesh const char void * data
static DBVT_INLINE btScalar size(const btDbvtVolume &a)
static blender::Mutex cache_mutex
void append(const uint8_t *data, const int nbytes)
CCL_NAMESPACE_BEGIN struct Options options
DebugFlags & DebugFlags()
#define KERNEL_FEATURE_NODE_RAYTRACE
#define KERNEL_FEATURE_MNEE
#define CCL_NAMESPACE_END
bool device_kernel_has_intersection(DeviceKernel kernel)
const char * device_kernel_as_string(DeviceKernel kernel)
#define assert(assertion)
@ DEVICE_KERNEL_INTEGRATOR_QUEUED_PATHS_ARRAY
@ DEVICE_KERNEL_INTEGRATOR_SHADE_SURFACE
@ DEVICE_KERNEL_INTEGRATOR_SORT_WRITE_PASS
@ DEVICE_KERNEL_SHADER_EVAL_DISPLACE
@ DEVICE_KERNEL_INTEGRATOR_INTERSECT_SUBSURFACE
@ DEVICE_KERNEL_INTEGRATOR_SHADE_SHADOW
@ DEVICE_KERNEL_INTEGRATOR_SORTED_PATHS_ARRAY
@ DEVICE_KERNEL_INTEGRATOR_COMPACT_SHADOW_STATES
@ DEVICE_KERNEL_INTEGRATOR_SHADE_SURFACE_RAYTRACE
@ DEVICE_KERNEL_INTEGRATOR_SORT_BUCKET_PASS
@ DEVICE_KERNEL_INTEGRATOR_SHADE_SURFACE_MNEE
@ DEVICE_KERNEL_INTEGRATOR_MEGAKERNEL
@ DEVICE_KERNEL_INTEGRATOR_INIT_FROM_CAMERA
@ DEVICE_KERNEL_SHADER_EVAL_CURVE_SHADOW_TRANSPARENCY
@ DEVICE_KERNEL_INTEGRATOR_INTERSECT_SHADOW
@ DEVICE_KERNEL_INTEGRATOR_INTERSECT_CLOSEST
@ DEVICE_KERNEL_INTEGRATOR_SHADE_BACKGROUND
static void error(const char *str)
static void init(bNodeTree *, bNode *node)
static void copy(bNodeTree *dest_ntree, bNode *dest_node, const bNode *src_node)
string path_cache_get(const string &sub)
string path_join(const string &dir, const string &file)
bool path_cache_kernel_exists_and_mark_used(const string &path)
void path_cache_kernel_mark_added_and_clear_old(const string &new_path, const size_t max_old_kernel_of_same_type)
void path_create_directories(const string &filepath)
bool path_remove(const string &path)
CCL_NAMESPACE_BEGIN string string_printf(const char *format,...)
std::unique_lock< std::mutex > thread_scoped_lock
CCL_NAMESPACE_BEGIN double time_dt()
ccl_device_inline size_t round_down(const size_t x, const size_t multiple)