Lines Matching refs:blocky

19   PetscInt   blocky;  member
605 if (hipstruct->blocky == 2) { in MatMult_SeqSELLHIP()
607 } else if (hipstruct->blocky == 4) { in MatMult_SeqSELLHIP()
609 } else if (hipstruct->blocky == 8) { in MatMult_SeqSELLHIP()
611 } else if (hipstruct->blocky == 16) { in MatMult_SeqSELLHIP()
618 nblocks = 1 + (nrows - 1) / (hipstruct->blocky * sliceheight); in MatMult_SeqSELLHIP()
619 if (hipstruct->blocky == 2) { in MatMult_SeqSELLHIP()
621 } else if (hipstruct->blocky == 4) { in MatMult_SeqSELLHIP()
623 } else if (hipstruct->blocky == 8) { in MatMult_SeqSELLHIP()
625 } else if (hipstruct->blocky == 16) { in MatMult_SeqSELLHIP()
662 PetscInt blocky = a->chunksize / 32; in MatMult_SeqSELLHIP() local
667 if (blocky == 2) { in MatMult_SeqSELLHIP()
669 } else if (blocky == 4) { in MatMult_SeqSELLHIP()
671 } else if (blocky == 8) { in MatMult_SeqSELLHIP()
673 } else if (blocky == 16) { in MatMult_SeqSELLHIP()
721 PetscInt blocky = hipstruct->blocky; in MatMultAdd_SeqSELLHIP() local
740 if (blocky == 2) { in MatMultAdd_SeqSELLHIP()
742 } else if (blocky == 4) { in MatMultAdd_SeqSELLHIP()
744 } else if (blocky == 8) { in MatMultAdd_SeqSELLHIP()
746 } else if (blocky == 16) { in MatMultAdd_SeqSELLHIP()
755 blocky = a->chunksize / 32; in MatMultAdd_SeqSELLHIP()
759 if (blocky == 2) { in MatMultAdd_SeqSELLHIP()
761 } else if (blocky == 4) { in MatMultAdd_SeqSELLHIP()
763 } else if (blocky == 8) { in MatMultAdd_SeqSELLHIP()
765 } else if (blocky == 16) { in MatMultAdd_SeqSELLHIP()
772 nblocks = 1 + (nrows - 1) / (blocky * sliceheight); in MatMultAdd_SeqSELLHIP()
773 if (blocky == 2) { in MatMultAdd_SeqSELLHIP()
775 } else if (blocky == 4) { in MatMultAdd_SeqSELLHIP()
777 } else if (blocky == 8) { in MatMultAdd_SeqSELLHIP()
779 } else if (blocky == 16) { in MatMultAdd_SeqSELLHIP()
817 blocky = a->chunksize / 32; in MatMultAdd_SeqSELLHIP()
821 if (blocky == 2) { in MatMultAdd_SeqSELLHIP()
823 } else if (blocky == 4) { in MatMultAdd_SeqSELLHIP()
825 } else if (blocky == 8) { in MatMultAdd_SeqSELLHIP()
827 } else if (blocky == 16) { in MatMultAdd_SeqSELLHIP()
869 PetscInt kernel, blocky; in MatSetFromOptions_SeqSELLHIP() local
874 PetscCall(PetscOptionsGetInt(NULL, NULL, "-mat_sell_spmv_hip_blocky", &blocky, &flg)); in MatSetFromOptions_SeqSELLHIP()
876blocky == 2 || blocky == 4 || blocky == 8 || blocky == 16 || blocky == 32, PETSC_COMM_SELF, PETSC_… in MatSetFromOptions_SeqSELLHIP()
877 hipstruct->blocky = blocky; in MatSetFromOptions_SeqSELLHIP()