Skip to content

Commit

Permalink
[metal] Remove support of double type (#7118)
Browse files Browse the repository at this point in the history
According to latest Metal spec (v2.3), `double` is still not supported.
  • Loading branch information
xndcn authored Dec 16, 2020
1 parent 18cf9b9 commit 053347c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/target/source/codegen_metal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,6 @@ void CodeGenMetal::PrintType(DataType t, std::ostream& os) { // NOLINT(*)
case 32:
os << "float";
break;
case 64:
os << "double";
break;
default:
fail = true;
break;
Expand Down

0 comments on commit 053347c

Please sign in to comment.