Home
last modified time | relevance | path

Searched refs:Matrix (Results 1 – 7 of 7) sorted by relevance

/oneTBB/examples/parallel_for_each/parallel_preorder/
H A DMatrix.hpp20 class Matrix { class
25 Matrix() {} in Matrix() function in Matrix
26 Matrix(float z) { in Matrix() function in Matrix
31 friend Matrix operator-(const Matrix& x) { in operator -()
32 Matrix result; in operator -()
38 friend Matrix operator+(const Matrix& x, const Matrix& y) { in operator +()
39 Matrix result; in operator +()
45 friend Matrix operator-(const Matrix& x, const Matrix& y) { in operator -()
46 Matrix result; in operator -()
52 friend Matrix operator*(const Matrix& x, const Matrix& y) { in operator *()
[all …]
H A DGraph.hpp49 typedef Matrix value_type;
/oneTBB/examples/parallel_for/game_of_life/
H A DEvolution.hpp38 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end);
45 Evolution(Matrix* m, //! beginning matrix including initial pattern in Evolution()
88 Matrix* m_matrix; //! Pointer to initial matrix
109 SequentialEvolution(Matrix* m, BoardPtr board) : Evolution(m, board) {} in SequentialEvolution()
120 ParallelEvolution(Matrix* m, BoardPtr board) : Evolution(m, board), m_parallel_time(0) { in ParallelEvolution()
H A DBoard.hpp23 struct Matrix { struct
37 Matrix* m_matrix; argument
H A DEvolution.cpp142 static void set_values(Matrix* source, char* dest) { in set_values()
157 static Matrix* m_source;
161 Matrix* tbb_parallel_task::m_source;
H A DUpdate_state.cpp97 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end) { in UpdateState()
331 char CheckCell(Matrix* m_matrix, int cellNumber) { in CheckCell()
361 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end) { in UpdateState()
H A DGame_of_life.cpp43 m_matrix = new Matrix(); in Board()