@@ -214,9 +214,6 @@ class SeZMInteractionBlock(nn.Module):
214214 - SO3Linear: l=0 bias
215215 - SO2Linear: l=0 bias
216216 - GatedActivation: gate linear bias
217- use_triton
218- If True, opt into fused Triton SO(2) rotation kernels inside
219- ``SO2Convolution`` when the runtime supports them.
220217 eps
221218 Small epsilon for numerical stability.
222219 dtype
@@ -275,7 +272,6 @@ def __init__(
275272 ffn_activation_function : str ,
276273 ffn_glu_activation : bool = True ,
277274 mlp_bias : bool = False ,
278- use_triton : bool = False ,
279275 eps : float = 1e-7 ,
280276 dtype : torch .dtype ,
281277 seed : int | list [int ] | None ,
@@ -370,7 +366,6 @@ def __init__(
370366 self .ffn_activation_function = str (ffn_activation_function )
371367 self .ffn_glu_activation = bool (ffn_glu_activation )
372368 self .mlp_bias = bool (mlp_bias )
373- self .use_triton = bool (use_triton )
374369 self .eps = float (eps )
375370 self .dtype = dtype
376371 self .device = env .DEVICE
@@ -436,7 +431,6 @@ def __init__(
436431 lebedev_quadrature = self .so2_lebedev_quadrature ,
437432 activation_function = self .so2_activation_function ,
438433 mlp_bias = self .mlp_bias ,
439- use_triton = self .use_triton ,
440434 eps = self .eps ,
441435 dtype = dtype ,
442436 seed = seed_so2_conv ,
0 commit comments