1// Copyright 2021 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4package gen_tasks_logic 5 6// skpbenchFlags generates flags to skpbench based on the given task properties. 7func (b *taskBuilder) skpbenchFlags() { 8 if b.model(DONT_REDUCE_OPS_TASK_SPLITTING_MODELS...) { 9 b.recipeProp("dont_reduce_ops_task_splitting", "true") 10 } 11 if b.model("NUC7i5BNK") { 12 b.recipeProp("gpu_resource_cache_limit", "16777216") 13 } 14} 15