Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix the spacing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
lanking520 committed Dec 14, 2018
1 parent 0e94f84 commit 01716c3
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ package org.apache.mxnet.utils
private[mxnet] object CToScalaUtils {

private val javaType = Map(
"float" -> "java.lang.Float",
"int" -> "java.lang.Integer",
"long" -> "java.lang.Long",
"float" -> "java.lang.Float",
"int" -> "java.lang.Integer",
"long" -> "java.lang.Long",
"double" -> "java.lang.Double",
"bool" -> "java.lang.Boolean")
"bool" -> "java.lang.Boolean")
private val scalaType = Map(
"float" -> "Float",
"int" -> "Int",
"long" -> "Long",
"float" -> "Float",
"int" -> "Int",
"long" -> "Long",
"double" -> "Double",
"bool" -> "Boolean")
"bool" -> "Boolean")

// Convert C++ Types to Scala Types
def typeConversion(in : String, argType : String = "", argName : String,
Expand Down

0 comments on commit 01716c3

Please sign in to comment.