Table of Contents

Class FusedElementwiseChainOp

Namespace
AiDotNet.JitCompiler.IR.Operations
Assembly
AiDotNet.dll

Fused chain of element-wise operations.

public class FusedElementwiseChainOp : IROp
Inheritance
FusedElementwiseChainOp
Inherited Members

Remarks

For Beginners: Combines multiple element-wise ops into one.

Instead of: t1 = Add(a, b) t2 = ReLU(t1) t3 = Multiply(t2, c)

One fused operation processes all three steps together. Saves memory by not storing intermediate results.

Properties

OperationNames

Gets or sets the list of operation names in the chain.

public List<string> OperationNames { get; set; }

Property Value

List<string>

Methods

Validate()

Validates the operation chain.

public override bool Validate()

Returns

bool