Commit 73f7c14e authored by Yutong Zhao's avatar Yutong Zhao
Browse files

Merge pull request #36 from peastman/master

Fixed an error when calling acos()
parents b1d621b3 f8dd519c
......@@ -181,7 +181,7 @@ void CudaExpressionUtilities::processExpression(stringstream& out, const Express
out << "ASIN(" << getTempName(node.getChildren()[0], temps) << ")";
break;
case Operation::ACOS:
out << "ACSO(" << getTempName(node.getChildren()[0], temps) << ")";
out << "ACOS(" << getTempName(node.getChildren()[0], temps) << ")";
break;
case Operation::ATAN:
out << "ATAN(" << getTempName(node.getChildren()[0], temps) << ")";
......
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