Home
last modified time | relevance | path

Searched refs:vectorConfig (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/
DTraceBasedModelFlatBufferWriter.cs27 vectorConfig = new Tuple<float, byte, short>(0, 0, -1); in TraceBasedModelFlatBufferWriter()
175 vectorConfig = new Tuple<float, byte, short>(lmul, sew, vl); in BuildInstructionFlatbuffer()
202 Instruction.AddLmul(builder, isVectorInstruction ? vectorConfig.Item1 : 0); in BuildInstructionFlatbuffer()
203 Instruction.AddSew(builder, isVectorInstruction ? vectorConfig.Item2 : (byte)0); in BuildInstructionFlatbuffer()
204 Instruction.AddVl(builder, isVectorInstruction ? vectorConfig.Item3 : (short)-1); in BuildInstructionFlatbuffer()
211 private Tuple<float, byte, short> vectorConfig; field in Antmicro.Renode.Peripherals.CPU.TraceBasedModelFlatBufferWriter