Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
balancap committed Oct 6, 2023
1 parent 6bc0668 commit f8dd703
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tessellate_ipu/core/vertex/tile_jacobi_vertex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ void jacob_update_first_step(const T* pcol, const T* qcol, T* pcol_updated,
* See: Gene H. Golub, Charles F. Van Loan, MATRIX COMPUTATIONS, 3rd edition,
* Johns Hopkins Chapter 8.
*/
// class [[poplar::constraint("elem(*pcol) != elem(*qcol)")]] JacobiUpdateFirstStep
// : public MultiVertex {
class JacobiUpdateFirstStep
class [[poplar::constraint("elem(*pcol) != elem(*qcol)")]] JacobiUpdateFirstStep
: public MultiVertex {
// class JacobiUpdateFirstStep
// : public MultiVertex {
public:
using T = float;
using T2 = float2;
Expand Down Expand Up @@ -314,11 +314,11 @@ void jacob_update_eigenvectors(const T* vpcol, const T* vqcol, T* vpcol_updated,
* See: Gene H. Golub, Charles F. Van Loan, MATRIX COMPUTATIONS, 3rd edition,
* Johns Hopkins Chapter 8.
*/
// class [[poplar::constraint(
// "elem(*vpcol) != elem(*vqcol)")]] JacobiUpdateEigenvectors
// : public MultiVertex {
class JacobiUpdateEigenvectors
class [[poplar::constraint(
"elem(*vpcol) != elem(*vqcol)")]] JacobiUpdateEigenvectors
: public MultiVertex {
// class JacobiUpdateEigenvectors
// : public MultiVertex {
public:
using T = float;
using T2 = float2;
Expand Down

0 comments on commit f8dd703

Please sign in to comment.