From efd2f09b21fdd5b217cf05e44b5f320f9757639c Mon Sep 17 00:00:00 2001 From: John Wright Date: Tue, 12 Feb 2019 16:00:54 -0800 Subject: [PATCH] Naming consistency (memMode -> memFormat) --- macros/src/main/scala/MacroCompiler.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/macros/src/main/scala/MacroCompiler.scala b/macros/src/main/scala/MacroCompiler.scala index f0482537..11809417 100644 --- a/macros/src/main/scala/MacroCompiler.scala +++ b/macros/src/main/scala/MacroCompiler.scala @@ -74,14 +74,14 @@ object MacroCompilerAnnotation { * Parameters associated to this MacroCompilerAnnotation. * * @param mem Path to memory lib - * @param memMode Type of memory lib (Some("conf"), Some("mdf"), or None (defaults to mdf)) + * @param memFormat Type of memory lib (Some("conf"), Some("mdf"), or None (defaults to mdf)) * @param lib Path to library lib or None if no libraries * @param costMetric Cost metric to use * @param mode Compiler mode (see CompilerMode) * @param forceCompile Set of memories to force compiling to lib regardless of the mode * @param forceSynflops Set of memories to force compiling as flops regardless of the mode */ - case class Params(mem: String, memMode: Option[String], lib: Option[String], costMetric: CostMetric, mode: CompilerMode, useCompiler: Boolean, + case class Params(mem: String, memFormat: Option[String], lib: Option[String], costMetric: CostMetric, mode: CompilerMode, useCompiler: Boolean, forceCompile: Set[String], forceSynflops: Set[String]) /**