16 lines
312 B
C++
16 lines
312 B
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
|
|
namespace NEO {
|
|
|
|
void ExecutionEnvironment::sortNeoDevices() {
|
|
return ExecutionEnvironment::sortNeoDevicesWDDM();
|
|
}
|
|
|
|
} // namespace NEO
|