MCPcopy Create free account
hub / github.com/NVIDIA/cuda-tile / __init__

Method __init__

python/cuda_tile/dialects/cuda_tile_ops.py:458–472  ·  view source on GitHub ↗
(
        self,
        name: str,
        lhs_dtype,
        rhs_dtype,
        acc_dtype,
        lhs_signed: Signedness = Signedness.SIGNED,
        rhs_signed: Signedness = Signedness.SIGNED,
    )

Source from the content-addressed store, hash-verified

456 """Base class for MMA configuration."""
457
458 def __init__(
459 self,
460 name: str,
461 lhs_dtype,
462 rhs_dtype,
463 acc_dtype,
464 lhs_signed: Signedness = Signedness.SIGNED,
465 rhs_signed: Signedness = Signedness.SIGNED,
466 ):
467 self.name = name
468 self.lhs_dtype = lhs_dtype
469 self.rhs_dtype = rhs_dtype
470 self.acc_dtype = acc_dtype
471 self.lhs_signed = lhs_signed
472 self.rhs_signed = rhs_signed
473
474 def __str__(self):
475 return self.name

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected