(* high-il.sml * * COPYRIGHT (c) 2010 The Diderot Project (http://diderot.cs.uchicago.edu) * All rights reserved. * * High-level version of the Diderot IL. * * Note: this file is generated from gen/high-il.spec and gen/high-il.in. *) structure HighOps = struct type ty = BoolTy | StringTy | IntTy | TensorTy of int list fun sameTy (ty1 : ty, ty2) = (ty1 = ty2) @BODY@ end structure HighIL = SSAFn(HighOps)