Skip to content

Commit

Permalink
Remove Null Driver Tracing & Fix ze_callbacks_t for compatibility
Browse files Browse the repository at this point in the history
Signed-off-by: Neil R Spruit <[email protected]>
  • Loading branch information
nrspruit authored and bmyates committed Nov 5, 2021
1 parent ae69d75 commit 7afa8a6
Show file tree
Hide file tree
Showing 22 changed files with 251 additions and 8,042 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Level zero loader changelog

## v1.6.2
* Removed Null Driver Tracing Support (Tracing supported using the Layer implementation)
* Fixed ze_callbacks_t for backwards compatibility
## v1.6.1
* Updated L0 API headers to 1.3.0 which includes:
* Get PCI Properties Extension
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Intel Corporation
Copyright (C) 2019-2021 Intel Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 1 addition & 3 deletions include/ze_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -9054,8 +9054,6 @@ typedef struct _ze_command_list_callbacks_t
ze_pfnCommandListAppendLaunchCooperativeKernelCb_t pfnAppendLaunchCooperativeKernelCb;
ze_pfnCommandListAppendLaunchKernelIndirectCb_t pfnAppendLaunchKernelIndirectCb;
ze_pfnCommandListAppendLaunchMultipleKernelsIndirectCb_t pfnAppendLaunchMultipleKernelsIndirectCb;
ze_pfnCommandListAppendImageCopyToMemoryExtCb_t pfnAppendImageCopyToMemoryExtCb;
ze_pfnCommandListAppendImageCopyFromMemoryExtCb_t pfnAppendImageCopyFromMemoryExtCb;
} ze_command_list_callbacks_t;

///////////////////////////////////////////////////////////////////////////////
Expand Down Expand Up @@ -10678,10 +10676,10 @@ typedef struct _ze_callbacks_t
ze_context_callbacks_t Context;
ze_command_queue_callbacks_t CommandQueue;
ze_command_list_callbacks_t CommandList;
ze_image_callbacks_t Image;
ze_fence_callbacks_t Fence;
ze_event_pool_callbacks_t EventPool;
ze_event_callbacks_t Event;
ze_image_callbacks_t Image;
ze_module_callbacks_t Module;
ze_module_build_log_callbacks_t ModuleBuildLog;
ze_kernel_callbacks_t Kernel;
Expand Down
2 changes: 1 addition & 1 deletion source/drivers/null/ze_null.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (C) 2019 Intel Corporation
* Copyright (C) 2019-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
Expand Down
Loading

0 comments on commit 7afa8a6

Please sign in to comment.