blob: 3add8af26616a45a3a51ca3abdd3b318e18dbdc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: GPL-2.0
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
use crate::vgpu::hal::VgpuHal;
struct Gb202;
impl VgpuHal for Gb202 {
fn supports_vgpu(&self) -> bool {
true
}
}
const GB202: Gb202 = Gb202;
pub(super) const GB202_HAL: &dyn VgpuHal = &GB202;
|