skia2/infra/bots/gen_tasks_logic/skpbench_flags.go
Adlai Holler d37a085cd0 Enable DAG reordering on almost all bots
We exclude the NUC5PPYH just to get desktop coverage,
and we exclude the Pixel4, 4XL, 5 because of an apparent driver
bug I'm in the progress of tracking down.

Bug: skia:10877
Change-Id: Ic925cc7434c5228bcc2ee07ae752f89229db55c7
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/399742
Reviewed-by: Robert Phillips <robertphillips@google.com>
Reviewed-by: Ravi Mistry <rmistry@google.com>
Commit-Queue: Adlai Holler <adlai@google.com>
2021-04-22 16:55:39 +00:00

15 lines
514 B
Go

// Copyright 2021 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.
package gen_tasks_logic
// skpbenchFlags generates flags to skpbench based on the given task properties.
func (b *taskBuilder) skpbenchFlags() {
if b.model(DONT_REDUCE_OPS_TASK_SPLITTING_MODELS...) {
b.recipeProp("dont_reduce_ops_task_splitting", "true")
}
if b.model("NUC7i5BNK") {
b.recipeProp("gpu_resource_cache_limit", "16777216")
}
}