mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
nak: Disable lea64 and f2fp.pack_ab tests pre-Volta
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34129>
This commit is contained in:
parent
bb43c665dc
commit
8d45d3bc3d
1 changed files with 8 additions and 0 deletions
|
|
@ -797,6 +797,10 @@ fn test_op_leax() {
|
|||
#[test]
|
||||
fn test_lea64() {
|
||||
let run = RunSingleton::get();
|
||||
if run.sm.sm() < 70 {
|
||||
return;
|
||||
}
|
||||
|
||||
let invocations = 100;
|
||||
|
||||
for shift in 0..64 {
|
||||
|
|
@ -1237,6 +1241,10 @@ fn test_shr64() {
|
|||
#[test]
|
||||
fn test_f2fp_pack_ab() {
|
||||
let run = RunSingleton::get();
|
||||
if run.sm.sm() < 70 {
|
||||
return;
|
||||
}
|
||||
|
||||
let mut b = TestShaderBuilder::new(run.sm.as_ref());
|
||||
|
||||
let srcs = SSARef::from([
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue