Hash :
c0d806b4
Author :
Date :
2025-02-10T23:01:33
CL: OpenCL support for ANGLE Capture/Replay Implementation of OpenCL Capture/Replay tool in ANGLE. Brief notes about the change: - Most meaningful changes for the capture process are made in src/libANGLE/capture/ - Most meaningful changes for replay are made in util/capture/ and src/tests/perf_tests/ - Many autogenerated files are changed/added to allow the capture of OpenCL objects & calls - The following applications were captured/replayed: benchmark_model, GeekBench Compute, GeekBench ML, AI-Benchmark, various OCL CTS tests - End2end test added to capture_tests. CapturedTestCL.MultiFrameCL/ES3_Vulkan Bug: angleproject:383841335 Change-Id: I55fdaa6cd6c7ba740aaa2351e4d29050059d6d1d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/6102105 Commit-Queue: Cody Northrop <cnorthrop@google.com> Reviewed-by: Roman Lavrov <romanl@google.com> Reviewed-by: Cody Northrop <cnorthrop@google.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
# Copyright 2023 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../../gni/angle.gni")
import("../angle_traces.gni")
angle_trace("angle_capture_tests_multi_frame_trace") {
_trace = "CapturedTest_MultiFrame_ES3_Vulkan"
json_file_name = "expected/CapturedTest_MultiFrame_ES3_Vulkan.json"
rebased_path = "expected/"
data = [
"$_trace.json",
"$_trace.angledata",
]
deps = [ "$angle_root/util:angle_trace_fixture" ]
}
angle_trace("angle_capture_tests_active_textures_trace") {
_trace = "CapturedTest_ActiveTextures_ES3_Vulkan"
json_file_name = "expected/CapturedTest_ActiveTextures_ES3_Vulkan.json"
rebased_path = "expected/"
data = [
"$_trace.json",
"$_trace.angledata",
]
deps = [ "$angle_root/util:angle_trace_fixture" ]
}
if (angle_enable_cl) {
angle_trace("angle_capture_tests_multi_frame_cl_trace") {
_trace = "CapturedTestCL_MultiFrameCL_ES3_Vulkan"
json_file_name = "expected/CapturedTestCL_MultiFrameCL_ES3_Vulkan.json"
rebased_path = "expected/"
data = [
"$_trace.json",
"$_trace.angledata",
]
deps = [ "$angle_root/src/libOpenCL:OpenCL_ANGLE" ]
}
}