(* * Copyright (c) 1997-1999 Massachusetts Institute of Technology * Copyright (c) 2003 Matteo Frigo * Copyright (c) 2003 Massachusetts Institute of Technology * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *) (* $Id: gen_hc2r.ml,v 1.14 2003/04/17 19:25:50 athena Exp $ *) open Util open Genutil open C let cvsid = "$Id: gen_hc2r.ml,v 1.14 2003/04/17 19:25:50 athena Exp $" let usage = "Usage: " ^ Sys.argv.(0) ^ " -n " let uristride = ref Stride_variable let uiistride = ref Stride_variable let uostride = ref Stride_variable let uivstride = ref Stride_variable let uovstride = ref Stride_variable let dftIII_flag = ref false let speclist = [ "-with-ristride", Arg.String(fun x -> uristride := arg_to_stride x), " specialize for given real input stride"; "-with-iistride", Arg.String(fun x -> uiistride := arg_to_stride x), " specialize for given imaginary input stride"; "-with-ostride", Arg.String(fun x -> uostride := arg_to_stride x), " specialize for given output stride"; "-with-ivstride", Arg.String(fun x -> uivstride := arg_to_stride x), " specialize for given input vector stride"; "-with-ovstride", Arg.String(fun x -> uovstride := arg_to_stride x), " specialize for given output vector stride"; "-dft-III", Arg.Unit(fun () -> dftIII_flag := true), " produce shifted dftIII-style codelets" ] let hcdftIII sign n input = let input' i = if (i mod 2 == 0) then Complex.zero else let i' = (i - 1) / 2 in if (2 * i' < n - 1) then (input i') else if (2 * i' == n - 1) then Complex.real (input i') else Complex.conj (input (n - 1 - i')) in Fft.dft sign (2 * n) input' let generate n = let riarray = "ri" and iiarray = "ii" and oarray = "O" and ristride = "ris" and iistride = "iis" and ostride = "os" and i = "i" and v = "v" and (transform, kind) = if !dftIII_flag then(hcdftIII, "hc2rIII") else (Trig.hdft, "hc2r") in let ns = string_of_int n and sign = !Genutil.sign and name = !Magic.codelet_name in let name0 = name ^ "_0" in let vristride = either_stride (!uristride) (C.SVar ristride) and viistride = either_stride (!uiistride) (C.SVar iistride) and vostride = either_stride (!uostride) (C.SVar ostride) in let _ = Simd.ovs := stride_to_string "ovs" !uovstride in let _ = Simd.ivs := stride_to_string "ivs" !uivstride in let locations = unique_array_c n in let input = locative_array_c n (C.array_subscript riarray vristride) (C.array_subscript iiarray viistride) locations in let output = transform sign n (load_array_hc n input) in let oloc = locative_array_c n (C.array_subscript oarray vostride) (C.array_subscript "BUG" vostride) locations in let odag = store_array_r n oloc output in let annot = standard_optimizer odag in let body = Block ( [Decl ("int", i)], [For (Expr_assign (CVar i, CVar v), Binop (" > ", CVar i, Integer 0), list_to_comma [Expr_assign (CVar i, CPlus [CVar i; CUminus (Integer 1)]); Expr_assign (CVar riarray, CPlus [CVar riarray; CVar !Simd.ivs]); Expr_assign (CVar iiarray, CPlus [CVar iiarray; CVar !Simd.ivs]); Expr_assign (CVar oarray, CPlus [CVar oarray; CVar !Simd.ovs])], Asch annot) ]) in let tree = Fcn ("static void", name, ([Decl (C.constrealtypep, riarray); Decl (C.constrealtypep, iiarray); Decl (C.realtypep, oarray); Decl (C.stridetype, ristride); Decl (C.stridetype, iistride); Decl (C.stridetype, ostride); Decl ("int", v); Decl ("int", "ivs"); Decl ("int", "ovs")]), add_constants body) in let desc = Printf.sprintf "static const khc2r_desc desc = { %d, \"%s\", %s, &GENUS, %s, %s, %s, %s, %s };\n\n" n name (flops_of tree) (stride_to_solverparm !uristride) (stride_to_solverparm !uiistride) (stride_to_solverparm !uostride) "0" "0" and init = (declare_register_fcn name) ^ "{" ^ " X(k" ^ kind ^ "_register)(p, " ^ name ^ ", &desc);\n" ^ "}\n" in (unparse cvsid tree) ^ "\n" ^ desc ^ init let main () = begin parse speclist usage; print_string (generate (check_size ())); end let _ = main()