From 99e44cc527d70e3e2d9b194e45f3b73b2e408ffe Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Sat, 22 Apr 2023 13:40:58 +0200 Subject: [PATCH] aco/opcodes: delete wrong comment copy pasted from NIR MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Daniel Schürmann Part-of: --- src/amd/compiler/aco_opcodes.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py index ecad50f..d3bcf07 100644 --- a/src/amd/compiler/aco_opcodes.py +++ b/src/amd/compiler/aco_opcodes.py @@ -200,16 +200,6 @@ class Opcode(object): NOTE: this must be kept in sync with aco_op_info """ def __init__(self, name, opcode_gfx7, opcode_gfx9, opcode_gfx10, opcode_gfx11, format, input_mod, output_mod, is_atomic, cls): - """Parameters: - - - name is the name of the opcode (prepend nir_op_ for the enum name) - - all types are strings that get nir_type_ prepended to them - - input_types is a list of types - - algebraic_properties is a space-separated string, where nir_op_is_ is - prepended before each entry - - const_expr is an expression or series of statements that computes the - constant value of the opcode given the constant values of its inputs. - """ assert isinstance(name, str) assert isinstance(opcode_gfx7, int) assert isinstance(opcode_gfx9, int) -- 2.7.4