[Phi] fixing compilation error from _mm512_set1_epi32 and fixing zlint
Mirror Gitea refs to GitHub / mirror (push) Successful in 19s
Test / build_and_test (push) Successful in 3m13s
Build / build (push) Successful in 5m5s

issue
This commit is contained in:
2026-08-18 03:16:04 +02:00
parent d5a794aa64
commit 8360d8edfe
4 changed files with 22 additions and 6 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ pub fn create(device: *PhiDevice, allocator: std.mem.Allocator, size: vk.DeviceS
errdefer device.interface.device_allocator.allocator().free(backing);
const offset = device.transport.registerHostMemory(backing) catch return VkError.OutOfHostMemory;
errdefer device.transport.unregisterHostMemory(offset, backing.len) catch {};
errdefer device.transport.unregisterHostMemory(offset, backing.len) catch @panic("Caught an error while handling an error");
const request: proto.PhiMapHostMemoryRequest = .{
.scif_offset = offset,