Skip to content

Triangle counting algorithm #189

Description

@byjtew

Algorithms for triangle counting

  • Burkhardt : sum_reduce( (A^2) .* A ) / 6
  • Cohen : sum_reduce( (L * U) .* A ) / 2
  • Sandia : sum_reduce( (T * T) .* T )
    • T being either the lower (L) or upper (U) triangle matrix of A

Routines implied

  • Out-of-place matrix-matrix multiplication (required, implemented)
  • Out-of-place masked matrix-matrix multiplication (optimal, not implemented)
  • Out-of-place masked matrix power-2 kernel (optimal, not implemented)
  • Haddamard product (required, implemented)
  • L/U matrix split (required, not implemented)
  • Matrix-to-scalar sum reduction (required, __see this issue .
  • Check if a matrix is symmetric (optimal, not implemented)
  • All-but-diagonal matrix mask (optimal, not implemented)

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions