Searched refs:matrix (Results 1 - 6 of 6) sorted by relevance

/gem5/src/systemc/tests/systemc/misc/gnats/pr-5_1/
H A Dpr-5_1.cpp40 SC_MODULE( matrix )
42 SC_HAS_PROCESS( matrix );
47 matrix ( function
/gem5/src/sim/
H A Dlinear_solver.hh113 matrix.push_back(LinearEquation(unknowns));
117 assert(eq < matrix.size());
118 return matrix[eq];
123 for (auto & eq: matrix)
131 std::vector < LinearEquation > matrix;
H A Dlinear_solver.cc46 std::vector < LinearEquation > smatrix = this->matrix;
73 // smatrix is now a triangular matrix with diagonal being 1
/gem5/ext/pybind11/tests/
H A Dtest_buffers.py28 assert cstats.values() == ["2x3 matrix"]
65 assert cstats.values() == ["5x4 matrix"]
76 matrix = m.SquareMatrix(5)
77 assert memoryview(matrix).shape == (5, 5)
78 assert np.asarray(matrix).shape == (5, 5)
/gem5/ext/googletest/googlemock/src/
H A Dgmock-matchers.cc328 GTEST_API_ bool FindPairing(const MatchMatrix& matrix, argument
330 ElementMatcherPairs matches = FindMaxBipartiteMatching(matrix);
333 bool result = (max_flow == matrix.RhsSize());
339 << max_flow << " of " << matrix.RhsSize()
446 const MatchMatrix& matrix,
449 ::std::vector<char> element_matched(matrix.LhsSize(), 0);
450 ::std::vector<char> matcher_matched(matrix.RhsSize(), 0);
452 for (size_t ilhs = 0; ilhs < matrix.LhsSize(); ilhs++) {
453 for (size_t irhs = 0; irhs < matrix.RhsSize(); irhs++) {
454 char matched = matrix
444 VerifyAllElementsAndMatchersAreMatched( const ::std::vector<string>& element_printouts, const MatchMatrix& matrix, MatchResultListener* listener) const argument
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3253 // Connectivity matrix of (elements X matchers), in element-major order.
3274 // Treating the connectivity matrix as a (LhsSize()*RhsSize())-bit number,
3293 // a (ilhs, irhs) matrix coordinate into an offset.
3305 GTEST_API_ bool FindPairing(const MatchMatrix& matrix,
3326 const MatchMatrix& matrix,
3380 MatchMatrix matrix = AnalyzeElements(stl_container.begin(), local
3385 const size_t actual_count = matrix.LhsSize();
3401 matrix, listener) &&
3402 FindPairing(matrix, listener);
3424 MatchMatrix matrix(num_element
[all...]

Completed in 25 milliseconds