This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
[MXNET-918] Random module #13039
Merged
Merged
[MXNET-918] Random module #13039
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
704ab60
introduce random API
mdespriee c6cb9ff
revert useless changes
mdespriee 5fdcd62
shorter types in APIDoc gen code
mdespriee 0b8837e
Merge branch 'master' into random_module_2
mdespriee 526f78c
fix after merge from master
mdespriee d9695c5
Trigger CI
mdespriee d4cb629
temp code / diag on CI
mdespriee c6af793
cleanup type-class code
mdespriee ee66735
Merge branch 'master' into random_module_2
mdespriee 1f7d0fe
cleanup type-class code
mdespriee a87c113
fix scalastyle
mdespriee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -841,6 +841,7 @@ object Symbol extends SymbolBase { | |
private val bindReqMap = Map("null" -> 0, "write" -> 1, "add" -> 3) | ||
|
||
val api = SymbolAPI | ||
val random = SymbolRandomAPI | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe also this part go to random.scala too... |
||
|
||
def pow(sym1: Symbol, sym2: Symbol): Symbol = { | ||
Symbol.createFromListedSymbols("_Power")(Array(sym1, sym2)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,15 @@ import scala.collection.mutable.ListBuffer | |
* Two file namely: SymbolAPIBase.scala and NDArrayAPIBase.scala | ||
* The code will be executed during Macros stage and file live in Core stage | ||
*/ | ||
private[mxnet] object APIDocGenerator extends GeneratorBase { | ||
private[mxnet] object APIDocGenerator extends GeneratorBase with RandomHelpers { | ||
|
||
def main(args: Array[String]): Unit = { | ||
val FILE_PATH = args(0) | ||
val hashCollector = ListBuffer[String]() | ||
hashCollector += typeSafeClassGen(FILE_PATH, true) | ||
hashCollector += typeSafeClassGen(FILE_PATH, false) | ||
hashCollector += typeSafeRandomClassGen(FILE_PATH, true) | ||
hashCollector += typeSafeRandomClassGen(FILE_PATH, false) | ||
hashCollector += nonTypeSafeClassGen(FILE_PATH, true) | ||
hashCollector += nonTypeSafeClassGen(FILE_PATH, false) | ||
val finalHash = hashCollector.mkString("\n") | ||
|
@@ -56,8 +58,27 @@ private[mxnet] object APIDocGenerator extends GeneratorBase { | |
|
||
writeFile( | ||
FILE_PATH, | ||
"package org.apache.mxnet", | ||
if (isSymbol) "SymbolAPIBase" else "NDArrayAPIBase", | ||
"import org.apache.mxnet.annotation.Experimental", | ||
generated) | ||
} | ||
|
||
def typeSafeRandomClassGen(FILE_PATH: String, isSymbol: Boolean): String = { | ||
val generated = typeSafeRandomFunctionsToGenerate(isSymbol) | ||
.map { func => | ||
val scalaDoc = generateAPIDocFromBackend(func) | ||
val typeParameter = randomGenericTypeSpec(isSymbol, false) | ||
val decl = generateAPISignature(func, isSymbol, typeParameter) | ||
s"$scalaDoc\n$decl" | ||
} | ||
|
||
writeFile( | ||
FILE_PATH, | ||
"package org.apache.mxnet", | ||
if (isSymbol) "SymbolRandomAPIBase" else "NDArrayRandomAPIBase", | ||
"""import org.apache.mxnet.annotation.Experimental | ||
|import scala.reflect.runtime.universe.TypeTag""".stripMargin, | ||
generated) | ||
} | ||
|
||
|
@@ -84,14 +105,15 @@ private[mxnet] object APIDocGenerator extends GeneratorBase { | |
|
||
writeFile( | ||
FILE_PATH, | ||
if (isSymbol) "SymbolBase" else "NDArrayBase", | ||
"package org.apache.mxnet", | ||
if (isSymbol) "SymbolBase" else "NDArrayBase", | ||
"import org.apache.mxnet.annotation.Experimental", | ||
absFuncs) | ||
} | ||
|
||
def generateAPIDocFromBackend(func: Func, withParam: Boolean = true): String = { | ||
val desc = func.desc.split("\n") | ||
.mkString(" * <pre>\n", "\n * ", " * </pre>\n") | ||
.mkString(" * <pre>", "\n * ", "\n * </pre>") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problems with generateAPIDocFromBackend were addressed elsewhere |
||
|
||
val params = func.listOfArgs.map { absClassArg => | ||
s" * @param ${absClassArg.safeArgName}\t\t${absClassArg.argDesc}" | ||
|
@@ -113,7 +135,7 @@ private[mxnet] object APIDocGenerator extends GeneratorBase { | |
} | ||
} | ||
|
||
def generateAPISignature(func: Func, isSymbol: Boolean): String = { | ||
def generateAPISignature(func: Func, isSymbol: Boolean, typeParameter: String = ""): String = { | ||
val argDef = ListBuffer[String]() | ||
|
||
argDef ++= typedFunctionCommonArgDef(func) | ||
|
@@ -128,11 +150,11 @@ private[mxnet] object APIDocGenerator extends GeneratorBase { | |
val returnType = func.returnType | ||
|
||
s"""@Experimental | ||
|def ${func.name} (${argDef.mkString(", ")}): $returnType""".stripMargin | ||
|def ${func.name}$typeParameter (${argDef.mkString(", ")}): $returnType""".stripMargin | ||
} | ||
|
||
def writeFile(FILE_PATH: String, className: String, packageDef: String, | ||
absFuncs: Seq[String]): String = { | ||
def writeFile(FILE_PATH: String, packageDef: String, className: String, | ||
imports: String, absFuncs: Seq[String]): String = { | ||
|
||
val finalStr = | ||
s"""/* | ||
|
@@ -154,7 +176,7 @@ private[mxnet] object APIDocGenerator extends GeneratorBase { | |
| | ||
|$packageDef | ||
| | ||
|import org.apache.mxnet.annotation.Experimental | ||
|$imports | ||
| | ||
|// scalastyle:off | ||
|abstract class $className { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we consider moving this part to random.scala?