Skip to content

Commit e68df28

Browse files
committed
Bump API versions in layers to 1.1
Signed-off-by: Brandon Yates <[email protected]>
1 parent 5aea55c commit e68df28

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

source/drivers/null/ze_null.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace driver
2121
class __zedlllocal context_t
2222
{
2323
public:
24-
ze_api_version_t version = ZE_API_VERSION_1_0;
24+
ze_api_version_t version = ZE_API_VERSION_1_1;
2525

2626
ze_dditable_t zeDdiTable = {};
2727
zet_dditable_t zetDdiTable = {};

source/layers/tracing/ze_tracing_layer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace tracing_layer
1717
class __zedlllocal context_t
1818
{
1919
public:
20-
ze_api_version_t version = ZE_API_VERSION_1_0;
20+
ze_api_version_t version = ZE_API_VERSION_1_1;
2121

2222
ze_dditable_t zeDdiTable = {};
2323

source/layers/validation/ze_validation_layer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace validation_layer
1919
class __zedlllocal context_t
2020
{
2121
public:
22-
ze_api_version_t version = ZE_API_VERSION_1_0;
22+
ze_api_version_t version = ZE_API_VERSION_1_1;
2323

2424
bool enableParameterValidation = false;
2525
bool enableHandleLifetime = false;

source/lib/zel_tracing_libddi.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace ze_lib
2323
{
2424
auto getTable = reinterpret_cast<zel_pfnGetTracerApiProcAddrTable_t>(
2525
GET_FUNCTION_PTR(loader, "zelGetTracerApiProcAddrTable") );
26-
result = getTable( ZE_API_VERSION_1_0, &zelTracingDdiTable.Tracer);
26+
result = getTable( ZE_API_VERSION_1_1, &zelTracingDdiTable.Tracer);
2727
}
2828

2929
return result;
@@ -32,7 +32,7 @@ namespace ze_lib
3232
__zedlllocal ze_result_t context_t::zelTracingInit()
3333
{
3434
ze_result_t result;
35-
result = zelGetTracerApiProcAddrTable( ZE_API_VERSION_1_0, &zelTracingDdiTable.Tracer);
35+
result = zelGetTracerApiProcAddrTable( ZE_API_VERSION_1_1, &zelTracingDdiTable.Tracer);
3636
return result;
3737
}
3838
#endif

0 commit comments

Comments
 (0)