MyraMath
trmm_Right_Upper


Source: tests/pdense/detail/trmm_Right_Upper.cpp

1 // ========================================================================= //
2 // This file is part of MyraMath, copyright (c) 2014-2019 by Ryan A Chilton //
3 // and distributed by MyraCore, LLC. See LICENSE.txt for license terms. //
4 // ========================================================================= //
5 
11 // JobGraph under test.
12 #include <myramath/pdense/detail/multiplyu_right.h>
15 
16 // Reporting.
17 #include <tests/myratest.h>
18 
19 using namespace myra;
20 
21 ADD_TEST("trmm_Right_Upper","[pdense][jobgraph]")
22  {
23  // Initialize JobGraph, check topology.
24  std::pair<int,int> IJ(5,10);
25  typedef pdense::detail::multiplyu_right::JobGraphBase Graph;
26  Graph graph(IJ);
27  REQUIRE( verify(graph) );
28  // Save .dot file to disk?
29  // graphviz(graph,"graph.dot");
30  }
Given a JobGraph G, verifies it has valid topology.
Definition: syntax.dox:1
Given a JobGraph, produces a .dot file for visualization with graphviz.


Results: [PASS]


Go back to Summary of /test programs.