"vscode:/vscode.git/clone" did not exist on "b79bbbc22f847255a984bf71130908b7db41438f"
Commit c58a3877 authored by Jing Zhang's avatar Jing Zhang
Browse files

add test layout

parent e08e22b6
...@@ -55,6 +55,9 @@ int main() ...@@ -55,6 +55,9 @@ int main()
bool res = true; bool res = true;
res = res && TestGroupedGemm<Row, Row, Row>(); res = res && TestGroupedGemm<Row, Row, Row>();
res = res && TestGroupedGemm<Row, Col, Row>();
res = res && TestGroupedGemm<Col, Row, Row>();
res = res && TestGroupedGemm<Col, Col, Row>();
std::cout << "TestGroupedGemm ..... " << (res ? "SUCCESS" : "FAILURE") << std::endl; std::cout << "TestGroupedGemm ..... " << (res ? "SUCCESS" : "FAILURE") << std::endl;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment