Preparing report...

Report for github.com/sugarme/gotch

A    Great!    Found 87 issues across 118 files

Tweet

gofmt98%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


golint29%

Golint is a linter for Go source code.

    • gotch/vision/aug/normalize.go
    • Line 57: warning: exported function WithNormalizeStd should have comment or be unexported (golint)
    • Line 63: warning: exported function WithNormalizeMean should have comment or be unexported (golint)
    • Line 81: warning: exported method Normalize.Forward should have comment or be unexported (golint)
    • Line 86: warning: exported function WithNormalize should have comment or be unexported (golint)
    • gotch/tensor/print.go
    • Line 17: warning: exported method Tensor.ValueGo should have comment or be unexported (golint)
    • Line 49: warning: exported method Tensor.ToSlice should have comment or be unexported (golint)
    • gotch/nn/conv-transpose.go
    • Line 11: warning: exported type ConvTranspose1DConfig should have comment or be unexported (golint)
    • Line 22: warning: exported type ConvTranspose2DConfig should have comment or be unexported (golint)
    • Line 33: warning: exported type ConvTranspose3DConfig should have comment or be unexported (golint)
    • Line 44: warning: comment on exported function DefaultConvTranspose1DConfig should be of the form "DefaultConvTranspose1DConfig ..." (golint)
    • Line 58: warning: exported type ConvTranspose1D should have comment or be unexported (golint)
    • Line 64: warning: exported function NewConvTranspose1D should have comment or be unexported (golint)
    • Line 89: warning: exported type ConvTranspose2D should have comment or be unexported (golint)
    • Line 95: warning: exported function NewConvTranspose2D should have comment or be unexported (golint)
    • Line 120: warning: exported type ConvTranspose3D should have comment or be unexported (golint)
    • Line 126: warning: exported function NewConvTranspose3D should have comment or be unexported (golint)
    • Line 153: warning: exported method ConvTranspose1D.Forward should have comment or be unexported (golint)
    • Line 157: warning: exported method ConvTranspose2D.Forward should have comment or be unexported (golint)
    • Line 160: warning: exported method ConvTranspose3D.Forward should have comment or be unexported (golint)
    • gotch/nn/sequential.go
    • Line 110: warning: comment on exported function SeqT should be of the form "SeqT ..." (golint)
    • Line 133: warning: exported method SequentialT.ForwardT should have comment or be unexported (golint)
    • Line 173: warning: comment on exported method SequentialT.AddFnT should be of the form "AddFnT ..." (golint)
    • Line 182: warning: comment on exported method SequentialT.ForwardAllT should be of the form "ForwardAllT ..." (golint)
    • Line 212: warning: exported method ForwardWith.Forward should have comment or be unexported (golint)
    • Line 216: warning: exported type ForwardTWith should have comment or be unexported (golint)
    • Line 218: warning: exported method ForwardTWith.ForwardT should have comment or be unexported (golint)
    • Line 265: warning: exported function BatchAccuracyForLogitsOld should have comment or be unexported (golint)
    • Line 299: warning: comment on exported function BatchAccuracyForLogitsIdx should be of the form "BatchAccuracyForLogitsIdx ..." (golint)
    • gotch/vision/aug/crop.go
    • Line 12: warning: exported type RandomCrop should have comment or be unexported (golint)
    • Line 52: warning: exported method RandomCrop.Forward should have comment or be unexported (golint)
    • Line 92: warning: exported function WithRandomCrop should have comment or be unexported (golint)
    • Line 115: warning: exported method CenterCrop.Forward should have comment or be unexported (golint)
    • Line 119: warning: exported function WithCenterCrop should have comment or be unexported (golint)
    • gotch/vision/aug/posterize.go
    • Line 33: warning: exported function WithPosterizePvalue should have comment or be unexported (golint)
    • Line 39: warning: exported function WithPosterizeBits should have comment or be unexported (golint)
    • Line 57: warning: exported method RandomPosterize.Forward should have comment or be unexported (golint)
    • Line 71: warning: exported function WithRandomPosterize should have comment or be unexported (golint)
    • gotch/vision/squeezenet.go
    • Line 139: warning: exported function SqueezeNetV1_0 should have comment or be unexported (golint)
    • Line 143: warning: exported function SqueezeNetV1_1 should have comment or be unexported (golint)
    • gotch/tensor/index.go
    • Line 72: warning: exported type NewAxis should have comment or be unexported (golint)
    • Line 77: warning: exported type Select should have comment or be unexported (golint)
    • Line 78: warning: exported type Narrow should have comment or be unexported (golint)
    • Line 82: warning: exported type IndexSelect should have comment or be unexported (golint)
    • Line 83: warning: exported type InsertNewAxis should have comment or be unexported (golint)
    • Line 92: warning: exported function NewNarrow should have comment or be unexported (golint)
    • Line 96: warning: exported function NewIndexSelect should have comment or be unexported (golint)
    • Line 100: warning: exported function NewInsertNewAxis should have comment or be unexported (golint)
    • Line 104: warning: exported function NewSliceIndex should have comment or be unexported (golint)
    • Line 122: warning: exported type IndexOp should have comment or be unexported (golint)
    • gotch/tensor/scalar.go
    • Line 10: warning: exported type Scalar should have comment or be unexported (golint)
    • Line 68: warning: exported method Scalar.MustDrop should have comment or be unexported (golint)
    • gotch/example/translation/lang.go
    • Line 8: warning: exported const SosToken should have comment (or a comment on this block) or be unexported (golint)
    • Line 12: warning: exported type IndexCount should have comment or be unexported (golint)
    • Line 17: warning: exported type Lang should have comment or be unexported (golint)
    • Line 23: warning: exported function NewLang should have comment or be unexported (golint)
    • Line 37: warning: exported method Lang.AddWord should have comment or be unexported (golint)
    • Line 51: warning: exported method Lang.AddSentence should have comment or be unexported (golint)
    • Line 58: warning: exported method Lang.Len should have comment or be unexported (golint)
    • Line 62: warning: exported method Lang.SosToken should have comment or be unexported (golint)
    • Line 66: warning: exported method Lang.EosToken should have comment or be unexported (golint)
    • Line 70: warning: exported method Lang.GetName should have comment or be unexported (golint)
    • Line 74: warning: exported method Lang.GetIndex should have comment or be unexported (golint)
    • Line 78: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 83: warning: exported method Lang.SeqToString should have comment or be unexported (golint)
    • gotch/vision/aug/equalize.go
    • Line 27: warning: exported method RandomEqualize.Forward should have comment or be unexported (golint)
    • Line 41: warning: exported function WithRandomEqualize should have comment or be unexported (golint)
    • gotch/libtch/device.go
    • Line 1: warning: package comment should be of the form "Package libtch ..." (golint)
    • Line 12: warning: exported function Atc_cuda_device_count should have comment or be unexported (golint)
    • Line 12: warning: don't use underscores in Go names; func Atc_cuda_device_count should be AtcCudaDeviceCount (golint)
    • gotch/nn/optimizer.go
    • Line 86: warning: comment on exported function NewSGDConfig should be of the form "NewSGDConfig ..." (golint)
    • Line 101: warning: exported method SGDConfig.Build should have comment or be unexported (golint)
    • Line 108: warning: exported type AdamConfig should have comment or be unexported (golint)
    • Line 137: warning: exported method AdamConfig.Build should have comment or be unexported (golint)
    • Line 144: warning: exported type RMSPropConfig should have comment or be unexported (golint)
    • Line 152: warning: comment on exported function DefaultRMSPropConfig should be of the form "DefaultRMSPropConfig ..." (golint)
    • Line 179: warning: exported method RMSPropConfig.Build should have comment or be unexported (golint)
    • Line 211: warning: comment on exported method Optimizer.ClipGradValue should be of the form "ClipGradValue ..." (golint)
    • gotch/nn/varstore.go
    • Line 86: warning: comment on exported method VarStore.TrainableVariables should be of the form "TrainableVariables ..." (golint)
    • Line 349: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 602: warning: comment on exported method Entry.OrVarCopy should be of the form "OrVarCopy ..." (golint)
    • Line 618: warning: comment on exported method Entry.OrKaimingUniform should be of the form "OrKaimingUniform ..." (golint)
    • gotch/vision/aug/blur.go
    • Line 11: warning: exported type GaussianBlur should have comment or be unexported (golint)
    • Line 75: warning: exported method GaussianBlur.Forward should have comment or be unexported (golint)
    • Line 84: warning: exported function WithGaussianBlur should have comment or be unexported (golint)
    • gotch/vision/aug/perspective.go
    • Line 48: warning: exported function WithPerspectivePvalue should have comment or be unexported (golint)
    • Line 54: warning: exported function WithPerspectiveScale should have comment or be unexported (golint)
    • Line 60: warning: exported function WithPerspectiveMode should have comment or be unexported (golint)
    • Line 66: warning: exported function WithPerspectiveValue should have comment or be unexported (golint)
    • Line 178: warning: exported method RandomPerspective.Forward should have comment or be unexported (golint)
    • Line 185: warning: exported function WithRandomPerspective should have comment or be unexported (golint)
    • gotch/dutil/dataset.go
    • Line 17: warning: exported type DatasetKind should have comment or be unexported (golint)
    • Line 20: warning: exported const SliceDKind should have comment (or a comment on this block) or be unexported (golint)
    • Line 52: warning: exported method SliceDataset.Len should have comment or be unexported (golint)
    • Line 56: warning: exported method SliceDataset.DType should have comment or be unexported (golint)
    • Line 109: warning: exported method MapDataset.Len should have comment or be unexported (golint)
    • Line 113: warning: exported method MapDataset.DType should have comment or be unexported (golint)
    • gotch/example/yolo/main.go
    • Line 28: warning: exported type Bbox should have comment or be unexported (golint)
    • Line 38: warning: exported type ByConfBbox should have comment or be unexported (golint)
    • Line 46: warning: comment on exported function Iou should be of the form "Iou ..." (golint)
    • gotch/nn/init.go
    • Line 12: warning: exported type Init should have comment or be unexported (golint)
    • Line 27: warning: exported function NewConstInit should have comment or be unexported (golint)
    • Line 70: warning: exported function NewRandnInit should have comment or be unexported (golint)
    • Line 127: warning: exported function NewUniformInit should have comment or be unexported (golint)
    • Line 151: warning: exported function NewKaimingUniformInit should have comment or be unexported (golint)
    • Line 217: warning: exported function NewGlorotNInit should have comment or be unexported (golint)
    • gotch/nn/layer-norm.go
    • Line 8: warning: comment on exported type LayerNormConfig should be of the form "LayerNormConfig ..." (with optional leading article) (golint)
    • Line 17: warning: exported function DefaultLayerNormConfig should have comment or be unexported (golint)
    • Line 27: warning: comment on exported type LayerNorm should be of the form "LayerNorm ..." (with optional leading article) (golint)
    • Line 35: warning: exported function NewLayerNorm should have comment or be unexported (golint)
    • Line 52: warning: exported method LayerNorm.Forward should have comment or be unexported (golint)
    • gotch/vision/vgg.go
    • Line 122: warning: exported function VGG11 should have comment or be unexported (golint)
    • Line 126: warning: exported function VGG11BN should have comment or be unexported (golint)
    • Line 130: warning: exported function VGG13 should have comment or be unexported (golint)
    • Line 134: warning: exported function VGG13BN should have comment or be unexported (golint)
    • Line 138: warning: exported function VGG16 should have comment or be unexported (golint)
    • Line 142: warning: exported function VGG16BN should have comment or be unexported (golint)
    • Line 146: warning: exported function VGG19 should have comment or be unexported (golint)
    • Line 150: warning: exported function VGG19BN should have comment or be unexported (golint)
    • gotch/libtch/c-generated.go
    • Line 11: warning: exported function Atg__And_ should have comment or be unexported (golint)
    • Line 11: warning: don't use underscores in Go names; func Atg__And_ should be AtgAnd (golint)
    • Line 14: warning: exported function Atg__And1 should have comment or be unexported (golint)
    • Line 14: warning: don't use underscores in Go names; func Atg__And1 should be AtgAnd1 (golint)
    • Line 17: warning: exported function Atg__Iand_ should have comment or be unexported (golint)
    • Line 17: warning: don't use underscores in Go names; func Atg__Iand_ should be AtgIand (golint)
    • Line 20: warning: exported function Atg__Iand1 should have comment or be unexported (golint)
    • Line 20: warning: don't use underscores in Go names; func Atg__Iand1 should be AtgIand1 (golint)
    • Line 23: warning: exported function Atg__Ilshift_ should have comment or be unexported (golint)
    • Line 23: warning: don't use underscores in Go names; func Atg__Ilshift_ should be AtgIlshift (golint)
    • Line 26: warning: exported function Atg__Ilshift1 should have comment or be unexported (golint)
    • Line 26: warning: don't use underscores in Go names; func Atg__Ilshift1 should be AtgIlshift1 (golint)
    • Line 29: warning: exported function Atg__Ior_ should have comment or be unexported (golint)
    • Line 29: warning: don't use underscores in Go names; func Atg__Ior_ should be AtgIor (golint)
    • Line 32: warning: exported function Atg__Ior1 should have comment or be unexported (golint)
    • Line 32: warning: don't use underscores in Go names; func Atg__Ior1 should be AtgIor1 (golint)
    • Line 35: warning: exported function Atg__Irshift_ should have comment or be unexported (golint)
    • Line 35: warning: don't use underscores in Go names; func Atg__Irshift_ should be AtgIrshift (golint)
    • Line 38: warning: exported function Atg__Irshift1 should have comment or be unexported (golint)
    • Line 38: warning: don't use underscores in Go names; func Atg__Irshift1 should be AtgIrshift1 (golint)
    • Line 41: warning: exported function Atg__Ixor_ should have comment or be unexported (golint)
    • Line 41: warning: don't use underscores in Go names; func Atg__Ixor_ should be AtgIxor (golint)
    • Line 44: warning: exported function Atg__Ixor1 should have comment or be unexported (golint)
    • Line 44: warning: don't use underscores in Go names; func Atg__Ixor1 should be AtgIxor1 (golint)
    • Line 47: warning: exported function Atg__Lshift_ should have comment or be unexported (golint)
    • Line 47: warning: don't use underscores in Go names; func Atg__Lshift_ should be AtgLshift (golint)
    • Line 50: warning: exported function Atg__Lshift1 should have comment or be unexported (golint)
    • Line 50: warning: don't use underscores in Go names; func Atg__Lshift1 should be AtgLshift1 (golint)
    • Line 53: warning: exported function Atg__Or_ should have comment or be unexported (golint)
    • Line 53: warning: don't use underscores in Go names; func Atg__Or_ should be AtgOr (golint)
    • Line 56: warning: exported function Atg__Or1 should have comment or be unexported (golint)
    • Line 56: warning: don't use underscores in Go names; func Atg__Or1 should be AtgOr1 (golint)
    • Line 59: warning: exported function Atg__Rshift_ should have comment or be unexported (golint)
    • Line 59: warning: don't use underscores in Go names; func Atg__Rshift_ should be AtgRshift (golint)
    • Line 62: warning: exported function Atg__Rshift1 should have comment or be unexported (golint)
    • Line 62: warning: don't use underscores in Go names; func Atg__Rshift1 should be AtgRshift1 (golint)
    • Line 65: warning: exported function Atg__Xor_ should have comment or be unexported (golint)
    • Line 65: warning: don't use underscores in Go names; func Atg__Xor_ should be AtgXor (golint)
    • Line 68: warning: exported function Atg__Xor1 should have comment or be unexported (golint)
    • Line 68: warning: don't use underscores in Go names; func Atg__Xor1 should be AtgXor1 (golint)
    • Line 71: warning: exported function Atg_AdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 71: warning: don't use underscores in Go names; func Atg_AdaptiveAvgPool2d should be AtgAdaptiveAvgPool2d (golint)
    • Line 76: warning: exported function Atg_AdaptiveAvgPool2dBackward should have comment or be unexported (golint)
    • Line 76: warning: don't use underscores in Go names; func Atg_AdaptiveAvgPool2dBackward should be AtgAdaptiveAvgPool2dBackward (golint)
    • Line 79: warning: exported function Atg_AddBatchDim should have comment or be unexported (golint)
    • Line 79: warning: don't use underscores in Go names; func Atg_AddBatchDim should be AtgAddBatchDim (golint)
    • Line 84: warning: exported function Atg_AddRelu should have comment or be unexported (golint)
    • Line 84: warning: don't use underscores in Go names; func Atg_AddRelu should be AtgAddRelu (golint)
    • Line 87: warning: exported function Atg_AddRelu_ should have comment or be unexported (golint)
    • Line 87: warning: don't use underscores in Go names; func Atg_AddRelu_ should be AtgAddRelu (golint)
    • Line 90: warning: exported function Atg_AddReluOut should have comment or be unexported (golint)
    • Line 90: warning: don't use underscores in Go names; func Atg_AddReluOut should be AtgAddReluOut (golint)
    • Line 93: warning: exported function Atg_AddmvImpl_ should have comment or be unexported (golint)
    • Line 93: warning: don't use underscores in Go names; func Atg_AddmvImpl_ should be AtgAddmvImpl (golint)
    • Line 96: warning: exported function Atg_Aminmax should have comment or be unexported (golint)
    • Line 96: warning: don't use underscores in Go names; func Atg_Aminmax should be AtgAminmax (golint)
    • Line 99: warning: exported function Atg_Aminmax1 should have comment or be unexported (golint)
    • Line 99: warning: don't use underscores in Go names; func Atg_Aminmax1 should be AtgAminmax1 (golint)
    • Line 104: warning: exported function Atg_AmpUpdateScale should have comment or be unexported (golint)
    • Line 104: warning: don't use underscores in Go names; func Atg_AmpUpdateScale should be AtgAmpUpdateScale (golint)
    • Line 110: warning: exported function Atg_BaddbmmMkl_ should have comment or be unexported (golint)
    • Line 110: warning: don't use underscores in Go names; func Atg_BaddbmmMkl_ should be AtgBaddbmmMkl (golint)
    • Line 113: warning: exported function Atg_Bmm should have comment or be unexported (golint)
    • Line 113: warning: don't use underscores in Go names; func Atg_Bmm should be AtgBmm (golint)
    • Line 117: warning: exported function Atg_BmmOut should have comment or be unexported (golint)
    • Line 117: warning: don't use underscores in Go names; func Atg_BmmOut should be AtgBmmOut (golint)
    • Line 121: warning: exported function Atg_CastByte should have comment or be unexported (golint)
    • Line 121: warning: don't use underscores in Go names; func Atg_CastByte should be AtgCastByte (golint)
    • Line 125: warning: exported function Atg_CastChar should have comment or be unexported (golint)
    • Line 125: warning: don't use underscores in Go names; func Atg_CastChar should be AtgCastChar (golint)
    • Line 129: warning: exported function Atg_CastDouble should have comment or be unexported (golint)
    • Line 129: warning: don't use underscores in Go names; func Atg_CastDouble should be AtgCastDouble (golint)
    • Line 133: warning: exported function Atg_CastFloat should have comment or be unexported (golint)
    • Line 133: warning: don't use underscores in Go names; func Atg_CastFloat should be AtgCastFloat (golint)
    • Line 137: warning: exported function Atg_CastHalf should have comment or be unexported (golint)
    • Line 137: warning: don't use underscores in Go names; func Atg_CastHalf should be AtgCastHalf (golint)
    • Line 141: warning: exported function Atg_CastInt should have comment or be unexported (golint)
    • Line 141: warning: don't use underscores in Go names; func Atg_CastInt should be AtgCastInt (golint)
    • Line 145: warning: exported function Atg_CastLong should have comment or be unexported (golint)
    • Line 145: warning: don't use underscores in Go names; func Atg_CastLong should be AtgCastLong (golint)
    • Line 149: warning: exported function Atg_CastShort should have comment or be unexported (golint)
    • Line 149: warning: don't use underscores in Go names; func Atg_CastShort should be AtgCastShort (golint)
    • Line 153: warning: exported function Atg_Cat should have comment or be unexported (golint)
    • Line 153: warning: don't use underscores in Go names; func Atg_Cat should be AtgCat (golint)
    • Line 159: warning: exported function Atg_CatOut should have comment or be unexported (golint)
    • Line 159: warning: don't use underscores in Go names; func Atg_CatOut should be AtgCatOut (golint)
    • Line 165: warning: exported function Atg_CdistBackward should have comment or be unexported (golint)
    • Line 165: warning: don't use underscores in Go names; func Atg_CdistBackward should be AtgCdistBackward (golint)
    • Line 169: warning: exported function Atg_CholeskyHelper should have comment or be unexported (golint)
    • Line 169: warning: don't use underscores in Go names; func Atg_CholeskyHelper should be AtgCholeskyHelper (golint)
    • Line 173: warning: exported function Atg_CholeskySolveHelper should have comment or be unexported (golint)
    • Line 173: warning: don't use underscores in Go names; func Atg_CholeskySolveHelper should be AtgCholeskySolveHelper (golint)
    • Line 177: warning: exported function Atg_Coalesced_ should have comment or be unexported (golint)
    • Line 177: warning: don't use underscores in Go names; func Atg_Coalesced_ should be AtgCoalesced (golint)
    • Line 181: warning: exported function Atg_ComputeLinearCombination should have comment or be unexported (golint)
    • Line 181: warning: don't use underscores in Go names; func Atg_ComputeLinearCombination should be AtgComputeLinearCombination (golint)
    • Line 184: warning: exported function Atg_ComputeLinearCombinationOut should have comment or be unexported (golint)
    • Line 184: warning: don't use underscores in Go names; func Atg_ComputeLinearCombinationOut should be AtgComputeLinearCombinationOut (golint)
    • Line 187: warning: exported function Atg_Conj should have comment or be unexported (golint)
    • Line 187: warning: don't use underscores in Go names; func Atg_Conj should be AtgConj (golint)
    • Line 190: warning: exported function Atg_Convolution should have comment or be unexported (golint)
    • Line 190: warning: don't use underscores in Go names; func Atg_Convolution should be AtgConvolution (golint)
    • Line 206: warning: exported function Atg_Convolution1 should have comment or be unexported (golint)
    • Line 206: warning: don't use underscores in Go names; func Atg_Convolution1 should be AtgConvolution1 (golint)
    • Line 223: warning: exported function Atg_ConvolutionNogroup should have comment or be unexported (golint)
    • Line 223: warning: don't use underscores in Go names; func Atg_ConvolutionNogroup should be AtgConvolutionNogroup (golint)
    • Line 235: warning: exported function Atg_CopyFrom should have comment or be unexported (golint)
    • Line 235: warning: don't use underscores in Go names; func Atg_CopyFrom should be AtgCopyFrom (golint)
    • Line 239: warning: exported function Atg_CtcLoss should have comment or be unexported (golint)
    • Line 239: warning: don't use underscores in Go names; func Atg_CtcLoss should be AtgCtcLoss (golint)
    • Line 248: warning: exported function Atg_CtcLossBackward should have comment or be unexported (golint)
    • Line 248: warning: don't use underscores in Go names; func Atg_CtcLossBackward should be AtgCtcLossBackward (golint)
    • Line 257: warning: exported function Atg_CudnnCtcLoss should have comment or be unexported (golint)
    • Line 257: warning: don't use underscores in Go names; func Atg_CudnnCtcLoss should be AtgCudnnCtcLoss (golint)
    • Line 267: warning: exported function Atg_CudnnInitDropoutState should have comment or be unexported (golint)
    • Line 267: warning: don't use underscores in Go names; func Atg_CudnnInitDropoutState should be AtgCudnnInitDropoutState (golint)
    • Line 275: warning: exported function Atg_CudnnRnn should have comment or be unexported (golint)
    • Line 275: warning: don't use underscores in Go names; func Atg_CudnnRnn should be AtgCudnnRnn (golint)
    • Line 290: warning: exported function Atg_CudnnRnnFlattenWeight should have comment or be unexported (golint)
    • Line 290: warning: don't use underscores in Go names; func Atg_CudnnRnnFlattenWeight should be AtgCudnnRnnFlattenWeight (golint)
    • Line 302: warning: exported function Atg_Cumprod should have comment or be unexported (golint)
    • Line 302: warning: don't use underscores in Go names; func Atg_Cumprod should be AtgCumprod (golint)
    • Line 306: warning: exported function Atg_CumprodOut should have comment or be unexported (golint)
    • Line 306: warning: don't use underscores in Go names; func Atg_CumprodOut should be AtgCumprodOut (golint)
    • Line 310: warning: exported function Atg_Cumsum should have comment or be unexported (golint)
    • Line 310: warning: don't use underscores in Go names; func Atg_Cumsum should be AtgCumsum (golint)
    • Line 314: warning: exported function Atg_CumsumOut should have comment or be unexported (golint)
    • Line 314: warning: don't use underscores in Go names; func Atg_CumsumOut should be AtgCumsumOut (golint)
    • Line 318: warning: exported function Atg_DimArange should have comment or be unexported (golint)
    • Line 318: warning: don't use underscores in Go names; func Atg_DimArange should be AtgDimArange (golint)
    • Line 322: warning: exported function Atg_DirichletGrad should have comment or be unexported (golint)
    • Line 322: warning: don't use underscores in Go names; func Atg_DirichletGrad should be AtgDirichletGrad (golint)
    • Line 325: warning: exported function Atg_EmbeddingBag should have comment or be unexported (golint)
    • Line 325: warning: don't use underscores in Go names; func Atg_EmbeddingBag should be AtgEmbeddingBag (golint)
    • Line 332: warning: exported function Atg_EmbeddingBagBackward should have comment or be unexported (golint)
    • Line 332: warning: don't use underscores in Go names; func Atg_EmbeddingBagBackward should be AtgEmbeddingBagBackward (golint)
    • Line 339: warning: exported function Atg_EmbeddingBagDenseBackward should have comment or be unexported (golint)
    • Line 339: warning: don't use underscores in Go names; func Atg_EmbeddingBagDenseBackward should be AtgEmbeddingBagDenseBackward (golint)
    • Line 345: warning: exported function Atg_EmbeddingBagForwardOnly should have comment or be unexported (golint)
    • Line 345: warning: don't use underscores in Go names; func Atg_EmbeddingBagForwardOnly should be AtgEmbeddingBagForwardOnly (golint)
    • Line 352: warning: exported function Atg_EmbeddingBagPerSampleWeightsBackward should have comment or be unexported (golint)
    • Line 352: warning: don't use underscores in Go names; func Atg_EmbeddingBagPerSampleWeightsBackward should be AtgEmbeddingBagPerSampleWeightsBackward (golint)
    • Line 356: warning: exported function Atg_EmbeddingBagSparseBackward should have comment or be unexported (golint)
    • Line 356: warning: don't use underscores in Go names; func Atg_EmbeddingBagSparseBackward should be AtgEmbeddingBagSparseBackward (golint)
    • Line 362: warning: exported function Atg_EmptyAffineQuantized should have comment or be unexported (golint)
    • Line 362: warning: don't use underscores in Go names; func Atg_EmptyAffineQuantized should be AtgEmptyAffineQuantized (golint)
    • Line 371: warning: exported function Atg_EmptyPerChannelAffineQuantized should have comment or be unexported (golint)
    • Line 371: warning: don't use underscores in Go names; func Atg_EmptyPerChannelAffineQuantized should be AtgEmptyPerChannelAffineQuantized (golint)
    • Line 379: warning: exported function Atg_EuclideanDist should have comment or be unexported (golint)
    • Line 379: warning: don't use underscores in Go names; func Atg_EuclideanDist should be AtgEuclideanDist (golint)
    • Line 382: warning: exported function Atg_FakeQuantizeLearnablePerChannelAffine should have comment or be unexported (golint)
    • Line 382: warning: don't use underscores in Go names; func Atg_FakeQuantizeLearnablePerChannelAffine should be AtgFakeQuantizeLearnablePerChannelAffine (golint)
    • Line 388: warning: exported function Atg_FakeQuantizeLearnablePerChannelAffineBackward should have comment or be unexported (golint)
    • Line 388: warning: don't use underscores in Go names; func Atg_FakeQuantizeLearnablePerChannelAffineBackward should be AtgFakeQuantizeLearnablePerChannelAffineBackward (golint)
    • Line 394: warning: exported function Atg_FakeQuantizeLearnablePerTensorAffine should have comment or be unexported (golint)
    • Line 394: warning: don't use underscores in Go names; func Atg_FakeQuantizeLearnablePerTensorAffine should be AtgFakeQuantizeLearnablePerTensorAffine (golint)
    • Line 399: warning: exported function Atg_FakeQuantizeLearnablePerTensorAffineBackward should have comment or be unexported (golint)
    • Line 399: warning: don't use underscores in Go names; func Atg_FakeQuantizeLearnablePerTensorAffineBackward should be AtgFakeQuantizeLearnablePerTensorAffineBackward (golint)
    • Line 404: warning: exported function Atg_FftWithSize should have comment or be unexported (golint)
    • Line 404: warning: don't use underscores in Go names; func Atg_FftWithSize should be AtgFftWithSize (golint)
    • Line 417: warning: exported function Atg_FftWithSize1 should have comment or be unexported (golint)
    • Line 417: warning: don't use underscores in Go names; func Atg_FftWithSize1 should be AtgFftWithSize1 (golint)
    • Line 430: warning: exported function Atg_FusedDropout should have comment or be unexported (golint)
    • Line 430: warning: don't use underscores in Go names; func Atg_FusedDropout should be AtgFusedDropout (golint)
    • Line 434: warning: exported function Atg_GatherSparseBackward should have comment or be unexported (golint)
    • Line 434: warning: don't use underscores in Go names; func Atg_GatherSparseBackward should be AtgGatherSparseBackward (golint)
    • Line 438: warning: exported function Atg_GridSampler2dCpuFallback should have comment or be unexported (golint)
    • Line 438: warning: don't use underscores in Go names; func Atg_GridSampler2dCpuFallback should be AtgGridSampler2dCPUFallback (golint)
    • Line 444: warning: exported function Atg_GridSampler2dCpuFallbackBackward should have comment or be unexported (golint)
    • Line 444: warning: don't use underscores in Go names; func Atg_GridSampler2dCpuFallbackBackward should be AtgGridSampler2dCPUFallbackBackward (golint)
    • Line 450: warning: exported function Atg_IndexCopy_ should have comment or be unexported (golint)
    • Line 450: warning: don't use underscores in Go names; func Atg_IndexCopy_ should be AtgIndexCopy (golint)
    • Line 454: warning: exported function Atg_IndexPutImpl_ should have comment or be unexported (golint)
    • Line 454: warning: don't use underscores in Go names; func Atg_IndexPutImpl_ should be AtgIndexPutImpl (golint)
    • Line 461: warning: exported function Atg_Indices should have comment or be unexported (golint)
    • Line 461: warning: don't use underscores in Go names; func Atg_Indices should be AtgIndices (golint)
    • Line 464: warning: exported function Atg_InverseHelper should have comment or be unexported (golint)
    • Line 464: warning: don't use underscores in Go names; func Atg_InverseHelper should be AtgInverseHelper (golint)
    • Line 467: warning: exported function Atg_LogSoftmax should have comment or be unexported (golint)
    • Line 467: warning: don't use underscores in Go names; func Atg_LogSoftmax should be AtgLogSoftmax (golint)
    • Line 472: warning: exported function Atg_LogSoftmaxBackwardData should have comment or be unexported (golint)
    • Line 472: warning: don't use underscores in Go names; func Atg_LogSoftmaxBackwardData should be AtgLogSoftmaxBackwardData (golint)
    • Line 476: warning: exported function Atg_Logcumsumexp should have comment or be unexported (golint)
    • Line 476: warning: don't use underscores in Go names; func Atg_Logcumsumexp should be AtgLogcumsumexp (golint)
    • Line 480: warning: exported function Atg_LogcumsumexpOut should have comment or be unexported (golint)
    • Line 480: warning: don't use underscores in Go names; func Atg_LogcumsumexpOut should be AtgLogcumsumexpOut (golint)
    • Line 484: warning: exported function Atg_LuSolveHelper should have comment or be unexported (golint)
    • Line 484: warning: don't use underscores in Go names; func Atg_LuSolveHelper should be AtgLuSolveHelper (golint)
    • Line 487: warning: exported function Atg_LuWithInfo should have comment or be unexported (golint)
    • Line 487: warning: don't use underscores in Go names; func Atg_LuWithInfo should be AtgLuWithInfo (golint)
    • Line 492: warning: exported function Atg_MakePerChannelQuantizedTensor should have comment or be unexported (golint)
    • Line 492: warning: don't use underscores in Go names; func Atg_MakePerChannelQuantizedTensor should be AtgMakePerChannelQuantizedTensor (golint)
    • Line 496: warning: exported function Atg_MakePerTensorQuantizedTensor should have comment or be unexported (golint)
    • Line 496: warning: don't use underscores in Go names; func Atg_MakePerTensorQuantizedTensor should be AtgMakePerTensorQuantizedTensor (golint)
    • Line 501: warning: exported function Atg_MaskedScale should have comment or be unexported (golint)
    • Line 501: warning: don't use underscores in Go names; func Atg_MaskedScale should be AtgMaskedScale (golint)
    • Line 505: warning: exported function Atg_MkldnnReshape should have comment or be unexported (golint)
    • Line 505: warning: don't use underscores in Go names; func Atg_MkldnnReshape should be AtgMkldnnReshape (golint)
    • Line 510: warning: exported function Atg_MkldnnTranspose should have comment or be unexported (golint)
    • Line 510: warning: don't use underscores in Go names; func Atg_MkldnnTranspose should be AtgMkldnnTranspose (golint)
    • Line 515: warning: exported function Atg_MkldnnTranspose_ should have comment or be unexported (golint)
    • Line 515: warning: don't use underscores in Go names; func Atg_MkldnnTranspose_ should be AtgMkldnnTranspose (golint)
    • Line 520: warning: exported function Atg_Mode should have comment or be unexported (golint)
    • Line 520: warning: don't use underscores in Go names; func Atg_Mode should be AtgMode (golint)
    • Line 525: warning: exported function Atg_ModeOut should have comment or be unexported (golint)
    • Line 525: warning: don't use underscores in Go names; func Atg_ModeOut should be AtgModeOut (golint)
    • Line 530: warning: exported function Atg_MultinomialAliasDraw should have comment or be unexported (golint)
    • Line 530: warning: don't use underscores in Go names; func Atg_MultinomialAliasDraw should be AtgMultinomialAliasDraw (golint)
    • Line 534: warning: exported function Atg_MultinomialAliasSetup should have comment or be unexported (golint)
    • Line 534: warning: don't use underscores in Go names; func Atg_MultinomialAliasSetup should be AtgMultinomialAliasSetup (golint)
    • Line 537: warning: exported function Atg_NnpackSpatialConvolution should have comment or be unexported (golint)
    • Line 537: warning: don't use underscores in Go names; func Atg_NnpackSpatialConvolution should be AtgNnpackSpatialConvolution (golint)
    • Line 544: warning: exported function Atg_NnpackSpatialConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 544: warning: don't use underscores in Go names; func Atg_NnpackSpatialConvolutionBackwardInput should be AtgNnpackSpatialConvolutionBackwardInput (golint)
    • Line 549: warning: exported function Atg_NnpackSpatialConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 549: warning: don't use underscores in Go names; func Atg_NnpackSpatialConvolutionBackwardWeight should be AtgNnpackSpatialConvolutionBackwardWeight (golint)
    • Line 556: warning: exported function Atg_PackPaddedSequence should have comment or be unexported (golint)
    • Line 556: warning: don't use underscores in Go names; func Atg_PackPaddedSequence should be AtgPackPaddedSequence (golint)
    • Line 560: warning: exported function Atg_PackPaddedSequenceBackward should have comment or be unexported (golint)
    • Line 560: warning: don't use underscores in Go names; func Atg_PackPaddedSequenceBackward should be AtgPackPaddedSequenceBackward (golint)
    • Line 566: warning: exported function Atg_PadPackedSequence should have comment or be unexported (golint)
    • Line 566: warning: don't use underscores in Go names; func Atg_PadPackedSequence should be AtgPadPackedSequence (golint)
    • Line 571: warning: exported function Atg_PdistBackward should have comment or be unexported (golint)
    • Line 571: warning: don't use underscores in Go names; func Atg_PdistBackward should be AtgPdistBackward (golint)
    • Line 575: warning: exported function Atg_QrHelper should have comment or be unexported (golint)
    • Line 575: warning: don't use underscores in Go names; func Atg_QrHelper should be AtgQrHelper (golint)
    • Line 579: warning: exported function Atg_RemoveBatchDim should have comment or be unexported (golint)
    • Line 579: warning: don't use underscores in Go names; func Atg_RemoveBatchDim should be AtgRemoveBatchDim (golint)
    • Line 585: warning: exported function Atg_ReshapeFromTensor should have comment or be unexported (golint)
    • Line 585: warning: don't use underscores in Go names; func Atg_ReshapeFromTensor should be AtgReshapeFromTensor (golint)
    • Line 588: warning: exported function Atg_SWhere should have comment or be unexported (golint)
    • Line 588: warning: don't use underscores in Go names; func Atg_SWhere should be AtgSWhere (golint)
    • Line 591: warning: exported function Atg_SampleDirichlet should have comment or be unexported (golint)
    • Line 591: warning: don't use underscores in Go names; func Atg_SampleDirichlet should be AtgSampleDirichlet (golint)
    • Line 594: warning: exported function Atg_SaturateWeightToFp16 should have comment or be unexported (golint)
    • Line 594: warning: don't use underscores in Go names; func Atg_SaturateWeightToFp16 should be AtgSaturateWeightToFp16 (golint)
    • Line 597: warning: exported function Atg_ShapeAsTensor should have comment or be unexported (golint)
    • Line 597: warning: don't use underscores in Go names; func Atg_ShapeAsTensor should be AtgShapeAsTensor (golint)
    • Line 600: warning: exported function Atg_SobolEngineDraw should have comment or be unexported (golint)
    • Line 600: warning: don't use underscores in Go names; func Atg_SobolEngineDraw should be AtgSobolEngineDraw (golint)
    • Line 607: warning: exported function Atg_SobolEngineFf_ should have comment or be unexported (golint)
    • Line 607: warning: don't use underscores in Go names; func Atg_SobolEngineFf_ should be AtgSobolEngineFf (golint)
    • Line 613: warning: exported function Atg_SobolEngineInitializeState_ should have comment or be unexported (golint)
    • Line 613: warning: don't use underscores in Go names; func Atg_SobolEngineInitializeState_ should be AtgSobolEngineInitializeState (golint)
    • Line 617: warning: exported function Atg_SobolEngineScramble_ should have comment or be unexported (golint)
    • Line 617: warning: don't use underscores in Go names; func Atg_SobolEngineScramble_ should be AtgSobolEngineScramble (golint)
    • Line 621: warning: exported function Atg_Softmax should have comment or be unexported (golint)
    • Line 621: warning: don't use underscores in Go names; func Atg_Softmax should be AtgSoftmax (golint)
    • Line 626: warning: exported function Atg_SoftmaxBackwardData should have comment or be unexported (golint)
    • Line 626: warning: don't use underscores in Go names; func Atg_SoftmaxBackwardData should be AtgSoftmaxBackwardData (golint)
    • Line 630: warning: exported function Atg_SolveHelper should have comment or be unexported (golint)
    • Line 630: warning: don't use underscores in Go names; func Atg_SolveHelper should be AtgSolveHelper (golint)
    • Line 633: warning: exported function Atg_SparseAddmm should have comment or be unexported (golint)
    • Line 633: warning: don't use underscores in Go names; func Atg_SparseAddmm should be AtgSparseAddmm (golint)
    • Line 636: warning: exported function Atg_SparseCooTensorUnsafe should have comment or be unexported (golint)
    • Line 636: warning: don't use underscores in Go names; func Atg_SparseCooTensorUnsafe should be AtgSparseCooTensorUnsafe (golint)
    • Line 643: warning: exported function Atg_SparseCooTensorWithDims should have comment or be unexported (golint)
    • Line 643: warning: don't use underscores in Go names; func Atg_SparseCooTensorWithDims should be AtgSparseCooTensorWithDims (golint)
    • Line 652: warning: exported function Atg_SparseCooTensorWithDimsAndTensors should have comment or be unexported (golint)
    • Line 652: warning: don't use underscores in Go names; func Atg_SparseCooTensorWithDimsAndTensors should be AtgSparseCooTensorWithDimsAndTensors (golint)
    • Line 661: warning: exported function Atg_SparseLogSoftmax should have comment or be unexported (golint)
    • Line 661: warning: don't use underscores in Go names; func Atg_SparseLogSoftmax should be AtgSparseLogSoftmax (golint)
    • Line 666: warning: exported function Atg_SparseLogSoftmax1 should have comment or be unexported (golint)
    • Line 666: warning: don't use underscores in Go names; func Atg_SparseLogSoftmax1 should be AtgSparseLogSoftmax1 (golint)
    • Line 671: warning: exported function Atg_SparseLogSoftmaxBackwardData should have comment or be unexported (golint)
    • Line 671: warning: don't use underscores in Go names; func Atg_SparseLogSoftmaxBackwardData should be AtgSparseLogSoftmaxBackwardData (golint)
    • Line 675: warning: exported function Atg_SparseMm should have comment or be unexported (golint)
    • Line 675: warning: don't use underscores in Go names; func Atg_SparseMm should be AtgSparseMm (golint)
    • Line 678: warning: exported function Atg_SparseSoftmax should have comment or be unexported (golint)
    • Line 678: warning: don't use underscores in Go names; func Atg_SparseSoftmax should be AtgSparseSoftmax (golint)
    • Line 683: warning: exported function Atg_SparseSoftmax1 should have comment or be unexported (golint)
    • Line 683: warning: don't use underscores in Go names; func Atg_SparseSoftmax1 should be AtgSparseSoftmax1 (golint)
    • Line 688: warning: exported function Atg_SparseSoftmaxBackwardData should have comment or be unexported (golint)
    • Line 688: warning: don't use underscores in Go names; func Atg_SparseSoftmaxBackwardData should be AtgSparseSoftmaxBackwardData (golint)
    • Line 692: warning: exported function Atg_SparseSum should have comment or be unexported (golint)
    • Line 692: warning: don't use underscores in Go names; func Atg_SparseSum should be AtgSparseSum (golint)
    • Line 695: warning: exported function Atg_SparseSum1 should have comment or be unexported (golint)
    • Line 695: warning: don't use underscores in Go names; func Atg_SparseSum1 should be AtgSparseSum1 (golint)
    • Line 699: warning: exported function Atg_SparseSum2 should have comment or be unexported (golint)
    • Line 699: warning: don't use underscores in Go names; func Atg_SparseSum2 should be AtgSparseSum2 (golint)
    • Line 704: warning: exported function Atg_SparseSum3 should have comment or be unexported (golint)
    • Line 704: warning: don't use underscores in Go names; func Atg_SparseSum3 should be AtgSparseSum3 (golint)
    • Line 710: warning: exported function Atg_SparseSumBackward should have comment or be unexported (golint)
    • Line 710: warning: don't use underscores in Go names; func Atg_SparseSumBackward should be AtgSparseSumBackward (golint)
    • Line 715: warning: exported function Atg_StandardGamma should have comment or be unexported (golint)
    • Line 715: warning: don't use underscores in Go names; func Atg_StandardGamma should be AtgStandardGamma (golint)
    • Line 718: warning: exported function Atg_StandardGammaGrad should have comment or be unexported (golint)
    • Line 718: warning: don't use underscores in Go names; func Atg_StandardGammaGrad should be AtgStandardGammaGrad (golint)
    • Line 721: warning: exported function Atg_Std should have comment or be unexported (golint)
    • Line 721: warning: don't use underscores in Go names; func Atg_Std should be AtgStd (golint)
    • Line 725: warning: exported function Atg_SvdHelper should have comment or be unexported (golint)
    • Line 725: warning: don't use underscores in Go names; func Atg_SvdHelper should be AtgSvdHelper (golint)
    • Line 730: warning: exported function Atg_SymeigHelper should have comment or be unexported (golint)
    • Line 730: warning: don't use underscores in Go names; func Atg_SymeigHelper should be AtgSymeigHelper (golint)
    • Line 735: warning: exported function Atg_TestOptionalFilledIntlist should have comment or be unexported (golint)
    • Line 735: warning: don't use underscores in Go names; func Atg_TestOptionalFilledIntlist should be AtgTestOptionalFilledIntlist (golint)
    • Line 740: warning: exported function Atg_TestOptionalIntlist should have comment or be unexported (golint)
    • Line 740: warning: don't use underscores in Go names; func Atg_TestOptionalIntlist should be AtgTestOptionalIntlist (golint)
    • Line 745: warning: exported function Atg_TestSerializationSubcmul should have comment or be unexported (golint)
    • Line 745: warning: don't use underscores in Go names; func Atg_TestSerializationSubcmul should be AtgTestSerializationSubcmul (golint)
    • Line 748: warning: exported function Atg_TriangularSolveHelper should have comment or be unexported (golint)
    • Line 748: warning: don't use underscores in Go names; func Atg_TriangularSolveHelper should be AtgTriangularSolveHelper (golint)
    • Line 754: warning: exported function Atg_Trilinear should have comment or be unexported (golint)
    • Line 754: warning: don't use underscores in Go names; func Atg_Trilinear should be AtgTrilinear (golint)
    • Line 766: warning: exported function Atg_Unique should have comment or be unexported (golint)
    • Line 766: warning: don't use underscores in Go names; func Atg_Unique should be AtgUnique (golint)
    • Line 771: warning: exported function Atg_Unique2 should have comment or be unexported (golint)
    • Line 771: warning: don't use underscores in Go names; func Atg_Unique2 should be AtgUnique2 (golint)
    • Line 777: warning: exported function Atg_UnsafeView should have comment or be unexported (golint)
    • Line 777: warning: don't use underscores in Go names; func Atg_UnsafeView should be AtgUnsafeView (golint)
    • Line 782: warning: exported function Atg_Values should have comment or be unexported (golint)
    • Line 782: warning: don't use underscores in Go names; func Atg_Values should be AtgValues (golint)
    • Line 785: warning: exported function Atg_Var should have comment or be unexported (golint)
    • Line 785: warning: don't use underscores in Go names; func Atg_Var should be AtgVar (golint)
    • Line 789: warning: exported function Atg_WeightNorm should have comment or be unexported (golint)
    • Line 789: warning: don't use underscores in Go names; func Atg_WeightNorm should be AtgWeightNorm (golint)
    • Line 793: warning: exported function Atg_WeightNormCudaInterface should have comment or be unexported (golint)
    • Line 793: warning: don't use underscores in Go names; func Atg_WeightNormCudaInterface should be AtgWeightNormCudaInterface (golint)
    • Line 797: warning: exported function Atg_WeightNormCudaInterfaceBackward should have comment or be unexported (golint)
    • Line 797: warning: don't use underscores in Go names; func Atg_WeightNormCudaInterfaceBackward should be AtgWeightNormCudaInterfaceBackward (golint)
    • Line 801: warning: exported function Atg_WeightNormDifferentiableBackward should have comment or be unexported (golint)
    • Line 801: warning: don't use underscores in Go names; func Atg_WeightNormDifferentiableBackward should be AtgWeightNormDifferentiableBackward (golint)
    • Line 805: warning: exported function AtgAbs should have comment or be unexported (golint)
    • Line 808: warning: exported function AtgAbs_ should have comment or be unexported (golint)
    • Line 808: warning: don't use underscores in Go names; func AtgAbs_ should be AtgAbs (golint)
    • Line 811: warning: exported function AtgAbsOut should have comment or be unexported (golint)
    • Line 814: warning: exported function AtgAbsolute should have comment or be unexported (golint)
    • Line 817: warning: exported function AtgAbsolute_ should have comment or be unexported (golint)
    • Line 817: warning: don't use underscores in Go names; func AtgAbsolute_ should be AtgAbsolute (golint)
    • Line 820: warning: exported function AtgAbsoluteOut should have comment or be unexported (golint)
    • Line 823: warning: exported function AtgAcos should have comment or be unexported (golint)
    • Line 826: warning: exported function AtgAcos_ should have comment or be unexported (golint)
    • Line 826: warning: don't use underscores in Go names; func AtgAcos_ should be AtgAcos (golint)
    • Line 829: warning: exported function AtgAcosOut should have comment or be unexported (golint)
    • Line 832: warning: exported function AtgAcosh should have comment or be unexported (golint)
    • Line 835: warning: exported function AtgAcosh_ should have comment or be unexported (golint)
    • Line 835: warning: don't use underscores in Go names; func AtgAcosh_ should be AtgAcosh (golint)
    • Line 838: warning: exported function AtgAcoshOut should have comment or be unexported (golint)
    • Line 841: warning: exported function AtgAdaptiveAvgPool1d should have comment or be unexported (golint)
    • Line 846: warning: exported function AtgAdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 851: warning: exported function AtgAdaptiveAvgPool2dOut should have comment or be unexported (golint)
    • Line 856: warning: exported function AtgAdaptiveAvgPool3d should have comment or be unexported (golint)
    • Line 861: warning: exported function AtgAdaptiveAvgPool3dBackward should have comment or be unexported (golint)
    • Line 864: warning: exported function AtgAdaptiveAvgPool3dBackwardOut should have comment or be unexported (golint)
    • Line 867: warning: exported function AtgAdaptiveAvgPool3dOut should have comment or be unexported (golint)
    • Line 872: warning: exported function AtgAdaptiveMaxPool1d should have comment or be unexported (golint)
    • Line 877: warning: exported function AtgAdaptiveMaxPool2d should have comment or be unexported (golint)
    • Line 882: warning: exported function AtgAdaptiveMaxPool2dBackward should have comment or be unexported (golint)
    • Line 885: warning: exported function AtgAdaptiveMaxPool2dBackwardOut should have comment or be unexported (golint)
    • Line 888: warning: exported function AtgAdaptiveMaxPool2dOut should have comment or be unexported (golint)
    • Line 893: warning: exported function AtgAdaptiveMaxPool3d should have comment or be unexported (golint)
    • Line 898: warning: exported function AtgAdaptiveMaxPool3dBackward should have comment or be unexported (golint)
    • Line 901: warning: exported function AtgAdaptiveMaxPool3dBackwardOut should have comment or be unexported (golint)
    • Line 904: warning: exported function AtgAdaptiveMaxPool3dOut should have comment or be unexported (golint)
    • Line 909: warning: exported function AtgAdd should have comment or be unexported (golint)
    • Line 912: warning: exported function AtgAdd1 should have comment or be unexported (golint)
    • Line 915: warning: exported function AtgAdd_ should have comment or be unexported (golint)
    • Line 915: warning: don't use underscores in Go names; func AtgAdd_ should be AtgAdd (golint)
    • Line 918: warning: exported function AtgAdd1_ should have comment or be unexported (golint)
    • Line 918: warning: don't use underscores in Go names; func AtgAdd1_ should be AtgAdd1 (golint)
    • Line 921: warning: exported function AtgAddOut should have comment or be unexported (golint)
    • Line 924: warning: exported function AtgAddbmm should have comment or be unexported (golint)
    • Line 927: warning: exported function AtgAddbmm_ should have comment or be unexported (golint)
    • Line 927: warning: don't use underscores in Go names; func AtgAddbmm_ should be AtgAddbmm (golint)
    • Line 930: warning: exported function AtgAddbmmOut should have comment or be unexported (golint)
    • Line 933: warning: exported function AtgAddcdiv should have comment or be unexported (golint)
    • Line 936: warning: exported function AtgAddcdiv_ should have comment or be unexported (golint)
    • Line 936: warning: don't use underscores in Go names; func AtgAddcdiv_ should be AtgAddcdiv (golint)
    • Line 939: warning: exported function AtgAddcdivOut should have comment or be unexported (golint)
    • Line 942: warning: exported function AtgAddcmul should have comment or be unexported (golint)
    • Line 945: warning: exported function AtgAddcmul_ should have comment or be unexported (golint)
    • Line 945: warning: don't use underscores in Go names; func AtgAddcmul_ should be AtgAddcmul (golint)
    • Line 948: warning: exported function AtgAddcmulOut should have comment or be unexported (golint)
    • Line 951: warning: exported function AtgAddmm should have comment or be unexported (golint)
    • Line 954: warning: exported function AtgAddmm_ should have comment or be unexported (golint)
    • Line 954: warning: don't use underscores in Go names; func AtgAddmm_ should be AtgAddmm (golint)
    • Line 957: warning: exported function AtgAddmmOut should have comment or be unexported (golint)
    • Line 960: warning: exported function AtgAddmv should have comment or be unexported (golint)
    • Line 963: warning: exported function AtgAddmv_ should have comment or be unexported (golint)
    • Line 963: warning: don't use underscores in Go names; func AtgAddmv_ should be AtgAddmv (golint)
    • Line 966: warning: exported function AtgAddmvOut should have comment or be unexported (golint)
    • Line 969: warning: exported function AtgAddr should have comment or be unexported (golint)
    • Line 972: warning: exported function AtgAddr_ should have comment or be unexported (golint)
    • Line 972: warning: don't use underscores in Go names; func AtgAddr_ should be AtgAddr (golint)
    • Line 975: warning: exported function AtgAddrOut should have comment or be unexported (golint)
    • Line 978: warning: exported function AtgAffineGridGenerator should have comment or be unexported (golint)
    • Line 984: warning: exported function AtgAffineGridGeneratorBackward should have comment or be unexported (golint)
    • Line 990: warning: exported function AtgAlias should have comment or be unexported (golint)
    • Line 993: warning: exported function AtgAlignAs should have comment or be unexported (golint)
    • Line 997: warning: exported function AtgAll should have comment or be unexported (golint)
    • Line 1000: warning: exported function AtgAll1 should have comment or be unexported (golint)
    • Line 1005: warning: exported function AtgAllOut should have comment or be unexported (golint)
    • Line 1010: warning: exported function AtgAlphaDropout should have comment or be unexported (golint)
    • Line 1015: warning: exported function AtgAlphaDropout_ should have comment or be unexported (golint)
    • Line 1015: warning: don't use underscores in Go names; func AtgAlphaDropout_ should be AtgAlphaDropout (golint)
    • Line 1020: warning: exported function AtgAmax should have comment or be unexported (golint)
    • Line 1026: warning: exported function AtgAmaxOut should have comment or be unexported (golint)
    • Line 1032: warning: exported function AtgAmin should have comment or be unexported (golint)
    • Line 1038: warning: exported function AtgAminOut should have comment or be unexported (golint)
    • Line 1044: warning: exported function AtgAngle should have comment or be unexported (golint)
    • Line 1047: warning: exported function AtgAngleOut should have comment or be unexported (golint)
    • Line 1050: warning: exported function AtgAny should have comment or be unexported (golint)
    • Line 1053: warning: exported function AtgAny1 should have comment or be unexported (golint)
    • Line 1058: warning: exported function AtgAnyOut should have comment or be unexported (golint)
    • Line 1063: warning: exported function AtgArange should have comment or be unexported (golint)
    • Line 1068: warning: exported function AtgArange1 should have comment or be unexported (golint)
    • Line 1073: warning: exported function AtgArange2 should have comment or be unexported (golint)
    • Line 1078: warning: exported function AtgArangeOut should have comment or be unexported (golint)
    • Line 1081: warning: exported function AtgArangeOut1 should have comment or be unexported (golint)
    • Line 1084: warning: exported function AtgArccos should have comment or be unexported (golint)
    • Line 1087: warning: exported function AtgArccos_ should have comment or be unexported (golint)
    • Line 1087: warning: don't use underscores in Go names; func AtgArccos_ should be AtgArccos (golint)
    • Line 1090: warning: exported function AtgArccosOut should have comment or be unexported (golint)
    • Line 1093: warning: exported function AtgArccosh should have comment or be unexported (golint)
    • Line 1096: warning: exported function AtgArccosh_ should have comment or be unexported (golint)
    • Line 1096: warning: don't use underscores in Go names; func AtgArccosh_ should be AtgArccosh (golint)
    • Line 1099: warning: exported function AtgArccoshOut should have comment or be unexported (golint)
    • Line 1102: warning: exported function AtgArcsin should have comment or be unexported (golint)
    • Line 1105: warning: exported function AtgArcsin_ should have comment or be unexported (golint)
    • Line 1105: warning: don't use underscores in Go names; func AtgArcsin_ should be AtgArcsin (golint)
    • Line 1108: warning: exported function AtgArcsinOut should have comment or be unexported (golint)
    • Line 1111: warning: exported function AtgArcsinh should have comment or be unexported (golint)
    • Line 1114: warning: exported function AtgArcsinh_ should have comment or be unexported (golint)
    • Line 1114: warning: don't use underscores in Go names; func AtgArcsinh_ should be AtgArcsinh (golint)
    • Line 1117: warning: exported function AtgArcsinhOut should have comment or be unexported (golint)
    • Line 1120: warning: exported function AtgArctan should have comment or be unexported (golint)
    • Line 1123: warning: exported function AtgArctan_ should have comment or be unexported (golint)
    • Line 1123: warning: don't use underscores in Go names; func AtgArctan_ should be AtgArctan (golint)
    • Line 1126: warning: exported function AtgArctanOut should have comment or be unexported (golint)
    • Line 1129: warning: exported function AtgArctanh should have comment or be unexported (golint)
    • Line 1132: warning: exported function AtgArctanh_ should have comment or be unexported (golint)
    • Line 1132: warning: don't use underscores in Go names; func AtgArctanh_ should be AtgArctanh (golint)
    • Line 1135: warning: exported function AtgArctanhOut should have comment or be unexported (golint)
    • Line 1138: warning: exported function AtgArgmax should have comment or be unexported (golint)
    • Line 1144: warning: exported function AtgArgmin should have comment or be unexported (golint)
    • Line 1150: warning: exported function AtgArgsort should have comment or be unexported (golint)
    • Line 1155: warning: exported function AtgAsStrided should have comment or be unexported (golint)
    • Line 1164: warning: exported function AtgAsStrided_ should have comment or be unexported (golint)
    • Line 1164: warning: don't use underscores in Go names; func AtgAsStrided_ should be AtgAsStrided (golint)
    • Line 1173: warning: exported function AtgAsin should have comment or be unexported (golint)
    • Line 1176: warning: exported function AtgAsin_ should have comment or be unexported (golint)
    • Line 1176: warning: don't use underscores in Go names; func AtgAsin_ should be AtgAsin (golint)
    • Line 1179: warning: exported function AtgAsinOut should have comment or be unexported (golint)
    • Line 1182: warning: exported function AtgAsinh should have comment or be unexported (golint)
    • Line 1185: warning: exported function AtgAsinh_ should have comment or be unexported (golint)
    • Line 1185: warning: don't use underscores in Go names; func AtgAsinh_ should be AtgAsinh (golint)
    • Line 1188: warning: exported function AtgAsinhOut should have comment or be unexported (golint)
    • Line 1191: warning: exported function AtgAtan should have comment or be unexported (golint)
    • Line 1194: warning: exported function AtgAtan2 should have comment or be unexported (golint)
    • Line 1197: warning: exported function AtgAtan2_ should have comment or be unexported (golint)
    • Line 1197: warning: don't use underscores in Go names; func AtgAtan2_ should be AtgAtan2 (golint)
    • Line 1200: warning: exported function AtgAtan2Out should have comment or be unexported (golint)
    • Line 1203: warning: exported function AtgAtan_ should have comment or be unexported (golint)
    • Line 1203: warning: don't use underscores in Go names; func AtgAtan_ should be AtgAtan (golint)
    • Line 1206: warning: exported function AtgAtanOut should have comment or be unexported (golint)
    • Line 1209: warning: exported function AtgAtanh should have comment or be unexported (golint)
    • Line 1212: warning: exported function AtgAtanh_ should have comment or be unexported (golint)
    • Line 1212: warning: don't use underscores in Go names; func AtgAtanh_ should be AtgAtanh (golint)
    • Line 1215: warning: exported function AtgAtanhOut should have comment or be unexported (golint)
    • Line 1218: warning: exported function AtgAtleast1d should have comment or be unexported (golint)
    • Line 1222: warning: exported function AtgAtleast2d should have comment or be unexported (golint)
    • Line 1226: warning: exported function AtgAtleast3d should have comment or be unexported (golint)
    • Line 1230: warning: exported function AtgAvgPool1d should have comment or be unexported (golint)
    • Line 1241: warning: exported function AtgAvgPool2d should have comment or be unexported (golint)
    • Line 1254: warning: exported function AtgAvgPool2dBackward should have comment or be unexported (golint)
    • Line 1267: warning: exported function AtgAvgPool2dBackwardOut should have comment or be unexported (golint)
    • Line 1280: warning: exported function AtgAvgPool2dOut should have comment or be unexported (golint)
    • Line 1293: warning: exported function AtgAvgPool3d should have comment or be unexported (golint)
    • Line 1306: warning: exported function AtgAvgPool3dBackward should have comment or be unexported (golint)
    • Line 1319: warning: exported function AtgAvgPool3dBackwardOut should have comment or be unexported (golint)
    • Line 1332: warning: exported function AtgAvgPool3dOut should have comment or be unexported (golint)
    • Line 1345: warning: exported function AtgBaddbmm should have comment or be unexported (golint)
    • Line 1348: warning: exported function AtgBaddbmm_ should have comment or be unexported (golint)
    • Line 1348: warning: don't use underscores in Go names; func AtgBaddbmm_ should be AtgBaddbmm (golint)
    • Line 1351: warning: exported function AtgBaddbmmOut should have comment or be unexported (golint)
    • Line 1354: warning: exported function AtgBartlettWindow should have comment or be unexported (golint)
    • Line 1360: warning: exported function AtgBartlettWindow1 should have comment or be unexported (golint)
    • Line 1367: warning: exported function AtgBatchNorm should have comment or be unexported (golint)
    • Line 1374: warning: exported function AtgBatchNormBackwardElemt should have comment or be unexported (golint)
    • Line 1377: warning: exported function AtgBatchNormBackwardReduce should have comment or be unexported (golint)
    • Line 1383: warning: exported function AtgBatchNormElemt should have comment or be unexported (golint)
    • Line 1387: warning: exported function AtgBatchNormElemtOut should have comment or be unexported (golint)
    • Line 1391: warning: exported function AtgBatchNormGatherStats should have comment or be unexported (golint)
    • Line 1397: warning: exported function AtgBatchNormGatherStatsWithCounts should have comment or be unexported (golint)
    • Line 1402: warning: exported function AtgBatchNormStats should have comment or be unexported (golint)
    • Line 1406: warning: exported function AtgBatchNormUpdateStats should have comment or be unexported (golint)
    • Line 1410: warning: exported function AtgBernoulli should have comment or be unexported (golint)
    • Line 1413: warning: exported function AtgBernoulli1 should have comment or be unexported (golint)
    • Line 1417: warning: exported function AtgBernoulli_ should have comment or be unexported (golint)
    • Line 1417: warning: don't use underscores in Go names; func AtgBernoulli_ should be AtgBernoulli (golint)
    • Line 1420: warning: exported function AtgBernoulli1_ should have comment or be unexported (golint)
    • Line 1420: warning: don't use underscores in Go names; func AtgBernoulli1_ should be AtgBernoulli1 (golint)
    • Line 1424: warning: exported function AtgBernoulliOut should have comment or be unexported (golint)
    • Line 1427: warning: exported function AtgBilinear should have comment or be unexported (golint)
    • Line 1430: warning: exported function AtgBinaryCrossEntropy should have comment or be unexported (golint)
    • Line 1434: warning: exported function AtgBinaryCrossEntropyBackward should have comment or be unexported (golint)
    • Line 1438: warning: exported function AtgBinaryCrossEntropyBackwardOut should have comment or be unexported (golint)
    • Line 1442: warning: exported function AtgBinaryCrossEntropyOut should have comment or be unexported (golint)
    • Line 1446: warning: exported function AtgBinaryCrossEntropyWithLogits should have comment or be unexported (golint)
    • Line 1450: warning: exported function AtgBinaryCrossEntropyWithLogitsBackward should have comment or be unexported (golint)
    • Line 1454: warning: exported function AtgBincount should have comment or be unexported (golint)
    • Line 1458: warning: exported function AtgBinomial should have comment or be unexported (golint)
    • Line 1461: warning: exported function AtgBitwiseAnd should have comment or be unexported (golint)
    • Line 1464: warning: exported function AtgBitwiseAnd1 should have comment or be unexported (golint)
    • Line 1467: warning: exported function AtgBitwiseAnd_ should have comment or be unexported (golint)
    • Line 1467: warning: don't use underscores in Go names; func AtgBitwiseAnd_ should be AtgBitwiseAnd (golint)
    • Line 1470: warning: exported function AtgBitwiseAnd1_ should have comment or be unexported (golint)
    • Line 1470: warning: don't use underscores in Go names; func AtgBitwiseAnd1_ should be AtgBitwiseAnd1 (golint)
    • Line 1473: warning: exported function AtgBitwiseAndOut should have comment or be unexported (golint)
    • Line 1476: warning: exported function AtgBitwiseAndOut1 should have comment or be unexported (golint)
    • Line 1479: warning: exported function AtgBitwiseNot should have comment or be unexported (golint)
    • Line 1482: warning: exported function AtgBitwiseNot_ should have comment or be unexported (golint)
    • Line 1482: warning: don't use underscores in Go names; func AtgBitwiseNot_ should be AtgBitwiseNot (golint)
    • Line 1485: warning: exported function AtgBitwiseNotOut should have comment or be unexported (golint)
    • Line 1488: warning: exported function AtgBitwiseOr should have comment or be unexported (golint)
    • Line 1491: warning: exported function AtgBitwiseOr1 should have comment or be unexported (golint)
    • Line 1494: warning: exported function AtgBitwiseOr_ should have comment or be unexported (golint)
    • Line 1494: warning: don't use underscores in Go names; func AtgBitwiseOr_ should be AtgBitwiseOr (golint)
    • Line 1497: warning: exported function AtgBitwiseOr1_ should have comment or be unexported (golint)
    • Line 1497: warning: don't use underscores in Go names; func AtgBitwiseOr1_ should be AtgBitwiseOr1 (golint)
    • Line 1500: warning: exported function AtgBitwiseOrOut should have comment or be unexported (golint)
    • Line 1503: warning: exported function AtgBitwiseOrOut1 should have comment or be unexported (golint)
    • Line 1506: warning: exported function AtgBitwiseXor should have comment or be unexported (golint)
    • Line 1509: warning: exported function AtgBitwiseXor1 should have comment or be unexported (golint)
    • Line 1512: warning: exported function AtgBitwiseXor_ should have comment or be unexported (golint)
    • Line 1512: warning: don't use underscores in Go names; func AtgBitwiseXor_ should be AtgBitwiseXor (golint)
    • Line 1515: warning: exported function AtgBitwiseXor1_ should have comment or be unexported (golint)
    • Line 1515: warning: don't use underscores in Go names; func AtgBitwiseXor1_ should be AtgBitwiseXor1 (golint)
    • Line 1518: warning: exported function AtgBitwiseXorOut should have comment or be unexported (golint)
    • Line 1521: warning: exported function AtgBitwiseXorOut1 should have comment or be unexported (golint)
    • Line 1524: warning: exported function AtgBlackmanWindow should have comment or be unexported (golint)
    • Line 1530: warning: exported function AtgBlackmanWindow1 should have comment or be unexported (golint)
    • Line 1537: warning: exported function AtgBlockDiag should have comment or be unexported (golint)
    • Line 1542: warning: exported function AtgBmm should have comment or be unexported (golint)
    • Line 1545: warning: exported function AtgBmmOut should have comment or be unexported (golint)
    • Line 1549: warning: exported function AtgBucketize should have comment or be unexported (golint)
    • Line 1554: warning: exported function AtgBucketize1 should have comment or be unexported (golint)
    • Line 1559: warning: exported function AtgBucketizeOut should have comment or be unexported (golint)
    • Line 1564: warning: exported function AtgCartesianProd should have comment or be unexported (golint)
    • Line 1569: warning: exported function AtgCat should have comment or be unexported (golint)
    • Line 1575: warning: exported function AtgCatOut should have comment or be unexported (golint)
    • Line 1581: warning: exported function AtgCauchy_ should have comment or be unexported (golint)
    • Line 1581: warning: don't use underscores in Go names; func AtgCauchy_ should be AtgCauchy (golint)
    • Line 1586: warning: exported function AtgCdist should have comment or be unexported (golint)
    • Line 1592: warning: exported function AtgCeil should have comment or be unexported (golint)
    • Line 1595: warning: exported function AtgCeil_ should have comment or be unexported (golint)
    • Line 1595: warning: don't use underscores in Go names; func AtgCeil_ should be AtgCeil (golint)
    • Line 1598: warning: exported function AtgCeilOut should have comment or be unexported (golint)
    • Line 1601: warning: exported function AtgCelu should have comment or be unexported (golint)
    • Line 1604: warning: exported function AtgCelu_ should have comment or be unexported (golint)
    • Line 1604: warning: don't use underscores in Go names; func AtgCelu_ should be AtgCelu (golint)
    • Line 1607: warning: exported function AtgChainMatmul should have comment or be unexported (golint)
    • Line 1612: warning: exported function AtgChannelShuffle should have comment or be unexported (golint)
    • Line 1616: warning: exported function AtgCholesky should have comment or be unexported (golint)
    • Line 1620: warning: exported function AtgCholeskyInverse should have comment or be unexported (golint)
    • Line 1624: warning: exported function AtgCholeskyInverseOut should have comment or be unexported (golint)
    • Line 1628: warning: exported function AtgCholeskyOut should have comment or be unexported (golint)
    • Line 1632: warning: exported function AtgCholeskySolve should have comment or be unexported (golint)
    • Line 1636: warning: exported function AtgCholeskySolveOut should have comment or be unexported (golint)
    • Line 1641: warning: exported function AtgClamp should have comment or be unexported (golint)
    • Line 1644: warning: exported function AtgClamp_ should have comment or be unexported (golint)
    • Line 1644: warning: don't use underscores in Go names; func AtgClamp_ should be AtgClamp (golint)
    • Line 1647: warning: exported function AtgClampMax should have comment or be unexported (golint)
    • Line 1650: warning: exported function AtgClampMax_ should have comment or be unexported (golint)
    • Line 1650: warning: don't use underscores in Go names; func AtgClampMax_ should be AtgClampMax (golint)
    • Line 1653: warning: exported function AtgClampMaxOut should have comment or be unexported (golint)
    • Line 1656: warning: exported function AtgClampMin should have comment or be unexported (golint)
    • Line 1659: warning: exported function AtgClampMin_ should have comment or be unexported (golint)
    • Line 1659: warning: don't use underscores in Go names; func AtgClampMin_ should be AtgClampMin (golint)
    • Line 1662: warning: exported function AtgClampMinOut should have comment or be unexported (golint)
    • Line 1665: warning: exported function AtgClampOut should have comment or be unexported (golint)
    • Line 1668: warning: exported function AtgClip should have comment or be unexported (golint)
    • Line 1671: warning: exported function AtgClip_ should have comment or be unexported (golint)
    • Line 1671: warning: don't use underscores in Go names; func AtgClip_ should be AtgClip (golint)
    • Line 1674: warning: exported function AtgClipOut should have comment or be unexported (golint)
    • Line 1677: warning: exported function AtgCoalesce should have comment or be unexported (golint)
    • Line 1680: warning: exported function AtgCol2im should have comment or be unexported (golint)
    • Line 1693: warning: exported function AtgCol2imBackward should have comment or be unexported (golint)
    • Line 1704: warning: exported function AtgCol2imBackwardOut should have comment or be unexported (golint)
    • Line 1715: warning: exported function AtgCol2imOut should have comment or be unexported (golint)
    • Line 1728: warning: exported function AtgCombinations should have comment or be unexported (golint)
    • Line 1733: warning: exported function AtgComplex should have comment or be unexported (golint)
    • Line 1736: warning: exported function AtgComplexOut should have comment or be unexported (golint)
    • Line 1739: warning: exported function AtgConj should have comment or be unexported (golint)
    • Line 1742: warning: exported function AtgConjOut should have comment or be unexported (golint)
    • Line 1745: warning: exported function AtgConstantPadNd should have comment or be unexported (golint)
    • Line 1750: warning: exported function AtgContiguous should have comment or be unexported (golint)
    • Line 1753: warning: exported function AtgConv1d should have comment or be unexported (golint)
    • Line 1763: warning: exported function AtgConv2d should have comment or be unexported (golint)
    • Line 1773: warning: exported function AtgConv3d should have comment or be unexported (golint)
    • Line 1783: warning: exported function AtgConvTbc should have comment or be unexported (golint)
    • Line 1787: warning: exported function AtgConvTbcBackward should have comment or be unexported (golint)
    • Line 1791: warning: exported function AtgConvTranspose1d should have comment or be unexported (golint)
    • Line 1803: warning: exported function AtgConvTranspose2d should have comment or be unexported (golint)
    • Line 1815: warning: exported function AtgConvTranspose3d should have comment or be unexported (golint)
    • Line 1827: warning: exported function AtgConvolution should have comment or be unexported (golint)
    • Line 1840: warning: exported function AtgConvolutionOverrideable should have comment or be unexported (golint)
    • Line 1853: warning: exported function AtgCopySparseToSparse_ should have comment or be unexported (golint)
    • Line 1853: warning: don't use underscores in Go names; func AtgCopySparseToSparse_ should be AtgCopySparseToSparse (golint)
    • Line 1857: warning: exported function AtgCos should have comment or be unexported (golint)
    • Line 1860: warning: exported function AtgCos_ should have comment or be unexported (golint)
    • Line 1860: warning: don't use underscores in Go names; func AtgCos_ should be AtgCos (golint)
    • Line 1863: warning: exported function AtgCosOut should have comment or be unexported (golint)
    • Line 1866: warning: exported function AtgCosh should have comment or be unexported (golint)
    • Line 1869: warning: exported function AtgCosh_ should have comment or be unexported (golint)
    • Line 1869: warning: don't use underscores in Go names; func AtgCosh_ should be AtgCosh (golint)
    • Line 1872: warning: exported function AtgCoshOut should have comment or be unexported (golint)
    • Line 1875: warning: exported function AtgCosineEmbeddingLoss should have comment or be unexported (golint)
    • Line 1880: warning: exported function AtgCosineSimilarity should have comment or be unexported (golint)
    • Line 1885: warning: exported function AtgCountNonzero should have comment or be unexported (golint)
    • Line 1890: warning: exported function AtgCountNonzero1 should have comment or be unexported (golint)
    • Line 1895: warning: exported function AtgCross should have comment or be unexported (golint)
    • Line 1900: warning: exported function AtgCrossOut should have comment or be unexported (golint)
    • Line 1905: warning: exported function AtgCtcLoss should have comment or be unexported (golint)
    • Line 1915: warning: exported function AtgCtcLoss1 should have comment or be unexported (golint)
    • Line 1921: warning: exported function AtgCudnnAffineGridGenerator should have comment or be unexported (golint)
    • Line 1928: warning: exported function AtgCudnnAffineGridGeneratorBackward should have comment or be unexported (golint)
    • Line 1935: warning: exported function AtgCudnnBatchNorm should have comment or be unexported (golint)
    • Line 1941: warning: exported function AtgCudnnBatchNormBackward should have comment or be unexported (golint)
    • Line 1945: warning: exported function AtgCudnnConvolution should have comment or be unexported (golint)
    • Line 1957: warning: exported function AtgCudnnConvolution1 should have comment or be unexported (golint)
    • Line 1969: warning: exported function AtgCudnnConvolution2 should have comment or be unexported (golint)
    • Line 1982: warning: exported function AtgCudnnConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 1997: warning: exported function AtgCudnnConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 2012: warning: exported function AtgCudnnConvolutionTranspose should have comment or be unexported (golint)
    • Line 2026: warning: exported function AtgCudnnConvolutionTranspose1 should have comment or be unexported (golint)
    • Line 2040: warning: exported function AtgCudnnConvolutionTranspose2 should have comment or be unexported (golint)
    • Line 2055: warning: exported function AtgCudnnConvolutionTransposeBackwardInput should have comment or be unexported (golint)
    • Line 2068: warning: exported function AtgCudnnConvolutionTransposeBackwardWeight should have comment or be unexported (golint)
    • Line 2083: warning: exported function AtgCudnnGridSampler should have comment or be unexported (golint)
    • Line 2086: warning: exported function AtgCudnnGridSamplerBackward should have comment or be unexported (golint)
    • Line 2089: warning: exported function AtgCummax should have comment or be unexported (golint)
    • Line 2093: warning: exported function AtgCummaxOut should have comment or be unexported (golint)
    • Line 2097: warning: exported function AtgCummaxminBackward should have comment or be unexported (golint)
    • Line 2101: warning: exported function AtgCummin should have comment or be unexported (golint)
    • Line 2105: warning: exported function AtgCumminOut should have comment or be unexported (golint)
    • Line 2109: warning: exported function AtgCumprod should have comment or be unexported (golint)
    • Line 2114: warning: exported function AtgCumprodBackward should have comment or be unexported (golint)
    • Line 2118: warning: exported function AtgCumprodOut should have comment or be unexported (golint)
    • Line 2123: warning: exported function AtgCumsum should have comment or be unexported (golint)
    • Line 2128: warning: exported function AtgCumsumOut should have comment or be unexported (golint)
    • Line 2133: warning: exported function AtgData should have comment or be unexported (golint)
    • Line 2136: warning: exported function AtgDeg2rad should have comment or be unexported (golint)
    • Line 2139: warning: exported function AtgDeg2rad_ should have comment or be unexported (golint)
    • Line 2139: warning: don't use underscores in Go names; func AtgDeg2rad_ should be AtgDeg2rad (golint)
    • Line 2142: warning: exported function AtgDeg2radOut should have comment or be unexported (golint)
    • Line 2145: warning: exported function AtgDequantize should have comment or be unexported (golint)
    • Line 2149: warning: exported function AtgDet should have comment or be unexported (golint)
    • Line 2152: warning: exported function AtgDetach should have comment or be unexported (golint)
    • Line 2155: warning: exported function AtgDetach_ should have comment or be unexported (golint)
    • Line 2155: warning: don't use underscores in Go names; func AtgDetach_ should be AtgDetach (golint)
    • Line 2158: warning: exported function AtgDiag should have comment or be unexported (golint)
    • Line 2162: warning: exported function AtgDiagBackward should have comment or be unexported (golint)
    • Line 2168: warning: exported function AtgDiagEmbed should have comment or be unexported (golint)
    • Line 2174: warning: exported function AtgDiagOut should have comment or be unexported (golint)
    • Line 2178: warning: exported function AtgDiagflat should have comment or be unexported (golint)
    • Line 2182: warning: exported function AtgDiagonal should have comment or be unexported (golint)
    • Line 2188: warning: exported function AtgDiagonalBackward should have comment or be unexported (golint)
    • Line 2196: warning: exported function AtgDigamma should have comment or be unexported (golint)
    • Line 2199: warning: exported function AtgDigamma_ should have comment or be unexported (golint)
    • Line 2199: warning: don't use underscores in Go names; func AtgDigamma_ should be AtgDigamma (golint)
    • Line 2202: warning: exported function AtgDigammaOut should have comment or be unexported (golint)
    • Line 2205: warning: exported function AtgDist should have comment or be unexported (golint)
    • Line 2208: warning: exported function AtgDiv should have comment or be unexported (golint)
    • Line 2211: warning: exported function AtgDiv1 should have comment or be unexported (golint)
    • Line 2214: warning: exported function AtgDiv_ should have comment or be unexported (golint)
    • Line 2214: warning: don't use underscores in Go names; func AtgDiv_ should be AtgDiv (golint)
    • Line 2217: warning: exported function AtgDiv1_ should have comment or be unexported (golint)
    • Line 2217: warning: don't use underscores in Go names; func AtgDiv1_ should be AtgDiv1 (golint)
    • Line 2220: warning: exported function AtgDivOut should have comment or be unexported (golint)
    • Line 2223: warning: exported function AtgDivide should have comment or be unexported (golint)
    • Line 2226: warning: exported function AtgDivide1 should have comment or be unexported (golint)
    • Line 2229: warning: exported function AtgDivide_ should have comment or be unexported (golint)
    • Line 2229: warning: don't use underscores in Go names; func AtgDivide_ should be AtgDivide (golint)
    • Line 2232: warning: exported function AtgDivide1_ should have comment or be unexported (golint)
    • Line 2232: warning: don't use underscores in Go names; func AtgDivide1_ should be AtgDivide1 (golint)
    • Line 2235: warning: exported function AtgDivideOut should have comment or be unexported (golint)
    • Line 2238: warning: exported function AtgDot should have comment or be unexported (golint)
    • Line 2241: warning: exported function AtgDotOut should have comment or be unexported (golint)
    • Line 2244: warning: exported function AtgDropout should have comment or be unexported (golint)
    • Line 2249: warning: exported function AtgDropout_ should have comment or be unexported (golint)
    • Line 2249: warning: don't use underscores in Go names; func AtgDropout_ should be AtgDropout (golint)
    • Line 2254: warning: exported function AtgDstack should have comment or be unexported (golint)
    • Line 2259: warning: exported function AtgDstackOut should have comment or be unexported (golint)
    • Line 2264: warning: exported function AtgEig should have comment or be unexported (golint)
    • Line 2268: warning: exported function AtgEigOut should have comment or be unexported (golint)
    • Line 2272: warning: exported function AtgEinsum should have comment or be unexported (golint)
    • Line 2280: warning: exported function AtgElu should have comment or be unexported (golint)
    • Line 2283: warning: exported function AtgElu_ should have comment or be unexported (golint)
    • Line 2283: warning: don't use underscores in Go names; func AtgElu_ should be AtgElu (golint)
    • Line 2286: warning: exported function AtgEluBackward should have comment or be unexported (golint)
    • Line 2289: warning: exported function AtgEluBackwardOut should have comment or be unexported (golint)
    • Line 2292: warning: exported function AtgEluOut should have comment or be unexported (golint)
    • Line 2295: warning: exported function AtgEmbedding should have comment or be unexported (golint)
    • Line 2301: warning: exported function AtgEmbeddingBackward should have comment or be unexported (golint)
    • Line 2308: warning: exported function AtgEmbeddingBag should have comment or be unexported (golint)
    • Line 2315: warning: exported function AtgEmbeddingDenseBackward should have comment or be unexported (golint)
    • Line 2321: warning: exported function AtgEmbeddingRenorm_ should have comment or be unexported (golint)
    • Line 2321: warning: don't use underscores in Go names; func AtgEmbeddingRenorm_ should be AtgEmbeddingRenorm (golint)
    • Line 2326: warning: exported function AtgEmbeddingSparseBackward should have comment or be unexported (golint)
    • Line 2332: warning: exported function AtgEmpty should have comment or be unexported (golint)
    • Line 2339: warning: exported function AtgEmptyLike should have comment or be unexported (golint)
    • Line 2342: warning: exported function AtgEmptyMeta should have comment or be unexported (golint)
    • Line 2349: warning: exported function AtgEmptyOut should have comment or be unexported (golint)
    • Line 2354: warning: exported function AtgEmptyQuantized should have comment or be unexported (golint)
    • Line 2359: warning: exported function AtgEmptyStrided should have comment or be unexported (golint)
    • Line 2368: warning: exported function AtgEq should have comment or be unexported (golint)
    • Line 2371: warning: exported function AtgEq1 should have comment or be unexported (golint)
    • Line 2374: warning: exported function AtgEq_ should have comment or be unexported (golint)
    • Line 2374: warning: don't use underscores in Go names; func AtgEq_ should be AtgEq (golint)
    • Line 2377: warning: exported function AtgEq1_ should have comment or be unexported (golint)
    • Line 2377: warning: don't use underscores in Go names; func AtgEq1_ should be AtgEq1 (golint)
    • Line 2380: warning: exported function AtgEqOut should have comment or be unexported (golint)
    • Line 2383: warning: exported function AtgEqOut1 should have comment or be unexported (golint)
    • Line 2386: warning: exported function AtgErf should have comment or be unexported (golint)
    • Line 2389: warning: exported function AtgErf_ should have comment or be unexported (golint)
    • Line 2389: warning: don't use underscores in Go names; func AtgErf_ should be AtgErf (golint)
    • Line 2392: warning: exported function AtgErfOut should have comment or be unexported (golint)
    • Line 2395: warning: exported function AtgErfc should have comment or be unexported (golint)
    • Line 2398: warning: exported function AtgErfc_ should have comment or be unexported (golint)
    • Line 2398: warning: don't use underscores in Go names; func AtgErfc_ should be AtgErfc (golint)
    • Line 2401: warning: exported function AtgErfcOut should have comment or be unexported (golint)
    • Line 2404: warning: exported function AtgErfinv should have comment or be unexported (golint)
    • Line 2407: warning: exported function AtgErfinv_ should have comment or be unexported (golint)
    • Line 2407: warning: don't use underscores in Go names; func AtgErfinv_ should be AtgErfinv (golint)
    • Line 2410: warning: exported function AtgErfinvOut should have comment or be unexported (golint)
    • Line 2413: warning: exported function AtgExp should have comment or be unexported (golint)
    • Line 2416: warning: exported function AtgExp2 should have comment or be unexported (golint)
    • Line 2419: warning: exported function AtgExp2_ should have comment or be unexported (golint)
    • Line 2419: warning: don't use underscores in Go names; func AtgExp2_ should be AtgExp2 (golint)
    • Line 2422: warning: exported function AtgExp2Out should have comment or be unexported (golint)
    • Line 2425: warning: exported function AtgExp_ should have comment or be unexported (golint)
    • Line 2425: warning: don't use underscores in Go names; func AtgExp_ should be AtgExp (golint)
    • Line 2428: warning: exported function AtgExpOut should have comment or be unexported (golint)
    • Line 2431: warning: exported function AtgExpand should have comment or be unexported (golint)
    • Line 2437: warning: exported function AtgExpandAs should have comment or be unexported (golint)
    • Line 2440: warning: exported function AtgExpm1 should have comment or be unexported (golint)
    • Line 2443: warning: exported function AtgExpm1_ should have comment or be unexported (golint)
    • Line 2443: warning: don't use underscores in Go names; func AtgExpm1_ should be AtgExpm1 (golint)
    • Line 2446: warning: exported function AtgExpm1Out should have comment or be unexported (golint)
    • Line 2449: warning: exported function AtgExponential_ should have comment or be unexported (golint)
    • Line 2449: warning: don't use underscores in Go names; func AtgExponential_ should be AtgExponential (golint)
    • Line 2453: warning: exported function AtgEye should have comment or be unexported (golint)
    • Line 2459: warning: exported function AtgEye1 should have comment or be unexported (golint)
    • Line 2466: warning: exported function AtgEyeOut should have comment or be unexported (golint)
    • Line 2470: warning: exported function AtgEyeOut1 should have comment or be unexported (golint)
    • Line 2475: warning: exported function AtgFakeQuantizePerChannelAffine should have comment or be unexported (golint)
    • Line 2481: warning: exported function AtgFakeQuantizePerChannelAffineBackward should have comment or be unexported (golint)
    • Line 2487: warning: exported function AtgFakeQuantizePerTensorAffine should have comment or be unexported (golint)
    • Line 2494: warning: exported function AtgFakeQuantizePerTensorAffineBackward should have comment or be unexported (golint)
    • Line 2501: warning: exported function AtgFbgemmLinearFp16Weight should have comment or be unexported (golint)
    • Line 2504: warning: exported function AtgFbgemmLinearFp16WeightFp32Activation should have comment or be unexported (golint)
    • Line 2507: warning: exported function AtgFbgemmLinearInt8Weight should have comment or be unexported (golint)
    • Line 2510: warning: exported function AtgFbgemmLinearInt8WeightFp32Activation should have comment or be unexported (golint)
    • Line 2513: warning: exported function AtgFbgemmPackGemmMatrixFp16 should have comment or be unexported (golint)
    • Line 2516: warning: exported function AtgFbgemmPackQuantizedMatrix should have comment or be unexported (golint)
    • Line 2519: warning: exported function AtgFbgemmPackQuantizedMatrix1 should have comment or be unexported (golint)
    • Line 2524: warning: exported function AtgFeatureAlphaDropout should have comment or be unexported (golint)
    • Line 2529: warning: exported function AtgFeatureAlphaDropout_ should have comment or be unexported (golint)
    • Line 2529: warning: don't use underscores in Go names; func AtgFeatureAlphaDropout_ should be AtgFeatureAlphaDropout (golint)
    • Line 2534: warning: exported function AtgFeatureDropout should have comment or be unexported (golint)
    • Line 2539: warning: exported function AtgFeatureDropout_ should have comment or be unexported (golint)
    • Line 2539: warning: don't use underscores in Go names; func AtgFeatureDropout_ should be AtgFeatureDropout (golint)
    • Line 2544: warning: exported function AtgFft should have comment or be unexported (golint)
    • Line 2549: warning: exported function AtgFftFft should have comment or be unexported (golint)
    • Line 2558: warning: exported function AtgFftFftn should have comment or be unexported (golint)
    • Line 2568: warning: exported function AtgFftHfft should have comment or be unexported (golint)
    • Line 2577: warning: exported function AtgFftIfft should have comment or be unexported (golint)
    • Line 2586: warning: exported function AtgFftIfftn should have comment or be unexported (golint)
    • Line 2596: warning: exported function AtgFftIhfft should have comment or be unexported (golint)
    • Line 2605: warning: exported function AtgFftIrfft should have comment or be unexported (golint)
    • Line 2614: warning: exported function AtgFftIrfftn should have comment or be unexported (golint)
    • Line 2624: warning: exported function AtgFftRfft should have comment or be unexported (golint)
    • Line 2633: warning: exported function AtgFftRfftn should have comment or be unexported (golint)
    • Line 2643: warning: exported function AtgFill_ should have comment or be unexported (golint)
    • Line 2643: warning: don't use underscores in Go names; func AtgFill_ should be AtgFill (golint)
    • Line 2646: warning: exported function AtgFill1_ should have comment or be unexported (golint)
    • Line 2646: warning: don't use underscores in Go names; func AtgFill1_ should be AtgFill1 (golint)
    • Line 2649: warning: exported function AtgFillDiagonal_ should have comment or be unexported (golint)
    • Line 2649: warning: don't use underscores in Go names; func AtgFillDiagonal_ should be AtgFillDiagonal (golint)
    • Line 2653: warning: exported function AtgFix should have comment or be unexported (golint)
    • Line 2656: warning: exported function AtgFix_ should have comment or be unexported (golint)
    • Line 2656: warning: don't use underscores in Go names; func AtgFix_ should be AtgFix (golint)
    • Line 2659: warning: exported function AtgFixOut should have comment or be unexported (golint)
    • Line 2662: warning: exported function AtgFlatten should have comment or be unexported (golint)
    • Line 2667: warning: exported function AtgFlip should have comment or be unexported (golint)
    • Line 2672: warning: exported function AtgFliplr should have comment or be unexported (golint)
    • Line 2675: warning: exported function AtgFlipud should have comment or be unexported (golint)
    • Line 2678: warning: exported function AtgFloor should have comment or be unexported (golint)
    • Line 2681: warning: exported function AtgFloor_ should have comment or be unexported (golint)
    • Line 2681: warning: don't use underscores in Go names; func AtgFloor_ should be AtgFloor (golint)
    • Line 2684: warning: exported function AtgFloorDivide should have comment or be unexported (golint)
    • Line 2687: warning: exported function AtgFloorDivide1 should have comment or be unexported (golint)
    • Line 2690: warning: exported function AtgFloorDivide_ should have comment or be unexported (golint)
    • Line 2690: warning: don't use underscores in Go names; func AtgFloorDivide_ should be AtgFloorDivide (golint)
    • Line 2693: warning: exported function AtgFloorDivide1_ should have comment or be unexported (golint)
    • Line 2693: warning: don't use underscores in Go names; func AtgFloorDivide1_ should be AtgFloorDivide1 (golint)
    • Line 2696: warning: exported function AtgFloorDivideOut should have comment or be unexported (golint)
    • Line 2699: warning: exported function AtgFloorOut should have comment or be unexported (golint)
    • Line 2702: warning: exported function AtgFmod should have comment or be unexported (golint)
    • Line 2705: warning: exported function AtgFmod1 should have comment or be unexported (golint)
    • Line 2708: warning: exported function AtgFmod_ should have comment or be unexported (golint)
    • Line 2708: warning: don't use underscores in Go names; func AtgFmod_ should be AtgFmod (golint)
    • Line 2711: warning: exported function AtgFmod1_ should have comment or be unexported (golint)
    • Line 2711: warning: don't use underscores in Go names; func AtgFmod1_ should be AtgFmod1 (golint)
    • Line 2714: warning: exported function AtgFmodOut should have comment or be unexported (golint)
    • Line 2717: warning: exported function AtgFmodOut1 should have comment or be unexported (golint)
    • Line 2720: warning: exported function AtgFrac should have comment or be unexported (golint)
    • Line 2723: warning: exported function AtgFrac_ should have comment or be unexported (golint)
    • Line 2723: warning: don't use underscores in Go names; func AtgFrac_ should be AtgFrac (golint)
    • Line 2726: warning: exported function AtgFracOut should have comment or be unexported (golint)
    • Line 2729: warning: exported function AtgFractionalMaxPool2d should have comment or be unexported (golint)
    • Line 2736: warning: exported function AtgFractionalMaxPool2dBackward should have comment or be unexported (golint)
    • Line 2743: warning: exported function AtgFractionalMaxPool2dBackwardOut should have comment or be unexported (golint)
    • Line 2750: warning: exported function AtgFractionalMaxPool2dOut should have comment or be unexported (golint)
    • Line 2757: warning: exported function AtgFractionalMaxPool3d should have comment or be unexported (golint)
    • Line 2764: warning: exported function AtgFractionalMaxPool3dBackward should have comment or be unexported (golint)
    • Line 2771: warning: exported function AtgFractionalMaxPool3dBackwardOut should have comment or be unexported (golint)
    • Line 2778: warning: exported function AtgFractionalMaxPool3dOut should have comment or be unexported (golint)
    • Line 2785: warning: exported function AtgFrobeniusNorm should have comment or be unexported (golint)
    • Line 2788: warning: exported function AtgFrobeniusNorm1 should have comment or be unexported (golint)
    • Line 2794: warning: exported function AtgFrobeniusNormOut should have comment or be unexported (golint)
    • Line 2800: warning: exported function AtgFromFile should have comment or be unexported (golint)
    • Line 2811: warning: exported function AtgFull should have comment or be unexported (golint)
    • Line 2818: warning: exported function AtgFullLike should have comment or be unexported (golint)
    • Line 2821: warning: exported function AtgFullOut should have comment or be unexported (golint)
    • Line 2826: warning: exported function AtgGather should have comment or be unexported (golint)
    • Line 2831: warning: exported function AtgGatherBackward should have comment or be unexported (golint)
    • Line 2836: warning: exported function AtgGatherOut should have comment or be unexported (golint)
    • Line 2841: warning: exported function AtgGcd should have comment or be unexported (golint)
    • Line 2844: warning: exported function AtgGcd_ should have comment or be unexported (golint)
    • Line 2844: warning: don't use underscores in Go names; func AtgGcd_ should be AtgGcd (golint)
    • Line 2847: warning: exported function AtgGcdOut should have comment or be unexported (golint)
    • Line 2850: warning: exported function AtgGe should have comment or be unexported (golint)
    • Line 2853: warning: exported function AtgGe1 should have comment or be unexported (golint)
    • Line 2856: warning: exported function AtgGe_ should have comment or be unexported (golint)
    • Line 2856: warning: don't use underscores in Go names; func AtgGe_ should be AtgGe (golint)
    • Line 2859: warning: exported function AtgGe1_ should have comment or be unexported (golint)
    • Line 2859: warning: don't use underscores in Go names; func AtgGe1_ should be AtgGe1 (golint)
    • Line 2862: warning: exported function AtgGeOut should have comment or be unexported (golint)
    • Line 2865: warning: exported function AtgGeOut1 should have comment or be unexported (golint)
    • Line 2868: warning: exported function AtgGelu should have comment or be unexported (golint)
    • Line 2871: warning: exported function AtgGeluBackward should have comment or be unexported (golint)
    • Line 2874: warning: exported function AtgGeometric_ should have comment or be unexported (golint)
    • Line 2874: warning: don't use underscores in Go names; func AtgGeometric_ should be AtgGeometric (golint)
    • Line 2878: warning: exported function AtgGeqrf should have comment or be unexported (golint)
    • Line 2881: warning: exported function AtgGeqrfOut should have comment or be unexported (golint)
    • Line 2884: warning: exported function AtgGer should have comment or be unexported (golint)
    • Line 2887: warning: exported function AtgGerOut should have comment or be unexported (golint)
    • Line 2890: warning: exported function AtgGlu should have comment or be unexported (golint)
    • Line 2894: warning: exported function AtgGluBackward should have comment or be unexported (golint)
    • Line 2898: warning: exported function AtgGluBackwardOut should have comment or be unexported (golint)
    • Line 2902: warning: exported function AtgGluOut should have comment or be unexported (golint)
    • Line 2906: warning: exported function AtgGrad should have comment or be unexported (golint)
    • Line 2909: warning: exported function AtgGreater should have comment or be unexported (golint)
    • Line 2912: warning: exported function AtgGreater1 should have comment or be unexported (golint)
    • Line 2915: warning: exported function AtgGreater_ should have comment or be unexported (golint)
    • Line 2915: warning: don't use underscores in Go names; func AtgGreater_ should be AtgGreater (golint)
    • Line 2918: warning: exported function AtgGreater1_ should have comment or be unexported (golint)
    • Line 2918: warning: don't use underscores in Go names; func AtgGreater1_ should be AtgGreater1 (golint)
    • Line 2921: warning: exported function AtgGreaterEqual should have comment or be unexported (golint)
    • Line 2924: warning: exported function AtgGreaterEqual1 should have comment or be unexported (golint)
    • Line 2927: warning: exported function AtgGreaterEqual_ should have comment or be unexported (golint)
    • Line 2927: warning: don't use underscores in Go names; func AtgGreaterEqual_ should be AtgGreaterEqual (golint)
    • Line 2930: warning: exported function AtgGreaterEqual1_ should have comment or be unexported (golint)
    • Line 2930: warning: don't use underscores in Go names; func AtgGreaterEqual1_ should be AtgGreaterEqual1 (golint)
    • Line 2933: warning: exported function AtgGreaterEqualOut should have comment or be unexported (golint)
    • Line 2936: warning: exported function AtgGreaterEqualOut1 should have comment or be unexported (golint)
    • Line 2939: warning: exported function AtgGreaterOut should have comment or be unexported (golint)
    • Line 2942: warning: exported function AtgGreaterOut1 should have comment or be unexported (golint)
    • Line 2945: warning: exported function AtgGridSampler should have comment or be unexported (golint)
    • Line 2951: warning: exported function AtgGridSampler2d should have comment or be unexported (golint)
    • Line 2957: warning: exported function AtgGridSampler2dBackward should have comment or be unexported (golint)
    • Line 2963: warning: exported function AtgGridSampler3d should have comment or be unexported (golint)
    • Line 2969: warning: exported function AtgGridSampler3dBackward should have comment or be unexported (golint)
    • Line 2975: warning: exported function AtgGroupNorm should have comment or be unexported (golint)
    • Line 2981: warning: exported function AtgGru should have comment or be unexported (golint)
    • Line 2992: warning: exported function AtgGru1 should have comment or be unexported (golint)
    • Line 3002: warning: exported function AtgGruCell should have comment or be unexported (golint)
    • Line 3005: warning: exported function AtgGt should have comment or be unexported (golint)
    • Line 3008: warning: exported function AtgGt1 should have comment or be unexported (golint)
    • Line 3011: warning: exported function AtgGt_ should have comment or be unexported (golint)
    • Line 3011: warning: don't use underscores in Go names; func AtgGt_ should be AtgGt (golint)
    • Line 3014: warning: exported function AtgGt1_ should have comment or be unexported (golint)
    • Line 3014: warning: don't use underscores in Go names; func AtgGt1_ should be AtgGt1 (golint)
    • Line 3017: warning: exported function AtgGtOut should have comment or be unexported (golint)
    • Line 3020: warning: exported function AtgGtOut1 should have comment or be unexported (golint)
    • Line 3023: warning: exported function AtgHammingWindow should have comment or be unexported (golint)
    • Line 3029: warning: exported function AtgHammingWindow1 should have comment or be unexported (golint)
    • Line 3036: warning: exported function AtgHammingWindow2 should have comment or be unexported (golint)
    • Line 3044: warning: exported function AtgHammingWindow3 should have comment or be unexported (golint)
    • Line 3053: warning: exported function AtgHannWindow should have comment or be unexported (golint)
    • Line 3059: warning: exported function AtgHannWindow1 should have comment or be unexported (golint)
    • Line 3066: warning: exported function AtgHardshrink should have comment or be unexported (golint)
    • Line 3069: warning: exported function AtgHardshrinkBackward should have comment or be unexported (golint)
    • Line 3072: warning: exported function AtgHardsigmoid should have comment or be unexported (golint)
    • Line 3075: warning: exported function AtgHardsigmoid_ should have comment or be unexported (golint)
    • Line 3075: warning: don't use underscores in Go names; func AtgHardsigmoid_ should be AtgHardsigmoid (golint)
    • Line 3078: warning: exported function AtgHardsigmoidBackward should have comment or be unexported (golint)
    • Line 3081: warning: exported function AtgHardsigmoidOut should have comment or be unexported (golint)
    • Line 3084: warning: exported function AtgHardswish should have comment or be unexported (golint)
    • Line 3087: warning: exported function AtgHardswish_ should have comment or be unexported (golint)
    • Line 3087: warning: don't use underscores in Go names; func AtgHardswish_ should be AtgHardswish (golint)
    • Line 3090: warning: exported function AtgHardswishBackward should have comment or be unexported (golint)
    • Line 3093: warning: exported function AtgHardswishOut should have comment or be unexported (golint)
    • Line 3096: warning: exported function AtgHardtanh should have comment or be unexported (golint)
    • Line 3099: warning: exported function AtgHardtanh_ should have comment or be unexported (golint)
    • Line 3099: warning: don't use underscores in Go names; func AtgHardtanh_ should be AtgHardtanh (golint)
    • Line 3102: warning: exported function AtgHardtanhBackward should have comment or be unexported (golint)
    • Line 3105: warning: exported function AtgHardtanhBackwardOut should have comment or be unexported (golint)
    • Line 3108: warning: exported function AtgHardtanhOut should have comment or be unexported (golint)
    • Line 3111: warning: exported function AtgHeaviside should have comment or be unexported (golint)
    • Line 3114: warning: exported function AtgHeaviside_ should have comment or be unexported (golint)
    • Line 3114: warning: don't use underscores in Go names; func AtgHeaviside_ should be AtgHeaviside (golint)
    • Line 3117: warning: exported function AtgHeavisideOut should have comment or be unexported (golint)
    • Line 3120: warning: exported function AtgHingeEmbeddingLoss should have comment or be unexported (golint)
    • Line 3125: warning: exported function AtgHistc should have comment or be unexported (golint)
    • Line 3129: warning: exported function AtgHistcOut should have comment or be unexported (golint)
    • Line 3133: warning: exported function AtgHspmm should have comment or be unexported (golint)
    • Line 3136: warning: exported function AtgHspmmOut should have comment or be unexported (golint)
    • Line 3139: warning: exported function AtgHstack should have comment or be unexported (golint)
    • Line 3144: warning: exported function AtgHstackOut should have comment or be unexported (golint)
    • Line 3149: warning: exported function AtgHypot should have comment or be unexported (golint)
    • Line 3152: warning: exported function AtgHypot_ should have comment or be unexported (golint)
    • Line 3152: warning: don't use underscores in Go names; func AtgHypot_ should be AtgHypot (golint)
    • Line 3155: warning: exported function AtgHypotOut should have comment or be unexported (golint)
    • Line 3158: warning: exported function AtgI0 should have comment or be unexported (golint)
    • Line 3161: warning: exported function AtgI0_ should have comment or be unexported (golint)
    • Line 3161: warning: don't use underscores in Go names; func AtgI0_ should be AtgI0 (golint)
    • Line 3164: warning: exported function AtgI0Out should have comment or be unexported (golint)
    • Line 3167: warning: exported function AtgIfft should have comment or be unexported (golint)
    • Line 3172: warning: exported function AtgIm2col should have comment or be unexported (golint)
    • Line 3183: warning: exported function AtgIm2colBackward should have comment or be unexported (golint)
    • Line 3196: warning: exported function AtgIm2colBackwardOut should have comment or be unexported (golint)
    • Line 3209: warning: exported function AtgIm2colOut should have comment or be unexported (golint)
    • Line 3220: warning: exported function AtgImag should have comment or be unexported (golint)
    • Line 3223: warning: exported function AtgIndex should have comment or be unexported (golint)
    • Line 3228: warning: exported function AtgIndexAdd should have comment or be unexported (golint)
    • Line 3232: warning: exported function AtgIndexAdd_ should have comment or be unexported (golint)
    • Line 3232: warning: don't use underscores in Go names; func AtgIndexAdd_ should be AtgIndexAdd (golint)
    • Line 3236: warning: exported function AtgIndexCopy should have comment or be unexported (golint)
    • Line 3240: warning: exported function AtgIndexCopy_ should have comment or be unexported (golint)
    • Line 3240: warning: don't use underscores in Go names; func AtgIndexCopy_ should be AtgIndexCopy (golint)
    • Line 3244: warning: exported function AtgIndexFill should have comment or be unexported (golint)
    • Line 3248: warning: exported function AtgIndexFill1 should have comment or be unexported (golint)
    • Line 3252: warning: exported function AtgIndexFill_ should have comment or be unexported (golint)
    • Line 3252: warning: don't use underscores in Go names; func AtgIndexFill_ should be AtgIndexFill (golint)
    • Line 3256: warning: exported function AtgIndexFill1_ should have comment or be unexported (golint)
    • Line 3256: warning: don't use underscores in Go names; func AtgIndexFill1_ should be AtgIndexFill1 (golint)
    • Line 3260: warning: exported function AtgIndexPut should have comment or be unexported (golint)
    • Line 3266: warning: exported function AtgIndexPut_ should have comment or be unexported (golint)
    • Line 3266: warning: don't use underscores in Go names; func AtgIndexPut_ should be AtgIndexPut (golint)
    • Line 3272: warning: exported function AtgIndexSelect should have comment or be unexported (golint)
    • Line 3276: warning: exported function AtgIndexSelectBackward should have comment or be unexported (golint)
    • Line 3282: warning: exported function AtgIndexSelectOut should have comment or be unexported (golint)
    • Line 3286: warning: exported function AtgIndices should have comment or be unexported (golint)
    • Line 3289: warning: exported function AtgInfinitelyDifferentiableGeluBackward should have comment or be unexported (golint)
    • Line 3292: warning: exported function AtgInstanceNorm should have comment or be unexported (golint)
    • Line 3299: warning: exported function AtgIntRepr should have comment or be unexported (golint)
    • Line 3302: warning: exported function AtgInverse should have comment or be unexported (golint)
    • Line 3305: warning: exported function AtgInverseOut should have comment or be unexported (golint)
    • Line 3308: warning: exported function AtgIrfft should have comment or be unexported (golint)
    • Line 3316: warning: exported function AtgIsclose should have comment or be unexported (golint)
    • Line 3322: warning: exported function AtgIsfinite should have comment or be unexported (golint)
    • Line 3325: warning: exported function AtgIsinf should have comment or be unexported (golint)
    • Line 3328: warning: exported function AtgIsnan should have comment or be unexported (golint)
    • Line 3331: warning: exported function AtgIsneginf should have comment or be unexported (golint)
    • Line 3334: warning: exported function AtgIsneginfOut should have comment or be unexported (golint)
    • Line 3337: warning: exported function AtgIsposinf should have comment or be unexported (golint)
    • Line 3340: warning: exported function AtgIsposinfOut should have comment or be unexported (golint)
    • Line 3343: warning: exported function AtgIsreal should have comment or be unexported (golint)
    • Line 3346: warning: exported function AtgIstft should have comment or be unexported (golint)
    • Line 3360: warning: exported function AtgKaiserWindow should have comment or be unexported (golint)
    • Line 3366: warning: exported function AtgKaiserWindow1 should have comment or be unexported (golint)
    • Line 3373: warning: exported function AtgKaiserWindow2 should have comment or be unexported (golint)
    • Line 3381: warning: exported function AtgKlDiv should have comment or be unexported (golint)
    • Line 3386: warning: exported function AtgKlDivBackward should have comment or be unexported (golint)
    • Line 3391: warning: exported function AtgKthvalue should have comment or be unexported (golint)
    • Line 3397: warning: exported function AtgKthvalueOut should have comment or be unexported (golint)
    • Line 3403: warning: exported function AtgL1Loss should have comment or be unexported (golint)
    • Line 3407: warning: exported function AtgL1LossBackward should have comment or be unexported (golint)
    • Line 3411: warning: exported function AtgL1LossBackwardOut should have comment or be unexported (golint)
    • Line 3415: warning: exported function AtgL1LossOut should have comment or be unexported (golint)
    • Line 3419: warning: exported function AtgLayerNorm should have comment or be unexported (golint)
    • Line 3426: warning: exported function AtgLcm should have comment or be unexported (golint)
    • Line 3429: warning: exported function AtgLcm_ should have comment or be unexported (golint)
    • Line 3429: warning: don't use underscores in Go names; func AtgLcm_ should be AtgLcm (golint)
    • Line 3432: warning: exported function AtgLcmOut should have comment or be unexported (golint)
    • Line 3435: warning: exported function AtgLe should have comment or be unexported (golint)
    • Line 3438: warning: exported function AtgLe1 should have comment or be unexported (golint)
    • Line 3441: warning: exported function AtgLe_ should have comment or be unexported (golint)
    • Line 3441: warning: don't use underscores in Go names; func AtgLe_ should be AtgLe (golint)
    • Line 3444: warning: exported function AtgLe1_ should have comment or be unexported (golint)
    • Line 3444: warning: don't use underscores in Go names; func AtgLe1_ should be AtgLe1 (golint)
    • Line 3447: warning: exported function AtgLeOut should have comment or be unexported (golint)
    • Line 3450: warning: exported function AtgLeOut1 should have comment or be unexported (golint)
    • Line 3453: warning: exported function AtgLeakyRelu should have comment or be unexported (golint)
    • Line 3456: warning: exported function AtgLeakyRelu_ should have comment or be unexported (golint)
    • Line 3456: warning: don't use underscores in Go names; func AtgLeakyRelu_ should be AtgLeakyRelu (golint)
    • Line 3459: warning: exported function AtgLeakyReluBackward should have comment or be unexported (golint)
    • Line 3463: warning: exported function AtgLeakyReluOut should have comment or be unexported (golint)
    • Line 3466: warning: exported function AtgLerp should have comment or be unexported (golint)
    • Line 3469: warning: exported function AtgLerp1 should have comment or be unexported (golint)
    • Line 3472: warning: exported function AtgLerp_ should have comment or be unexported (golint)
    • Line 3472: warning: don't use underscores in Go names; func AtgLerp_ should be AtgLerp (golint)
    • Line 3475: warning: exported function AtgLerp1_ should have comment or be unexported (golint)
    • Line 3475: warning: don't use underscores in Go names; func AtgLerp1_ should be AtgLerp1 (golint)
    • Line 3478: warning: exported function AtgLerpOut should have comment or be unexported (golint)
    • Line 3481: warning: exported function AtgLerpOut1 should have comment or be unexported (golint)
    • Line 3484: warning: exported function AtgLess should have comment or be unexported (golint)
    • Line 3487: warning: exported function AtgLess1 should have comment or be unexported (golint)
    • Line 3490: warning: exported function AtgLess_ should have comment or be unexported (golint)
    • Line 3490: warning: don't use underscores in Go names; func AtgLess_ should be AtgLess (golint)
    • Line 3493: warning: exported function AtgLess1_ should have comment or be unexported (golint)
    • Line 3493: warning: don't use underscores in Go names; func AtgLess1_ should be AtgLess1 (golint)
    • Line 3496: warning: exported function AtgLessEqual should have comment or be unexported (golint)
    • Line 3499: warning: exported function AtgLessEqual1 should have comment or be unexported (golint)
    • Line 3502: warning: exported function AtgLessEqual_ should have comment or be unexported (golint)
    • Line 3502: warning: don't use underscores in Go names; func AtgLessEqual_ should be AtgLessEqual (golint)
    • Line 3505: warning: exported function AtgLessEqual1_ should have comment or be unexported (golint)
    • Line 3505: warning: don't use underscores in Go names; func AtgLessEqual1_ should be AtgLessEqual1 (golint)
    • Line 3508: warning: exported function AtgLessEqualOut should have comment or be unexported (golint)
    • Line 3511: warning: exported function AtgLessEqualOut1 should have comment or be unexported (golint)
    • Line 3514: warning: exported function AtgLessOut should have comment or be unexported (golint)
    • Line 3517: warning: exported function AtgLessOut1 should have comment or be unexported (golint)
    • Line 3520: warning: exported function AtgLgamma should have comment or be unexported (golint)
    • Line 3523: warning: exported function AtgLgamma_ should have comment or be unexported (golint)
    • Line 3523: warning: don't use underscores in Go names; func AtgLgamma_ should be AtgLgamma (golint)
    • Line 3526: warning: exported function AtgLgammaOut should have comment or be unexported (golint)
    • Line 3529: warning: exported function AtgLinalgDet should have comment or be unexported (golint)
    • Line 3532: warning: exported function AtgLinalgNorm should have comment or be unexported (golint)
    • Line 3539: warning: exported function AtgLinalgNorm1 should have comment or be unexported (golint)
    • Line 3549: warning: exported function AtgLinalgNormOut should have comment or be unexported (golint)
    • Line 3556: warning: exported function AtgLinalgNormOut1 should have comment or be unexported (golint)
    • Line 3566: warning: exported function AtgLinear should have comment or be unexported (golint)
    • Line 3569: warning: exported function AtgLinspace should have comment or be unexported (golint)
    • Line 3576: warning: exported function AtgLinspaceOut should have comment or be unexported (golint)
    • Line 3581: warning: exported function AtgLog should have comment or be unexported (golint)
    • Line 3584: warning: exported function AtgLog10 should have comment or be unexported (golint)
    • Line 3587: warning: exported function AtgLog10_ should have comment or be unexported (golint)
    • Line 3587: warning: don't use underscores in Go names; func AtgLog10_ should be AtgLog10 (golint)
    • Line 3590: warning: exported function AtgLog10Out should have comment or be unexported (golint)
    • Line 3593: warning: exported function AtgLog1p should have comment or be unexported (golint)
    • Line 3596: warning: exported function AtgLog1p_ should have comment or be unexported (golint)
    • Line 3596: warning: don't use underscores in Go names; func AtgLog1p_ should be AtgLog1p (golint)
    • Line 3599: warning: exported function AtgLog1pOut should have comment or be unexported (golint)
    • Line 3602: warning: exported function AtgLog2 should have comment or be unexported (golint)
    • Line 3605: warning: exported function AtgLog2_ should have comment or be unexported (golint)
    • Line 3605: warning: don't use underscores in Go names; func AtgLog2_ should be AtgLog2 (golint)
    • Line 3608: warning: exported function AtgLog2Out should have comment or be unexported (golint)
    • Line 3611: warning: exported function AtgLog_ should have comment or be unexported (golint)
    • Line 3611: warning: don't use underscores in Go names; func AtgLog_ should be AtgLog (golint)
    • Line 3614: warning: exported function AtgLogNormal_ should have comment or be unexported (golint)
    • Line 3614: warning: don't use underscores in Go names; func AtgLogNormal_ should be AtgLogNormal (golint)
    • Line 3619: warning: exported function AtgLogOut should have comment or be unexported (golint)
    • Line 3622: warning: exported function AtgLogSigmoid should have comment or be unexported (golint)
    • Line 3625: warning: exported function AtgLogSigmoidBackward should have comment or be unexported (golint)
    • Line 3628: warning: exported function AtgLogSigmoidBackwardOut should have comment or be unexported (golint)
    • Line 3631: warning: exported function AtgLogSigmoidOut should have comment or be unexported (golint)
    • Line 3634: warning: exported function AtgLogSoftmax should have comment or be unexported (golint)
    • Line 3639: warning: exported function AtgLogaddexp should have comment or be unexported (golint)
    • Line 3642: warning: exported function AtgLogaddexp2 should have comment or be unexported (golint)
    • Line 3645: warning: exported function AtgLogaddexp2Out should have comment or be unexported (golint)
    • Line 3648: warning: exported function AtgLogaddexpOut should have comment or be unexported (golint)
    • Line 3651: warning: exported function AtgLogcumsumexp should have comment or be unexported (golint)
    • Line 3655: warning: exported function AtgLogcumsumexpOut should have comment or be unexported (golint)
    • Line 3659: warning: exported function AtgLogdet should have comment or be unexported (golint)
    • Line 3662: warning: exported function AtgLogicalAnd should have comment or be unexported (golint)
    • Line 3665: warning: exported function AtgLogicalAnd_ should have comment or be unexported (golint)
    • Line 3665: warning: don't use underscores in Go names; func AtgLogicalAnd_ should be AtgLogicalAnd (golint)
    • Line 3668: warning: exported function AtgLogicalAndOut should have comment or be unexported (golint)
    • Line 3671: warning: exported function AtgLogicalNot should have comment or be unexported (golint)
    • Line 3674: warning: exported function AtgLogicalNot_ should have comment or be unexported (golint)
    • Line 3674: warning: don't use underscores in Go names; func AtgLogicalNot_ should be AtgLogicalNot (golint)
    • Line 3677: warning: exported function AtgLogicalNotOut should have comment or be unexported (golint)
    • Line 3680: warning: exported function AtgLogicalOr should have comment or be unexported (golint)
    • Line 3683: warning: exported function AtgLogicalOr_ should have comment or be unexported (golint)
    • Line 3683: warning: don't use underscores in Go names; func AtgLogicalOr_ should be AtgLogicalOr (golint)
    • Line 3686: warning: exported function AtgLogicalOrOut should have comment or be unexported (golint)
    • Line 3689: warning: exported function AtgLogicalXor should have comment or be unexported (golint)
    • Line 3692: warning: exported function AtgLogicalXor_ should have comment or be unexported (golint)
    • Line 3692: warning: don't use underscores in Go names; func AtgLogicalXor_ should be AtgLogicalXor (golint)
    • Line 3695: warning: exported function AtgLogicalXorOut should have comment or be unexported (golint)
    • Line 3698: warning: exported function AtgLogit should have comment or be unexported (golint)
    • Line 3703: warning: exported function AtgLogit_ should have comment or be unexported (golint)
    • Line 3703: warning: don't use underscores in Go names; func AtgLogit_ should be AtgLogit (golint)
    • Line 3708: warning: exported function AtgLogitBackward should have comment or be unexported (golint)
    • Line 3713: warning: exported function AtgLogitBackwardOut should have comment or be unexported (golint)
    • Line 3718: warning: exported function AtgLogitOut should have comment or be unexported (golint)
    • Line 3723: warning: exported function AtgLogspace should have comment or be unexported (golint)
    • Line 3731: warning: exported function AtgLogspaceOut should have comment or be unexported (golint)
    • Line 3737: warning: exported function AtgLogsumexp should have comment or be unexported (golint)
    • Line 3743: warning: exported function AtgLogsumexpOut should have comment or be unexported (golint)
    • Line 3749: warning: exported function AtgLstm should have comment or be unexported (golint)
    • Line 3762: warning: exported function AtgLstm1 should have comment or be unexported (golint)
    • Line 3774: warning: exported function AtgLstmCell should have comment or be unexported (golint)
    • Line 3779: warning: exported function AtgLstsq should have comment or be unexported (golint)
    • Line 3782: warning: exported function AtgLstsqOut should have comment or be unexported (golint)
    • Line 3785: warning: exported function AtgLt should have comment or be unexported (golint)
    • Line 3788: warning: exported function AtgLt1 should have comment or be unexported (golint)
    • Line 3791: warning: exported function AtgLt_ should have comment or be unexported (golint)
    • Line 3791: warning: don't use underscores in Go names; func AtgLt_ should be AtgLt (golint)
    • Line 3794: warning: exported function AtgLt1_ should have comment or be unexported (golint)
    • Line 3794: warning: don't use underscores in Go names; func AtgLt1_ should be AtgLt1 (golint)
    • Line 3797: warning: exported function AtgLtOut should have comment or be unexported (golint)
    • Line 3800: warning: exported function AtgLtOut1 should have comment or be unexported (golint)
    • Line 3803: warning: exported function AtgLuSolve should have comment or be unexported (golint)
    • Line 3806: warning: exported function AtgLuSolveOut should have comment or be unexported (golint)
    • Line 3809: warning: exported function AtgMarginRankingLoss should have comment or be unexported (golint)
    • Line 3814: warning: exported function AtgMaskedFill should have comment or be unexported (golint)
    • Line 3817: warning: exported function AtgMaskedFill1 should have comment or be unexported (golint)
    • Line 3820: warning: exported function AtgMaskedFill_ should have comment or be unexported (golint)
    • Line 3820: warning: don't use underscores in Go names; func AtgMaskedFill_ should be AtgMaskedFill (golint)
    • Line 3823: warning: exported function AtgMaskedFill1_ should have comment or be unexported (golint)
    • Line 3823: warning: don't use underscores in Go names; func AtgMaskedFill1_ should be AtgMaskedFill1 (golint)
    • Line 3826: warning: exported function AtgMaskedScatter should have comment or be unexported (golint)
    • Line 3829: warning: exported function AtgMaskedScatter_ should have comment or be unexported (golint)
    • Line 3829: warning: don't use underscores in Go names; func AtgMaskedScatter_ should be AtgMaskedScatter (golint)
    • Line 3832: warning: exported function AtgMaskedSelect should have comment or be unexported (golint)
    • Line 3835: warning: exported function AtgMaskedSelectBackward should have comment or be unexported (golint)
    • Line 3838: warning: exported function AtgMaskedSelectOut should have comment or be unexported (golint)
    • Line 3841: warning: exported function AtgMatmul should have comment or be unexported (golint)
    • Line 3844: warning: exported function AtgMatmulOut should have comment or be unexported (golint)
    • Line 3847: warning: exported function AtgMatrixExp should have comment or be unexported (golint)
    • Line 3850: warning: exported function AtgMatrixExpBackward should have comment or be unexported (golint)
    • Line 3853: warning: exported function AtgMatrixPower should have comment or be unexported (golint)
    • Line 3857: warning: exported function AtgMatrixRank should have comment or be unexported (golint)
    • Line 3861: warning: exported function AtgMatrixRank1 should have comment or be unexported (golint)
    • Line 3866: warning: exported function AtgMax should have comment or be unexported (golint)
    • Line 3869: warning: exported function AtgMax1 should have comment or be unexported (golint)
    • Line 3872: warning: exported function AtgMax2 should have comment or be unexported (golint)
    • Line 3877: warning: exported function AtgMaxOut should have comment or be unexported (golint)
    • Line 3880: warning: exported function AtgMaxOut1 should have comment or be unexported (golint)
    • Line 3885: warning: exported function AtgMaxPool1d should have comment or be unexported (golint)
    • Line 3897: warning: exported function AtgMaxPool1dWithIndices should have comment or be unexported (golint)
    • Line 3909: warning: exported function AtgMaxPool2d should have comment or be unexported (golint)
    • Line 3921: warning: exported function AtgMaxPool2dWithIndices should have comment or be unexported (golint)
    • Line 3933: warning: exported function AtgMaxPool2dWithIndicesBackward should have comment or be unexported (golint)
    • Line 3945: warning: exported function AtgMaxPool2dWithIndicesBackwardOut should have comment or be unexported (golint)
    • Line 3957: warning: exported function AtgMaxPool2dWithIndicesOut should have comment or be unexported (golint)
    • Line 3969: warning: exported function AtgMaxPool3d should have comment or be unexported (golint)
    • Line 3981: warning: exported function AtgMaxPool3dWithIndices should have comment or be unexported (golint)
    • Line 3993: warning: exported function AtgMaxPool3dWithIndicesBackward should have comment or be unexported (golint)
    • Line 4005: warning: exported function AtgMaxPool3dWithIndicesBackwardOut should have comment or be unexported (golint)
    • Line 4017: warning: exported function AtgMaxPool3dWithIndicesOut should have comment or be unexported (golint)
    • Line 4029: warning: exported function AtgMaxUnpool2d should have comment or be unexported (golint)
    • Line 4034: warning: exported function AtgMaxUnpool2dBackward should have comment or be unexported (golint)
    • Line 4039: warning: exported function AtgMaxUnpool2dBackwardOut should have comment or be unexported (golint)
    • Line 4044: warning: exported function AtgMaxUnpool2dOut should have comment or be unexported (golint)
    • Line 4049: warning: exported function AtgMaxUnpool3d should have comment or be unexported (golint)
    • Line 4058: warning: exported function AtgMaxUnpool3dBackward should have comment or be unexported (golint)
    • Line 4067: warning: exported function AtgMaxUnpool3dBackwardOut should have comment or be unexported (golint)
    • Line 4076: warning: exported function AtgMaxUnpool3dOut should have comment or be unexported (golint)
    • Line 4085: warning: exported function AtgMaximum should have comment or be unexported (golint)
    • Line 4088: warning: exported function AtgMaximumOut should have comment or be unexported (golint)
    • Line 4091: warning: exported function AtgMean should have comment or be unexported (golint)
    • Line 4095: warning: exported function AtgMean1 should have comment or be unexported (golint)
    • Line 4102: warning: exported function AtgMeanOut should have comment or be unexported (golint)
    • Line 4109: warning: exported function AtgMedian should have comment or be unexported (golint)
    • Line 4112: warning: exported function AtgMedian1 should have comment or be unexported (golint)
    • Line 4117: warning: exported function AtgMedianOut should have comment or be unexported (golint)
    • Line 4123: warning: exported function AtgMin should have comment or be unexported (golint)
    • Line 4126: warning: exported function AtgMin1 should have comment or be unexported (golint)
    • Line 4129: warning: exported function AtgMin2 should have comment or be unexported (golint)
    • Line 4134: warning: exported function AtgMinOut should have comment or be unexported (golint)
    • Line 4137: warning: exported function AtgMinOut1 should have comment or be unexported (golint)
    • Line 4142: warning: exported function AtgMinimum should have comment or be unexported (golint)
    • Line 4145: warning: exported function AtgMinimumOut should have comment or be unexported (golint)
    • Line 4148: warning: exported function AtgMiopenBatchNorm should have comment or be unexported (golint)
    • Line 4154: warning: exported function AtgMiopenBatchNormBackward should have comment or be unexported (golint)
    • Line 4158: warning: exported function AtgMiopenConvolution should have comment or be unexported (golint)
    • Line 4170: warning: exported function AtgMiopenConvolutionBackwardBias should have comment or be unexported (golint)
    • Line 4173: warning: exported function AtgMiopenConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 4187: warning: exported function AtgMiopenConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 4201: warning: exported function AtgMiopenConvolutionTranspose should have comment or be unexported (golint)
    • Line 4215: warning: exported function AtgMiopenConvolutionTransposeBackwardInput should have comment or be unexported (golint)
    • Line 4227: warning: exported function AtgMiopenConvolutionTransposeBackwardWeight should have comment or be unexported (golint)
    • Line 4241: warning: exported function AtgMiopenDepthwiseConvolution should have comment or be unexported (golint)
    • Line 4253: warning: exported function AtgMiopenDepthwiseConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 4267: warning: exported function AtgMiopenDepthwiseConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 4281: warning: exported function AtgMiopenRnn should have comment or be unexported (golint)
    • Line 4296: warning: exported function AtgMkldnnAdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 4301: warning: exported function AtgMkldnnConvolution should have comment or be unexported (golint)
    • Line 4311: warning: exported function AtgMkldnnConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 4324: warning: exported function AtgMkldnnConvolutionBackwardWeights should have comment or be unexported (golint)
    • Line 4337: warning: exported function AtgMkldnnLinear should have comment or be unexported (golint)
    • Line 4340: warning: exported function AtgMkldnnMaxPool2d should have comment or be unexported (golint)
    • Line 4352: warning: exported function AtgMkldnnMaxPool3d should have comment or be unexported (golint)
    • Line 4364: warning: exported function AtgMkldnnReorderConv2dWeight should have comment or be unexported (golint)
    • Line 4374: warning: exported function AtgMkldnnReorderConv3dWeight should have comment or be unexported (golint)
    • Line 4384: warning: exported function AtgMm should have comment or be unexported (golint)
    • Line 4387: warning: exported function AtgMmOut should have comment or be unexported (golint)
    • Line 4390: warning: exported function AtgMode should have comment or be unexported (golint)
    • Line 4395: warning: exported function AtgModeOut should have comment or be unexported (golint)
    • Line 4400: warning: exported function AtgMovedim should have comment or be unexported (golint)
    • Line 4407: warning: exported function AtgMovedim1 should have comment or be unexported (golint)
    • Line 4412: warning: exported function AtgMseLoss should have comment or be unexported (golint)
    • Line 4416: warning: exported function AtgMseLossBackward should have comment or be unexported (golint)
    • Line 4420: warning: exported function AtgMseLossBackwardOut should have comment or be unexported (golint)
    • Line 4424: warning: exported function AtgMseLossOut should have comment or be unexported (golint)
    • Line 4428: warning: exported function AtgMul should have comment or be unexported (golint)
    • Line 4431: warning: exported function AtgMul1 should have comment or be unexported (golint)
    • Line 4434: warning: exported function AtgMul_ should have comment or be unexported (golint)
    • Line 4434: warning: don't use underscores in Go names; func AtgMul_ should be AtgMul (golint)
    • Line 4437: warning: exported function AtgMul1_ should have comment or be unexported (golint)
    • Line 4437: warning: don't use underscores in Go names; func AtgMul1_ should be AtgMul1 (golint)
    • Line 4440: warning: exported function AtgMulOut should have comment or be unexported (golint)
    • Line 4443: warning: exported function AtgMultiMarginLossBackward should have comment or be unexported (golint)
    • Line 4447: warning: exported function AtgMultiMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 4451: warning: exported function AtgMultilabelMarginLoss should have comment or be unexported (golint)
    • Line 4455: warning: exported function AtgMultilabelMarginLossBackward should have comment or be unexported (golint)
    • Line 4459: warning: exported function AtgMultilabelMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 4463: warning: exported function AtgMultilabelMarginLossOut should have comment or be unexported (golint)
    • Line 4467: warning: exported function AtgMultinomial should have comment or be unexported (golint)
    • Line 4472: warning: exported function AtgMultinomialOut should have comment or be unexported (golint)
    • Line 4477: warning: exported function AtgMultiply should have comment or be unexported (golint)
    • Line 4480: warning: exported function AtgMultiply1 should have comment or be unexported (golint)
    • Line 4483: warning: exported function AtgMultiply_ should have comment or be unexported (golint)
    • Line 4483: warning: don't use underscores in Go names; func AtgMultiply_ should be AtgMultiply (golint)
    • Line 4486: warning: exported function AtgMultiply1_ should have comment or be unexported (golint)
    • Line 4486: warning: don't use underscores in Go names; func AtgMultiply1_ should be AtgMultiply1 (golint)
    • Line 4489: warning: exported function AtgMultiplyOut should have comment or be unexported (golint)
    • Line 4492: warning: exported function AtgMv should have comment or be unexported (golint)
    • Line 4495: warning: exported function AtgMvOut should have comment or be unexported (golint)
    • Line 4498: warning: exported function AtgMvlgamma should have comment or be unexported (golint)
    • Line 4502: warning: exported function AtgMvlgamma_ should have comment or be unexported (golint)
    • Line 4502: warning: don't use underscores in Go names; func AtgMvlgamma_ should be AtgMvlgamma (golint)
    • Line 4506: warning: exported function AtgNanquantile should have comment or be unexported (golint)
    • Line 4513: warning: exported function AtgNanquantile1 should have comment or be unexported (golint)
    • Line 4519: warning: exported function AtgNanquantileOut should have comment or be unexported (golint)
    • Line 4526: warning: exported function AtgNanquantileOut1 should have comment or be unexported (golint)
    • Line 4532: warning: exported function AtgNansum should have comment or be unexported (golint)
    • Line 4536: warning: exported function AtgNansum1 should have comment or be unexported (golint)
    • Line 4543: warning: exported function AtgNansumOut should have comment or be unexported (golint)
    • Line 4550: warning: exported function AtgNarrow should have comment or be unexported (golint)
    • Line 4556: warning: exported function AtgNarrow1 should have comment or be unexported (golint)
    • Line 4561: warning: exported function AtgNarrowCopy should have comment or be unexported (golint)
    • Line 4567: warning: exported function AtgNativeBatchNorm should have comment or be unexported (golint)
    • Line 4573: warning: exported function AtgNativeBatchNormOut should have comment or be unexported (golint)
    • Line 4579: warning: exported function AtgNativeGroupNorm should have comment or be unexported (golint)
    • Line 4587: warning: exported function AtgNativeLayerNorm should have comment or be unexported (golint)
    • Line 4593: warning: exported function AtgNativeNorm should have comment or be unexported (golint)
    • Line 4596: warning: exported function AtgNativeNorm1 should have comment or be unexported (golint)
    • Line 4603: warning: exported function AtgNe should have comment or be unexported (golint)
    • Line 4606: warning: exported function AtgNe1 should have comment or be unexported (golint)
    • Line 4609: warning: exported function AtgNe_ should have comment or be unexported (golint)
    • Line 4609: warning: don't use underscores in Go names; func AtgNe_ should be AtgNe (golint)
    • Line 4612: warning: exported function AtgNe1_ should have comment or be unexported (golint)
    • Line 4612: warning: don't use underscores in Go names; func AtgNe1_ should be AtgNe1 (golint)
    • Line 4615: warning: exported function AtgNeOut should have comment or be unexported (golint)
    • Line 4618: warning: exported function AtgNeOut1 should have comment or be unexported (golint)
    • Line 4621: warning: exported function AtgNeg should have comment or be unexported (golint)
    • Line 4624: warning: exported function AtgNeg_ should have comment or be unexported (golint)
    • Line 4624: warning: don't use underscores in Go names; func AtgNeg_ should be AtgNeg (golint)
    • Line 4627: warning: exported function AtgNegOut should have comment or be unexported (golint)
    • Line 4630: warning: exported function AtgNegative should have comment or be unexported (golint)
    • Line 4633: warning: exported function AtgNegative_ should have comment or be unexported (golint)
    • Line 4633: warning: don't use underscores in Go names; func AtgNegative_ should be AtgNegative (golint)
    • Line 4636: warning: exported function AtgNegativeOut should have comment or be unexported (golint)
    • Line 4639: warning: exported function AtgNewEmpty should have comment or be unexported (golint)
    • Line 4646: warning: exported function AtgNewFull should have comment or be unexported (golint)
    • Line 4653: warning: exported function AtgNewZeros should have comment or be unexported (golint)
    • Line 4660: warning: exported function AtgNextafter should have comment or be unexported (golint)
    • Line 4663: warning: exported function AtgNextafter_ should have comment or be unexported (golint)
    • Line 4663: warning: don't use underscores in Go names; func AtgNextafter_ should be AtgNextafter (golint)
    • Line 4666: warning: exported function AtgNextafterOut should have comment or be unexported (golint)
    • Line 4669: warning: exported function AtgNllLoss should have comment or be unexported (golint)
    • Line 4674: warning: exported function AtgNllLoss2d should have comment or be unexported (golint)
    • Line 4679: warning: exported function AtgNllLoss2dBackward should have comment or be unexported (golint)
    • Line 4684: warning: exported function AtgNllLoss2dBackwardOut should have comment or be unexported (golint)
    • Line 4689: warning: exported function AtgNllLoss2dOut should have comment or be unexported (golint)
    • Line 4694: warning: exported function AtgNllLossBackward should have comment or be unexported (golint)
    • Line 4699: warning: exported function AtgNllLossBackwardOut should have comment or be unexported (golint)
    • Line 4704: warning: exported function AtgNllLossOut should have comment or be unexported (golint)
    • Line 4709: warning: exported function AtgNonzero should have comment or be unexported (golint)
    • Line 4713: warning: exported function AtgNonzeroOut should have comment or be unexported (golint)
    • Line 4716: warning: exported function AtgNorm should have comment or be unexported (golint)
    • Line 4719: warning: exported function AtgNorm1 should have comment or be unexported (golint)
    • Line 4723: warning: exported function AtgNorm2 should have comment or be unexported (golint)
    • Line 4729: warning: exported function AtgNorm3 should have comment or be unexported (golint)
    • Line 4736: warning: exported function AtgNormExceptDim should have comment or be unexported (golint)
    • Line 4741: warning: exported function AtgNormOut should have comment or be unexported (golint)
    • Line 4747: warning: exported function AtgNormOut1 should have comment or be unexported (golint)
    • Line 4754: warning: exported function AtgNormal_ should have comment or be unexported (golint)
    • Line 4754: warning: don't use underscores in Go names; func AtgNormal_ should be AtgNormal (golint)
    • Line 4759: warning: exported function AtgNormalOut should have comment or be unexported (golint)
    • Line 4763: warning: exported function AtgNormalOut1 should have comment or be unexported (golint)
    • Line 4767: warning: exported function AtgNormalOut2 should have comment or be unexported (golint)
    • Line 4770: warning: exported function AtgNormalOut3 should have comment or be unexported (golint)
    • Line 4777: warning: exported function AtgNotEqual should have comment or be unexported (golint)
    • Line 4780: warning: exported function AtgNotEqual1 should have comment or be unexported (golint)
    • Line 4783: warning: exported function AtgNotEqual_ should have comment or be unexported (golint)
    • Line 4783: warning: don't use underscores in Go names; func AtgNotEqual_ should be AtgNotEqual (golint)
    • Line 4786: warning: exported function AtgNotEqual1_ should have comment or be unexported (golint)
    • Line 4786: warning: don't use underscores in Go names; func AtgNotEqual1_ should be AtgNotEqual1 (golint)
    • Line 4789: warning: exported function AtgNotEqualOut should have comment or be unexported (golint)
    • Line 4792: warning: exported function AtgNotEqualOut1 should have comment or be unexported (golint)
    • Line 4795: warning: exported function AtgNuclearNorm should have comment or be unexported (golint)
    • Line 4799: warning: exported function AtgNuclearNorm1 should have comment or be unexported (golint)
    • Line 4805: warning: exported function AtgNuclearNormOut should have comment or be unexported (golint)
    • Line 4809: warning: exported function AtgNuclearNormOut1 should have comment or be unexported (golint)
    • Line 4815: warning: exported function AtgNumpyT should have comment or be unexported (golint)
    • Line 4818: warning: exported function AtgOneHot should have comment or be unexported (golint)
    • Line 4822: warning: exported function AtgOnes should have comment or be unexported (golint)
    • Line 4829: warning: exported function AtgOnesLike should have comment or be unexported (golint)
    • Line 4832: warning: exported function AtgOnesOut should have comment or be unexported (golint)
    • Line 4837: warning: exported function AtgOrgqr should have comment or be unexported (golint)
    • Line 4840: warning: exported function AtgOrgqrOut should have comment or be unexported (golint)
    • Line 4843: warning: exported function AtgOrmqr should have comment or be unexported (golint)
    • Line 4848: warning: exported function AtgOrmqrOut should have comment or be unexported (golint)
    • Line 4853: warning: exported function AtgOuter should have comment or be unexported (golint)
    • Line 4856: warning: exported function AtgOuterOut should have comment or be unexported (golint)
    • Line 4859: warning: exported function AtgPairwiseDistance should have comment or be unexported (golint)
    • Line 4865: warning: exported function AtgPdist should have comment or be unexported (golint)
    • Line 4869: warning: exported function AtgPermute should have comment or be unexported (golint)
    • Line 4874: warning: exported function AtgPinMemory should have comment or be unexported (golint)
    • Line 4877: warning: exported function AtgPinverse should have comment or be unexported (golint)
    • Line 4881: warning: exported function AtgPixelShuffle should have comment or be unexported (golint)
    • Line 4885: warning: exported function AtgPoisson should have comment or be unexported (golint)
    • Line 4888: warning: exported function AtgPoissonNllLoss should have comment or be unexported (golint)
    • Line 4895: warning: exported function AtgPolar should have comment or be unexported (golint)
    • Line 4898: warning: exported function AtgPolarOut should have comment or be unexported (golint)
    • Line 4901: warning: exported function AtgPolygamma should have comment or be unexported (golint)
    • Line 4905: warning: exported function AtgPolygamma_ should have comment or be unexported (golint)
    • Line 4905: warning: don't use underscores in Go names; func AtgPolygamma_ should be AtgPolygamma (golint)
    • Line 4909: warning: exported function AtgPolygammaOut should have comment or be unexported (golint)
    • Line 4913: warning: exported function AtgPow should have comment or be unexported (golint)
    • Line 4916: warning: exported function AtgPow1 should have comment or be unexported (golint)
    • Line 4919: warning: exported function AtgPow2 should have comment or be unexported (golint)
    • Line 4922: warning: exported function AtgPow_ should have comment or be unexported (golint)
    • Line 4922: warning: don't use underscores in Go names; func AtgPow_ should be AtgPow (golint)
    • Line 4925: warning: exported function AtgPow1_ should have comment or be unexported (golint)
    • Line 4925: warning: don't use underscores in Go names; func AtgPow1_ should be AtgPow1 (golint)
    • Line 4928: warning: exported function AtgPowOut should have comment or be unexported (golint)
    • Line 4931: warning: exported function AtgPowOut1 should have comment or be unexported (golint)
    • Line 4934: warning: exported function AtgPowOut2 should have comment or be unexported (golint)
    • Line 4937: warning: exported function AtgPrelu should have comment or be unexported (golint)
    • Line 4940: warning: exported function AtgPreluBackward should have comment or be unexported (golint)
    • Line 4943: warning: exported function AtgProd should have comment or be unexported (golint)
    • Line 4947: warning: exported function AtgProd1 should have comment or be unexported (golint)
    • Line 4953: warning: exported function AtgProdOut should have comment or be unexported (golint)
    • Line 4959: warning: exported function AtgPut_ should have comment or be unexported (golint)
    • Line 4959: warning: don't use underscores in Go names; func AtgPut_ should be AtgPut (golint)
    • Line 4963: warning: exported function AtgQPerChannelScales should have comment or be unexported (golint)
    • Line 4966: warning: exported function AtgQPerChannelZeroPoints should have comment or be unexported (golint)
    • Line 4969: warning: exported function AtgQr should have comment or be unexported (golint)
    • Line 4973: warning: exported function AtgQrOut should have comment or be unexported (golint)
    • Line 4977: warning: exported function AtgQuantile should have comment or be unexported (golint)
    • Line 4984: warning: exported function AtgQuantile1 should have comment or be unexported (golint)
    • Line 4990: warning: exported function AtgQuantileOut should have comment or be unexported (golint)
    • Line 4997: warning: exported function AtgQuantileOut1 should have comment or be unexported (golint)
    • Line 5003: warning: exported function AtgQuantizePerChannel should have comment or be unexported (golint)
    • Line 5008: warning: exported function AtgQuantizePerTensor should have comment or be unexported (golint)
    • Line 5015: warning: exported function AtgQuantizedBatchNorm should have comment or be unexported (golint)
    • Line 5021: warning: exported function AtgQuantizedGruCell should have comment or be unexported (golint)
    • Line 5024: warning: exported function AtgQuantizedLstmCell should have comment or be unexported (golint)
    • Line 5029: warning: exported function AtgQuantizedMaxPool1d should have comment or be unexported (golint)
    • Line 5041: warning: exported function AtgQuantizedMaxPool2d should have comment or be unexported (golint)
    • Line 5053: warning: exported function AtgQuantizedRnnReluCell should have comment or be unexported (golint)
    • Line 5056: warning: exported function AtgQuantizedRnnTanhCell should have comment or be unexported (golint)
    • Line 5059: warning: exported function AtgRad2deg should have comment or be unexported (golint)
    • Line 5062: warning: exported function AtgRad2deg_ should have comment or be unexported (golint)
    • Line 5062: warning: don't use underscores in Go names; func AtgRad2deg_ should be AtgRad2deg (golint)
    • Line 5065: warning: exported function AtgRad2degOut should have comment or be unexported (golint)
    • Line 5068: warning: exported function AtgRand should have comment or be unexported (golint)
    • Line 5075: warning: exported function AtgRandLike should have comment or be unexported (golint)
    • Line 5078: warning: exported function AtgRandOut should have comment or be unexported (golint)
    • Line 5083: warning: exported function AtgRandint should have comment or be unexported (golint)
    • Line 5091: warning: exported function AtgRandint1 should have comment or be unexported (golint)
    • Line 5100: warning: exported function AtgRandintLike should have comment or be unexported (golint)
    • Line 5104: warning: exported function AtgRandintLike1 should have comment or be unexported (golint)
    • Line 5109: warning: exported function AtgRandintOut should have comment or be unexported (golint)
    • Line 5115: warning: exported function AtgRandintOut1 should have comment or be unexported (golint)
    • Line 5122: warning: exported function AtgRandn should have comment or be unexported (golint)
    • Line 5129: warning: exported function AtgRandnLike should have comment or be unexported (golint)
    • Line 5132: warning: exported function AtgRandnOut should have comment or be unexported (golint)
    • Line 5137: warning: exported function AtgRandom_ should have comment or be unexported (golint)
    • Line 5137: warning: don't use underscores in Go names; func AtgRandom_ should be AtgRandom (golint)
    • Line 5140: warning: exported function AtgRandom1_ should have comment or be unexported (golint)
    • Line 5140: warning: don't use underscores in Go names; func AtgRandom1_ should be AtgRandom1 (golint)
    • Line 5144: warning: exported function AtgRandom2 should have comment or be unexported (golint)
    • Line 5150: warning: exported function AtgRandperm should have comment or be unexported (golint)
    • Line 5156: warning: exported function AtgRandpermOut should have comment or be unexported (golint)
    • Line 5160: warning: exported function AtgRange should have comment or be unexported (golint)
    • Line 5165: warning: exported function AtgRange1 should have comment or be unexported (golint)
    • Line 5170: warning: exported function AtgRangeOut should have comment or be unexported (golint)
    • Line 5173: warning: exported function AtgReal should have comment or be unexported (golint)
    • Line 5176: warning: exported function AtgReciprocal should have comment or be unexported (golint)
    • Line 5179: warning: exported function AtgReciprocal_ should have comment or be unexported (golint)
    • Line 5179: warning: don't use underscores in Go names; func AtgReciprocal_ should be AtgReciprocal (golint)
    • Line 5182: warning: exported function AtgReciprocalOut should have comment or be unexported (golint)
    • Line 5185: warning: exported function AtgReflectionPad1d should have comment or be unexported (golint)
    • Line 5190: warning: exported function AtgReflectionPad1dBackward should have comment or be unexported (golint)
    • Line 5195: warning: exported function AtgReflectionPad1dBackwardOut should have comment or be unexported (golint)
    • Line 5200: warning: exported function AtgReflectionPad1dOut should have comment or be unexported (golint)
    • Line 5205: warning: exported function AtgReflectionPad2d should have comment or be unexported (golint)
    • Line 5210: warning: exported function AtgReflectionPad2dBackward should have comment or be unexported (golint)
    • Line 5215: warning: exported function AtgReflectionPad2dBackwardOut should have comment or be unexported (golint)
    • Line 5220: warning: exported function AtgReflectionPad2dOut should have comment or be unexported (golint)
    • Line 5225: warning: exported function AtgRelu should have comment or be unexported (golint)
    • Line 5228: warning: exported function AtgRelu_ should have comment or be unexported (golint)
    • Line 5228: warning: don't use underscores in Go names; func AtgRelu_ should be AtgRelu (golint)
    • Line 5231: warning: exported function AtgRemainder should have comment or be unexported (golint)
    • Line 5234: warning: exported function AtgRemainder1 should have comment or be unexported (golint)
    • Line 5237: warning: exported function AtgRemainder_ should have comment or be unexported (golint)
    • Line 5237: warning: don't use underscores in Go names; func AtgRemainder_ should be AtgRemainder (golint)
    • Line 5240: warning: exported function AtgRemainder1_ should have comment or be unexported (golint)
    • Line 5240: warning: don't use underscores in Go names; func AtgRemainder1_ should be AtgRemainder1 (golint)
    • Line 5243: warning: exported function AtgRemainderOut should have comment or be unexported (golint)
    • Line 5246: warning: exported function AtgRemainderOut1 should have comment or be unexported (golint)
    • Line 5249: warning: exported function AtgRenorm should have comment or be unexported (golint)
    • Line 5253: warning: exported function AtgRenorm_ should have comment or be unexported (golint)
    • Line 5253: warning: don't use underscores in Go names; func AtgRenorm_ should be AtgRenorm (golint)
    • Line 5257: warning: exported function AtgRenormOut should have comment or be unexported (golint)
    • Line 5261: warning: exported function AtgRepeat should have comment or be unexported (golint)
    • Line 5266: warning: exported function AtgRepeatInterleave should have comment or be unexported (golint)
    • Line 5269: warning: exported function AtgRepeatInterleave1 should have comment or be unexported (golint)
    • Line 5274: warning: exported function AtgRepeatInterleave2 should have comment or be unexported (golint)
    • Line 5280: warning: exported function AtgReplicationPad1d should have comment or be unexported (golint)
    • Line 5285: warning: exported function AtgReplicationPad1dBackward should have comment or be unexported (golint)
    • Line 5290: warning: exported function AtgReplicationPad1dBackwardOut should have comment or be unexported (golint)
    • Line 5295: warning: exported function AtgReplicationPad1dOut should have comment or be unexported (golint)
    • Line 5300: warning: exported function AtgReplicationPad2d should have comment or be unexported (golint)
    • Line 5305: warning: exported function AtgReplicationPad2dBackward should have comment or be unexported (golint)
    • Line 5310: warning: exported function AtgReplicationPad2dBackwardOut should have comment or be unexported (golint)
    • Line 5315: warning: exported function AtgReplicationPad2dOut should have comment or be unexported (golint)
    • Line 5320: warning: exported function AtgReplicationPad3d should have comment or be unexported (golint)
    • Line 5325: warning: exported function AtgReplicationPad3dBackward should have comment or be unexported (golint)
    • Line 5330: warning: exported function AtgReplicationPad3dBackwardOut should have comment or be unexported (golint)
    • Line 5335: warning: exported function AtgReplicationPad3dOut should have comment or be unexported (golint)
    • Line 5340: warning: exported function AtgRequiresGrad_ should have comment or be unexported (golint)
    • Line 5340: warning: don't use underscores in Go names; func AtgRequiresGrad_ should be AtgRequiresGrad (golint)
    • Line 5344: warning: exported function AtgReshape should have comment or be unexported (golint)
    • Line 5349: warning: exported function AtgReshapeAs should have comment or be unexported (golint)
    • Line 5352: warning: exported function AtgResize_ should have comment or be unexported (golint)
    • Line 5352: warning: don't use underscores in Go names; func AtgResize_ should be AtgResize (golint)
    • Line 5357: warning: exported function AtgResizeAs_ should have comment or be unexported (golint)
    • Line 5357: warning: don't use underscores in Go names; func AtgResizeAs_ should be AtgResizeAs (golint)
    • Line 5360: warning: exported function AtgRfft should have comment or be unexported (golint)
    • Line 5366: warning: exported function AtgRnnRelu should have comment or be unexported (golint)
    • Line 5377: warning: exported function AtgRnnRelu1 should have comment or be unexported (golint)
    • Line 5387: warning: exported function AtgRnnReluCell should have comment or be unexported (golint)
    • Line 5390: warning: exported function AtgRnnTanh should have comment or be unexported (golint)
    • Line 5401: warning: exported function AtgRnnTanh1 should have comment or be unexported (golint)
    • Line 5411: warning: exported function AtgRnnTanhCell should have comment or be unexported (golint)
    • Line 5414: warning: exported function AtgRoll should have comment or be unexported (golint)
    • Line 5421: warning: exported function AtgRot90 should have comment or be unexported (golint)
    • Line 5427: warning: exported function AtgRound should have comment or be unexported (golint)
    • Line 5430: warning: exported function AtgRound_ should have comment or be unexported (golint)
    • Line 5430: warning: don't use underscores in Go names; func AtgRound_ should be AtgRound (golint)
    • Line 5433: warning: exported function AtgRoundOut should have comment or be unexported (golint)
    • Line 5436: warning: exported function AtgRrelu should have comment or be unexported (golint)
    • Line 5440: warning: exported function AtgRrelu_ should have comment or be unexported (golint)
    • Line 5440: warning: don't use underscores in Go names; func AtgRrelu_ should be AtgRrelu (golint)
    • Line 5444: warning: exported function AtgRreluWithNoise should have comment or be unexported (golint)
    • Line 5448: warning: exported function AtgRreluWithNoise_ should have comment or be unexported (golint)
    • Line 5448: warning: don't use underscores in Go names; func AtgRreluWithNoise_ should be AtgRreluWithNoise (golint)
    • Line 5452: warning: exported function AtgRreluWithNoiseBackward should have comment or be unexported (golint)
    • Line 5457: warning: exported function AtgRreluWithNoiseOut should have comment or be unexported (golint)
    • Line 5461: warning: exported function AtgRsqrt should have comment or be unexported (golint)
    • Line 5464: warning: exported function AtgRsqrt_ should have comment or be unexported (golint)
    • Line 5464: warning: don't use underscores in Go names; func AtgRsqrt_ should be AtgRsqrt (golint)
    • Line 5467: warning: exported function AtgRsqrtOut should have comment or be unexported (golint)
    • Line 5470: warning: exported function AtgRsub should have comment or be unexported (golint)
    • Line 5473: warning: exported function AtgRsub1 should have comment or be unexported (golint)
    • Line 5476: warning: exported function AtgScalarTensor should have comment or be unexported (golint)
    • Line 5481: warning: exported function AtgScatter should have comment or be unexported (golint)
    • Line 5485: warning: exported function AtgScatter1 should have comment or be unexported (golint)
    • Line 5489: warning: exported function AtgScatter_ should have comment or be unexported (golint)
    • Line 5489: warning: don't use underscores in Go names; func AtgScatter_ should be AtgScatter (golint)
    • Line 5493: warning: exported function AtgScatter1_ should have comment or be unexported (golint)
    • Line 5493: warning: don't use underscores in Go names; func AtgScatter1_ should be AtgScatter1 (golint)
    • Line 5497: warning: exported function AtgScatter2 should have comment or be unexported (golint)
    • Line 5504: warning: exported function AtgScatter3 should have comment or be unexported (golint)
    • Line 5511: warning: exported function AtgScatterAdd should have comment or be unexported (golint)
    • Line 5515: warning: exported function AtgScatterAdd_ should have comment or be unexported (golint)
    • Line 5515: warning: don't use underscores in Go names; func AtgScatterAdd_ should be AtgScatterAdd (golint)
    • Line 5519: warning: exported function AtgSearchsorted should have comment or be unexported (golint)
    • Line 5524: warning: exported function AtgSearchsorted1 should have comment or be unexported (golint)
    • Line 5529: warning: exported function AtgSearchsortedOut should have comment or be unexported (golint)
    • Line 5534: warning: exported function AtgSelect should have comment or be unexported (golint)
    • Line 5539: warning: exported function AtgSelectBackward should have comment or be unexported (golint)
    • Line 5546: warning: exported function AtgSelu should have comment or be unexported (golint)
    • Line 5549: warning: exported function AtgSelu_ should have comment or be unexported (golint)
    • Line 5549: warning: don't use underscores in Go names; func AtgSelu_ should be AtgSelu (golint)
    • Line 5552: warning: exported function AtgSet_ should have comment or be unexported (golint)
    • Line 5552: warning: don't use underscores in Go names; func AtgSet_ should be AtgSet (golint)
    • Line 5555: warning: exported function AtgSet1_ should have comment or be unexported (golint)
    • Line 5555: warning: don't use underscores in Go names; func AtgSet1_ should be AtgSet1 (golint)
    • Line 5558: warning: exported function AtgSetRequiresGrad should have comment or be unexported (golint)
    • Line 5562: warning: exported function AtgSgn should have comment or be unexported (golint)
    • Line 5565: warning: exported function AtgSgn_ should have comment or be unexported (golint)
    • Line 5565: warning: don't use underscores in Go names; func AtgSgn_ should be AtgSgn (golint)
    • Line 5568: warning: exported function AtgSgnOut should have comment or be unexported (golint)
    • Line 5571: warning: exported function AtgSigmoid should have comment or be unexported (golint)
    • Line 5574: warning: exported function AtgSigmoid_ should have comment or be unexported (golint)
    • Line 5574: warning: don't use underscores in Go names; func AtgSigmoid_ should be AtgSigmoid (golint)
    • Line 5577: warning: exported function AtgSigmoidBackward should have comment or be unexported (golint)
    • Line 5580: warning: exported function AtgSigmoidBackwardOut should have comment or be unexported (golint)
    • Line 5583: warning: exported function AtgSigmoidOut should have comment or be unexported (golint)
    • Line 5586: warning: exported function AtgSign should have comment or be unexported (golint)
    • Line 5589: warning: exported function AtgSign_ should have comment or be unexported (golint)
    • Line 5589: warning: don't use underscores in Go names; func AtgSign_ should be AtgSign (golint)
    • Line 5592: warning: exported function AtgSignOut should have comment or be unexported (golint)
    • Line 5595: warning: exported function AtgSignbit should have comment or be unexported (golint)
    • Line 5598: warning: exported function AtgSignbitOut should have comment or be unexported (golint)
    • Line 5601: warning: exported function AtgSilu should have comment or be unexported (golint)
    • Line 5604: warning: exported function AtgSilu_ should have comment or be unexported (golint)
    • Line 5604: warning: don't use underscores in Go names; func AtgSilu_ should be AtgSilu (golint)
    • Line 5607: warning: exported function AtgSiluBackward should have comment or be unexported (golint)
    • Line 5610: warning: exported function AtgSiluOut should have comment or be unexported (golint)
    • Line 5613: warning: exported function AtgSin should have comment or be unexported (golint)
    • Line 5616: warning: exported function AtgSin_ should have comment or be unexported (golint)
    • Line 5616: warning: don't use underscores in Go names; func AtgSin_ should be AtgSin (golint)
    • Line 5619: warning: exported function AtgSinOut should have comment or be unexported (golint)
    • Line 5622: warning: exported function AtgSinh should have comment or be unexported (golint)
    • Line 5625: warning: exported function AtgSinh_ should have comment or be unexported (golint)
    • Line 5625: warning: don't use underscores in Go names; func AtgSinh_ should be AtgSinh (golint)
    • Line 5628: warning: exported function AtgSinhOut should have comment or be unexported (golint)
    • Line 5631: warning: exported function AtgSlice should have comment or be unexported (golint)
    • Line 5638: warning: exported function AtgSliceBackward should have comment or be unexported (golint)
    • Line 5647: warning: exported function AtgSlogdet should have comment or be unexported (golint)
    • Line 5650: warning: exported function AtgSlowConv3d should have comment or be unexported (golint)
    • Line 5659: warning: exported function AtgSlowConv3dOut should have comment or be unexported (golint)
    • Line 5668: warning: exported function AtgSlowConvDilated2d should have comment or be unexported (golint)
    • Line 5679: warning: exported function AtgSlowConvDilated3d should have comment or be unexported (golint)
    • Line 5690: warning: exported function AtgSlowConvTranspose2d should have comment or be unexported (golint)
    • Line 5703: warning: exported function AtgSlowConvTranspose2dOut should have comment or be unexported (golint)
    • Line 5716: warning: exported function AtgSlowConvTranspose3d should have comment or be unexported (golint)
    • Line 5729: warning: exported function AtgSlowConvTranspose3dOut should have comment or be unexported (golint)
    • Line 5742: warning: exported function AtgSmm should have comment or be unexported (golint)
    • Line 5745: warning: exported function AtgSmoothL1Loss should have comment or be unexported (golint)
    • Line 5750: warning: exported function AtgSmoothL1LossBackward should have comment or be unexported (golint)
    • Line 5755: warning: exported function AtgSmoothL1LossBackwardOut should have comment or be unexported (golint)
    • Line 5760: warning: exported function AtgSmoothL1LossOut should have comment or be unexported (golint)
    • Line 5765: warning: exported function AtgSoftMarginLoss should have comment or be unexported (golint)
    • Line 5769: warning: exported function AtgSoftMarginLossBackward should have comment or be unexported (golint)
    • Line 5773: warning: exported function AtgSoftMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 5777: warning: exported function AtgSoftMarginLossOut should have comment or be unexported (golint)
    • Line 5781: warning: exported function AtgSoftmax should have comment or be unexported (golint)
    • Line 5786: warning: exported function AtgSoftplus should have comment or be unexported (golint)
    • Line 5789: warning: exported function AtgSoftplusBackward should have comment or be unexported (golint)
    • Line 5792: warning: exported function AtgSoftplusBackwardOut should have comment or be unexported (golint)
    • Line 5795: warning: exported function AtgSoftplusOut should have comment or be unexported (golint)
    • Line 5798: warning: exported function AtgSoftshrink should have comment or be unexported (golint)
    • Line 5801: warning: exported function AtgSoftshrinkBackward should have comment or be unexported (golint)
    • Line 5804: warning: exported function AtgSoftshrinkBackwardOut should have comment or be unexported (golint)
    • Line 5807: warning: exported function AtgSoftshrinkOut should have comment or be unexported (golint)
    • Line 5810: warning: exported function AtgSolve should have comment or be unexported (golint)
    • Line 5813: warning: exported function AtgSolveOut should have comment or be unexported (golint)
    • Line 5816: warning: exported function AtgSort should have comment or be unexported (golint)
    • Line 5821: warning: exported function AtgSortOut should have comment or be unexported (golint)
    • Line 5826: warning: exported function AtgSparseCooTensor should have comment or be unexported (golint)
    • Line 5833: warning: exported function AtgSparseCooTensor1 should have comment or be unexported (golint)
    • Line 5838: warning: exported function AtgSparseCooTensor2 should have comment or be unexported (golint)
    • Line 5845: warning: exported function AtgSparseMask should have comment or be unexported (golint)
    • Line 5848: warning: exported function AtgSparseResize_ should have comment or be unexported (golint)
    • Line 5848: warning: don't use underscores in Go names; func AtgSparseResize_ should be AtgSparseResize (golint)
    • Line 5855: warning: exported function AtgSparseResizeAndClear_ should have comment or be unexported (golint)
    • Line 5855: warning: don't use underscores in Go names; func AtgSparseResizeAndClear_ should be AtgSparseResizeAndClear (golint)
    • Line 5864: warning: exported function AtgSqrt should have comment or be unexported (golint)
    • Line 5867: warning: exported function AtgSqrt_ should have comment or be unexported (golint)
    • Line 5867: warning: don't use underscores in Go names; func AtgSqrt_ should be AtgSqrt (golint)
    • Line 5870: warning: exported function AtgSqrtOut should have comment or be unexported (golint)
    • Line 5873: warning: exported function AtgSquare should have comment or be unexported (golint)
    • Line 5876: warning: exported function AtgSquare_ should have comment or be unexported (golint)
    • Line 5876: warning: don't use underscores in Go names; func AtgSquare_ should be AtgSquare (golint)
    • Line 5879: warning: exported function AtgSqueeze should have comment or be unexported (golint)
    • Line 5882: warning: exported function AtgSqueeze1 should have comment or be unexported (golint)
    • Line 5886: warning: exported function AtgSqueeze_ should have comment or be unexported (golint)
    • Line 5886: warning: don't use underscores in Go names; func AtgSqueeze_ should be AtgSqueeze (golint)
    • Line 5889: warning: exported function AtgSqueeze1_ should have comment or be unexported (golint)
    • Line 5889: warning: don't use underscores in Go names; func AtgSqueeze1_ should be AtgSqueeze1 (golint)
    • Line 5893: warning: exported function AtgSspaddmm should have comment or be unexported (golint)
    • Line 5896: warning: exported function AtgSspaddmmOut should have comment or be unexported (golint)
    • Line 5899: warning: exported function AtgStack should have comment or be unexported (golint)
    • Line 5905: warning: exported function AtgStackOut should have comment or be unexported (golint)
    • Line 5911: warning: exported function AtgStd should have comment or be unexported (golint)
    • Line 5915: warning: exported function AtgStd1 should have comment or be unexported (golint)
    • Line 5922: warning: exported function AtgStdMean should have comment or be unexported (golint)
    • Line 5926: warning: exported function AtgStdMean1 should have comment or be unexported (golint)
    • Line 5933: warning: exported function AtgStdOut should have comment or be unexported (golint)
    • Line 5940: warning: exported function AtgStft should have comment or be unexported (golint)
    • Line 5951: warning: exported function AtgSub should have comment or be unexported (golint)
    • Line 5954: warning: exported function AtgSub1 should have comment or be unexported (golint)
    • Line 5957: warning: exported function AtgSub_ should have comment or be unexported (golint)
    • Line 5957: warning: don't use underscores in Go names; func AtgSub_ should be AtgSub (golint)
    • Line 5960: warning: exported function AtgSub1_ should have comment or be unexported (golint)
    • Line 5960: warning: don't use underscores in Go names; func AtgSub1_ should be AtgSub1 (golint)
    • Line 5963: warning: exported function AtgSubOut should have comment or be unexported (golint)
    • Line 5966: warning: exported function AtgSubtract should have comment or be unexported (golint)
    • Line 5969: warning: exported function AtgSubtract1 should have comment or be unexported (golint)
    • Line 5972: warning: exported function AtgSubtract_ should have comment or be unexported (golint)
    • Line 5972: warning: don't use underscores in Go names; func AtgSubtract_ should be AtgSubtract (golint)
    • Line 5975: warning: exported function AtgSubtract1_ should have comment or be unexported (golint)
    • Line 5975: warning: don't use underscores in Go names; func AtgSubtract1_ should be AtgSubtract1 (golint)
    • Line 5978: warning: exported function AtgSubtractOut should have comment or be unexported (golint)
    • Line 5981: warning: exported function AtgSum should have comment or be unexported (golint)
    • Line 5985: warning: exported function AtgSum1 should have comment or be unexported (golint)
    • Line 5992: warning: exported function AtgSumOut should have comment or be unexported (golint)
    • Line 5999: warning: exported function AtgSumToSize should have comment or be unexported (golint)
    • Line 6004: warning: exported function AtgSvd should have comment or be unexported (golint)
    • Line 6009: warning: exported function AtgSvdOut should have comment or be unexported (golint)
    • Line 6014: warning: exported function AtgSymeig should have comment or be unexported (golint)
    • Line 6019: warning: exported function AtgSymeigOut should have comment or be unexported (golint)
    • Line 6024: warning: exported function AtgT should have comment or be unexported (golint)
    • Line 6027: warning: exported function AtgT_ should have comment or be unexported (golint)
    • Line 6027: warning: don't use underscores in Go names; func AtgT_ should be AtgT (golint)
    • Line 6030: warning: exported function AtgTake should have comment or be unexported (golint)
    • Line 6033: warning: exported function AtgTakeBackward should have comment or be unexported (golint)
    • Line 6036: warning: exported function AtgTakeOut should have comment or be unexported (golint)
    • Line 6039: warning: exported function AtgTan should have comment or be unexported (golint)
    • Line 6042: warning: exported function AtgTan_ should have comment or be unexported (golint)
    • Line 6042: warning: don't use underscores in Go names; func AtgTan_ should be AtgTan (golint)
    • Line 6045: warning: exported function AtgTanOut should have comment or be unexported (golint)
    • Line 6048: warning: exported function AtgTanh should have comment or be unexported (golint)
    • Line 6051: warning: exported function AtgTanh_ should have comment or be unexported (golint)
    • Line 6051: warning: don't use underscores in Go names; func AtgTanh_ should be AtgTanh (golint)
    • Line 6054: warning: exported function AtgTanhBackward should have comment or be unexported (golint)
    • Line 6057: warning: exported function AtgTanhBackwardOut should have comment or be unexported (golint)
    • Line 6060: warning: exported function AtgTanhOut should have comment or be unexported (golint)
    • Line 6063: warning: exported function AtgTensordot should have comment or be unexported (golint)
    • Line 6070: warning: exported function AtgThreshold should have comment or be unexported (golint)
    • Line 6073: warning: exported function AtgThreshold_ should have comment or be unexported (golint)
    • Line 6073: warning: don't use underscores in Go names; func AtgThreshold_ should be AtgThreshold (golint)
    • Line 6076: warning: exported function AtgThresholdBackward should have comment or be unexported (golint)
    • Line 6079: warning: exported function AtgThresholdOut should have comment or be unexported (golint)
    • Line 6082: warning: exported function AtgTo should have comment or be unexported (golint)
    • Line 6086: warning: exported function AtgTo1 should have comment or be unexported (golint)
    • Line 6093: warning: exported function AtgTo2 should have comment or be unexported (golint)
    • Line 6099: warning: exported function AtgTo3 should have comment or be unexported (golint)
    • Line 6104: warning: exported function AtgTo4 should have comment or be unexported (golint)
    • Line 6111: warning: exported function AtgToDense should have comment or be unexported (golint)
    • Line 6114: warning: exported function AtgToDenseBackward should have comment or be unexported (golint)
    • Line 6117: warning: exported function AtgToMkldnn should have comment or be unexported (golint)
    • Line 6120: warning: exported function AtgToMkldnnBackward should have comment or be unexported (golint)
    • Line 6123: warning: exported function AtgToSparse should have comment or be unexported (golint)
    • Line 6126: warning: exported function AtgToSparse1 should have comment or be unexported (golint)
    • Line 6130: warning: exported function AtgTopk should have comment or be unexported (golint)
    • Line 6137: warning: exported function AtgTopkOut should have comment or be unexported (golint)
    • Line 6144: warning: exported function AtgTotype should have comment or be unexported (golint)
    • Line 6148: warning: exported function AtgTrace should have comment or be unexported (golint)
    • Line 6151: warning: exported function AtgTraceBackward should have comment or be unexported (golint)
    • Line 6156: warning: exported function AtgTranspose should have comment or be unexported (golint)
    • Line 6161: warning: exported function AtgTranspose_ should have comment or be unexported (golint)
    • Line 6161: warning: don't use underscores in Go names; func AtgTranspose_ should be AtgTranspose (golint)
    • Line 6166: warning: exported function AtgTrapz should have comment or be unexported (golint)
    • Line 6170: warning: exported function AtgTrapz1 should have comment or be unexported (golint)
    • Line 6175: warning: exported function AtgTriangularSolve should have comment or be unexported (golint)
    • Line 6181: warning: exported function AtgTriangularSolveOut should have comment or be unexported (golint)
    • Line 6187: warning: exported function AtgTril should have comment or be unexported (golint)
    • Line 6191: warning: exported function AtgTril_ should have comment or be unexported (golint)
    • Line 6191: warning: don't use underscores in Go names; func AtgTril_ should be AtgTril (golint)
    • Line 6195: warning: exported function AtgTrilIndices should have comment or be unexported (golint)
    • Line 6203: warning: exported function AtgTrilOut should have comment or be unexported (golint)
    • Line 6207: warning: exported function AtgTripletMarginLoss should have comment or be unexported (golint)
    • Line 6215: warning: exported function AtgTriu should have comment or be unexported (golint)
    • Line 6219: warning: exported function AtgTriu_ should have comment or be unexported (golint)
    • Line 6219: warning: don't use underscores in Go names; func AtgTriu_ should be AtgTriu (golint)
    • Line 6223: warning: exported function AtgTriuIndices should have comment or be unexported (golint)
    • Line 6231: warning: exported function AtgTriuOut should have comment or be unexported (golint)
    • Line 6235: warning: exported function AtgTrueDivide should have comment or be unexported (golint)
    • Line 6238: warning: exported function AtgTrueDivide1 should have comment or be unexported (golint)
    • Line 6241: warning: exported function AtgTrueDivide_ should have comment or be unexported (golint)
    • Line 6241: warning: don't use underscores in Go names; func AtgTrueDivide_ should be AtgTrueDivide (golint)
    • Line 6244: warning: exported function AtgTrueDivide1_ should have comment or be unexported (golint)
    • Line 6244: warning: don't use underscores in Go names; func AtgTrueDivide1_ should be AtgTrueDivide1 (golint)
    • Line 6247: warning: exported function AtgTrueDivideOut should have comment or be unexported (golint)
    • Line 6250: warning: exported function AtgTrunc should have comment or be unexported (golint)
    • Line 6253: warning: exported function AtgTrunc_ should have comment or be unexported (golint)
    • Line 6253: warning: don't use underscores in Go names; func AtgTrunc_ should be AtgTrunc (golint)
    • Line 6256: warning: exported function AtgTruncOut should have comment or be unexported (golint)
    • Line 6259: warning: exported function AtgTypeAs should have comment or be unexported (golint)
    • Line 6263: warning: exported function AtgUnflatten should have comment or be unexported (golint)
    • Line 6269: warning: exported function AtgUnfold should have comment or be unexported (golint)
    • Line 6275: warning: exported function AtgUnfoldBackward should have comment or be unexported (golint)
    • Line 6283: warning: exported function AtgUniform_ should have comment or be unexported (golint)
    • Line 6283: warning: don't use underscores in Go names; func AtgUniform_ should be AtgUniform (golint)
    • Line 6288: warning: exported function AtgUniqueConsecutive should have comment or be unexported (golint)
    • Line 6295: warning: exported function AtgUniqueDim should have comment or be unexported (golint)
    • Line 6302: warning: exported function AtgUniqueDimConsecutive should have comment or be unexported (golint)
    • Line 6311: warning: exported function AtgUnsqueeze should have comment or be unexported (golint)
    • Line 6315: warning: exported function AtgUnsqueeze_ should have comment or be unexported (golint)
    • Line 6315: warning: don't use underscores in Go names; func AtgUnsqueeze_ should be AtgUnsqueeze (golint)
    • Line 6319: warning: exported function AtgUpsampleBicubic2d should have comment or be unexported (golint)
    • Line 6329: warning: exported function AtgUpsampleBicubic2dBackward should have comment or be unexported (golint)
    • Line 6341: warning: exported function AtgUpsampleBicubic2dBackwardOut should have comment or be unexported (golint)
    • Line 6353: warning: exported function AtgUpsampleBicubic2dOut should have comment or be unexported (golint)
    • Line 6363: warning: exported function AtgUpsampleBilinear2d should have comment or be unexported (golint)
    • Line 6373: warning: exported function AtgUpsampleBilinear2dBackward should have comment or be unexported (golint)
    • Line 6385: warning: exported function AtgUpsampleBilinear2dBackwardOut should have comment or be unexported (golint)
    • Line 6397: warning: exported function AtgUpsampleBilinear2dOut should have comment or be unexported (golint)
    • Line 6407: warning: exported function AtgUpsampleLinear1d should have comment or be unexported (golint)
    • Line 6415: warning: exported function AtgUpsampleLinear1dBackward should have comment or be unexported (golint)
    • Line 6425: warning: exported function AtgUpsampleLinear1dBackwardOut should have comment or be unexported (golint)
    • Line 6435: warning: exported function AtgUpsampleLinear1dOut should have comment or be unexported (golint)
    • Line 6443: warning: exported function AtgUpsampleNearest1d should have comment or be unexported (golint)
    • Line 6450: warning: exported function AtgUpsampleNearest1dBackward should have comment or be unexported (golint)
    • Line 6459: warning: exported function AtgUpsampleNearest1dBackwardOut should have comment or be unexported (golint)
    • Line 6468: warning: exported function AtgUpsampleNearest1dOut should have comment or be unexported (golint)
    • Line 6475: warning: exported function AtgUpsampleNearest2d should have comment or be unexported (golint)
    • Line 6484: warning: exported function AtgUpsampleNearest2dBackward should have comment or be unexported (golint)
    • Line 6495: warning: exported function AtgUpsampleNearest2dBackwardOut should have comment or be unexported (golint)
    • Line 6506: warning: exported function AtgUpsampleNearest2dOut should have comment or be unexported (golint)
    • Line 6515: warning: exported function AtgUpsampleNearest3d should have comment or be unexported (golint)
    • Line 6526: warning: exported function AtgUpsampleNearest3dBackward should have comment or be unexported (golint)
    • Line 6539: warning: exported function AtgUpsampleNearest3dBackwardOut should have comment or be unexported (golint)
    • Line 6552: warning: exported function AtgUpsampleNearest3dOut should have comment or be unexported (golint)
    • Line 6563: warning: exported function AtgUpsampleTrilinear3d should have comment or be unexported (golint)
    • Line 6575: warning: exported function AtgUpsampleTrilinear3dBackward should have comment or be unexported (golint)
    • Line 6589: warning: exported function AtgUpsampleTrilinear3dBackwardOut should have comment or be unexported (golint)
    • Line 6603: warning: exported function AtgUpsampleTrilinear3dOut should have comment or be unexported (golint)
    • Line 6615: warning: exported function AtgValueSelectingReductionBackward should have comment or be unexported (golint)
    • Line 6622: warning: exported function AtgValues should have comment or be unexported (golint)
    • Line 6625: warning: exported function AtgVander should have comment or be unexported (golint)
    • Line 6631: warning: exported function AtgVar should have comment or be unexported (golint)
    • Line 6635: warning: exported function AtgVar1 should have comment or be unexported (golint)
    • Line 6642: warning: exported function AtgVarMean should have comment or be unexported (golint)
    • Line 6646: warning: exported function AtgVarMean1 should have comment or be unexported (golint)
    • Line 6653: warning: exported function AtgVarOut should have comment or be unexported (golint)
    • Line 6660: warning: exported function AtgVdot should have comment or be unexported (golint)
    • Line 6663: warning: exported function AtgVdotOut should have comment or be unexported (golint)
    • Line 6666: warning: exported function AtgView should have comment or be unexported (golint)
    • Line 6671: warning: exported function AtgViewAs should have comment or be unexported (golint)
    • Line 6674: warning: exported function AtgViewAsComplex should have comment or be unexported (golint)
    • Line 6677: warning: exported function AtgViewAsReal should have comment or be unexported (golint)
    • Line 6680: warning: exported function AtgVstack should have comment or be unexported (golint)
    • Line 6685: warning: exported function AtgVstackOut should have comment or be unexported (golint)
    • Line 6691: warning: exported function AtgWhere1 should have comment or be unexported (golint)
    • Line 6694: warning: exported function AtgWhere2 should have comment or be unexported (golint)
    • Line 6697: warning: exported function AtgWhere3 should have comment or be unexported (golint)
    • Line 6700: warning: exported function AtgWhere4 should have comment or be unexported (golint)
    • Line 6703: warning: exported function AtgZero_ should have comment or be unexported (golint)
    • Line 6703: warning: don't use underscores in Go names; func AtgZero_ should be AtgZero (golint)
    • Line 6706: warning: exported function AtgZeros should have comment or be unexported (golint)
    • Line 6713: warning: exported function AtgZerosLike should have comment or be unexported (golint)
    • Line 6716: warning: exported function AtgZerosOut should have comment or be unexported (golint)
    • gotch/vision/densenet.go
    • Line 117: warning: exported function DenseNet121 should have comment or be unexported (golint)
    • Line 121: warning: exported function DenseNet161 should have comment or be unexported (golint)
    • Line 125: warning: exported function DenseNet169 should have comment or be unexported (golint)
    • Line 129: warning: exported function DenseNet201 should have comment or be unexported (golint)
    • gotch/vision/aug/rotate.go
    • Line 41: warning: exported function Rotate should have comment or be unexported (golint)
    • Line 58: warning: comment on exported type RotateModule should be of the form "RotateModule ..." (with optional leading article) (golint)
    • Line 77: warning: exported function WithRotate should have comment or be unexported (golint)
    • Line 84: warning: comment on exported type RandRotateModule should be of the form "RandRotateModule ..." (with optional leading article) (golint)
    • Line 104: warning: exported function WithRandRotate should have comment or be unexported (golint)
    • gotch/vision/aug/sharpness.go
    • Line 7: warning: comment on exported type RandomAdjustSharpness should be of the form "RandomAdjustSharpness ..." (with optional leading article) (golint)
    • Line 33: warning: exported function WithSharpnessPvalue should have comment or be unexported (golint)
    • Line 39: warning: exported function WithSharpnessFactor should have comment or be unexported (golint)
    • Line 56: warning: exported method RandomAdjustSharpness.Forward should have comment or be unexported (golint)
    • Line 69: warning: exported function WithRandomAdjustSharpness should have comment or be unexported (golint)
    • gotch/vision/aug/solarize.go
    • Line 34: warning: exported function WithSolarizePvalue should have comment or be unexported (golint)
    • Line 40: warning: exported function WithSolarizeThreshold should have comment or be unexported (golint)
    • Line 59: warning: exported method RandomSolarize.Forward should have comment or be unexported (golint)
    • Line 73: warning: exported function WithRandomSolarize should have comment or be unexported (golint)
    • gotch/vision/efficientnet.go
    • Line 16: warning: exported type BlockArgs should have comment or be unexported (golint)
    • Line 103: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 236: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 322: warning: exported function EfficientNetB0 should have comment or be unexported (golint)
    • Line 326: warning: exported function EfficientNetB1 should have comment or be unexported (golint)
    • Line 330: warning: exported function EfficientNetB2 should have comment or be unexported (golint)
    • Line 334: warning: exported function EfficientNetB3 should have comment or be unexported (golint)
    • Line 338: warning: exported function EfficientNetB4 should have comment or be unexported (golint)
    • Line 342: warning: exported function EfficientNetB5 should have comment or be unexported (golint)
    • Line 346: warning: exported function EfficientNetB6 should have comment or be unexported (golint)
    • Line 350: warning: exported function EfficientNetB7 should have comment or be unexported (golint)
    • gotch/tensor/tensor-generated.go
    • Line 15: warning: don't use underscores in Go names; method __And_ should be _And (golint)
    • Line 26: warning: don't use underscores in Go names; method __And1 should be _And1 (golint)
    • Line 37: warning: don't use underscores in Go names; method __Iand_ should be _Iand (golint)
    • Line 48: warning: don't use underscores in Go names; method __Iand1 should be _Iand1 (golint)
    • Line 59: warning: don't use underscores in Go names; method __Ilshift_ should be _Ilshift (golint)
    • Line 70: warning: don't use underscores in Go names; method __Ilshift1 should be _Ilshift1 (golint)
    • Line 81: warning: don't use underscores in Go names; method __Ior_ should be _Ior (golint)
    • Line 92: warning: don't use underscores in Go names; method __Ior1 should be _Ior1 (golint)
    • Line 103: warning: don't use underscores in Go names; method __Irshift_ should be _Irshift (golint)
    • Line 114: warning: don't use underscores in Go names; method __Irshift1 should be _Irshift1 (golint)
    • Line 125: warning: don't use underscores in Go names; method __Ixor_ should be _Ixor (golint)
    • Line 136: warning: don't use underscores in Go names; method __Ixor1 should be _Ixor1 (golint)
    • Line 147: warning: don't use underscores in Go names; method __Lshift_ should be _Lshift (golint)
    • Line 158: warning: don't use underscores in Go names; method __Lshift1 should be _Lshift1 (golint)
    • Line 169: warning: don't use underscores in Go names; method __Or_ should be _Or (golint)
    • Line 180: warning: don't use underscores in Go names; method __Or1 should be _Or1 (golint)
    • Line 191: warning: don't use underscores in Go names; method __Rshift_ should be _Rshift (golint)
    • Line 202: warning: don't use underscores in Go names; method __Rshift1 should be _Rshift1 (golint)
    • Line 213: warning: don't use underscores in Go names; method __Xor_ should be _Xor (golint)
    • Line 224: warning: don't use underscores in Go names; method __Xor1 should be _Xor1 (golint)
    • Line 295: warning: don't use underscores in Go names; method _AddRelu_ should be _AddRelu (golint)
    • Line 321: warning: don't use underscores in Go names; method _AddmvImpl_ should be _AddmvImpl (golint)
    • Line 344: warning: don't use underscores in Go names; method _BaddbmmMkl_ should be _BaddbmmMkl (golint)
    • Line 627: warning: don't use underscores in Go names; method _Coalesced_ should be _Coalesced (golint)
    • Line 1143: warning: don't use underscores in Go names; method _IndexCopy_ should be _IndexCopy (golint)
    • Line 1154: warning: don't use underscores in Go names; method _IndexPutImpl_ should be _IndexPutImpl (golint)
    • Line 1361: warning: don't use underscores in Go names; method _MkldnnTranspose_ should be _MkldnnTranspose (golint)
    • Line 1538: warning: don't use underscores in Go names; method _SobolEngineFf_ should be _SobolEngineFf (golint)
    • Line 1549: warning: don't use underscores in Go names; method _SobolEngineInitializeState_ should be _SobolEngineInitializeState (golint)
    • Line 1560: warning: don't use underscores in Go names; method _SobolEngineScramble_ should be _SobolEngineScramble (golint)
    • Line 2002: warning: exported method Tensor.Abs should have comment or be unexported (golint)
    • Line 2017: warning: exported method Tensor.Abs_ should have comment or be unexported (golint)
    • Line 2017: warning: don't use underscores in Go names; method Abs_ should be Abs (golint)
    • Line 2028: warning: exported method Tensor.AbsOut should have comment or be unexported (golint)
    • Line 2043: warning: exported method Tensor.Absolute should have comment or be unexported (golint)
    • Line 2058: warning: exported method Tensor.Absolute_ should have comment or be unexported (golint)
    • Line 2058: warning: don't use underscores in Go names; method Absolute_ should be Absolute (golint)
    • Line 2069: warning: exported method Tensor.AbsoluteOut should have comment or be unexported (golint)
    • Line 2084: warning: exported method Tensor.Acos should have comment or be unexported (golint)
    • Line 2099: warning: exported method Tensor.Acos_ should have comment or be unexported (golint)
    • Line 2099: warning: don't use underscores in Go names; method Acos_ should be Acos (golint)
    • Line 2110: warning: exported method Tensor.AcosOut should have comment or be unexported (golint)
    • Line 2125: warning: exported method Tensor.Acosh should have comment or be unexported (golint)
    • Line 2140: warning: exported method Tensor.Acosh_ should have comment or be unexported (golint)
    • Line 2140: warning: don't use underscores in Go names; method Acosh_ should be Acosh (golint)
    • Line 2151: warning: exported method Tensor.AcoshOut should have comment or be unexported (golint)
    • Line 2166: warning: exported method Tensor.AdaptiveAvgPool1d should have comment or be unexported (golint)
    • Line 2181: warning: exported method Tensor.AdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 2196: warning: exported method Tensor.AdaptiveAvgPool2dOut should have comment or be unexported (golint)
    • Line 2211: warning: exported method Tensor.AdaptiveAvgPool3d should have comment or be unexported (golint)
    • Line 2226: warning: exported method Tensor.AdaptiveAvgPool3dBackward should have comment or be unexported (golint)
    • Line 2241: warning: exported method Tensor.AdaptiveAvgPool3dBackwardOut should have comment or be unexported (golint)
    • Line 2256: warning: exported method Tensor.AdaptiveAvgPool3dOut should have comment or be unexported (golint)
    • Line 2271: warning: exported method Tensor.AdaptiveMaxPool2dBackward should have comment or be unexported (golint)
    • Line 2286: warning: exported method Tensor.AdaptiveMaxPool2dBackwardOut should have comment or be unexported (golint)
    • Line 2301: warning: exported method Tensor.AdaptiveMaxPool3dBackward should have comment or be unexported (golint)
    • Line 2316: warning: exported method Tensor.AdaptiveMaxPool3dBackwardOut should have comment or be unexported (golint)
    • Line 2331: warning: exported method Tensor.Add should have comment or be unexported (golint)
    • Line 2346: warning: exported method Tensor.Add1 should have comment or be unexported (golint)
    • Line 2361: warning: exported method Tensor.Add_ should have comment or be unexported (golint)
    • Line 2361: warning: don't use underscores in Go names; method Add_ should be Add (golint)
    • Line 2372: warning: exported method Tensor.Add1_ should have comment or be unexported (golint)
    • Line 2372: warning: don't use underscores in Go names; method Add1_ should be Add1 (golint)
    • Line 2383: warning: exported method Tensor.AddOut should have comment or be unexported (golint)
    • Line 2398: warning: exported method Tensor.Addbmm should have comment or be unexported (golint)
    • Line 2413: warning: exported method Tensor.Addbmm_ should have comment or be unexported (golint)
    • Line 2413: warning: don't use underscores in Go names; method Addbmm_ should be Addbmm (golint)
    • Line 2424: warning: exported method Tensor.AddbmmOut should have comment or be unexported (golint)
    • Line 2439: warning: exported method Tensor.Addcdiv should have comment or be unexported (golint)
    • Line 2454: warning: exported method Tensor.Addcdiv_ should have comment or be unexported (golint)
    • Line 2454: warning: don't use underscores in Go names; method Addcdiv_ should be Addcdiv (golint)
    • Line 2465: warning: exported method Tensor.AddcdivOut should have comment or be unexported (golint)
    • Line 2480: warning: exported method Tensor.Addcmul should have comment or be unexported (golint)
    • Line 2495: warning: exported method Tensor.Addcmul_ should have comment or be unexported (golint)
    • Line 2495: warning: don't use underscores in Go names; method Addcmul_ should be Addcmul (golint)
    • Line 2506: warning: exported method Tensor.AddcmulOut should have comment or be unexported (golint)
    • Line 2521: warning: exported method Tensor.Addmm should have comment or be unexported (golint)
    • Line 2536: warning: exported method Tensor.Addmm_ should have comment or be unexported (golint)
    • Line 2536: warning: don't use underscores in Go names; method Addmm_ should be Addmm (golint)
    • Line 2547: warning: exported method Tensor.AddmmOut should have comment or be unexported (golint)
    • Line 2562: warning: exported method Tensor.Addmv should have comment or be unexported (golint)
    • Line 2577: warning: exported method Tensor.Addmv_ should have comment or be unexported (golint)
    • Line 2577: warning: don't use underscores in Go names; method Addmv_ should be Addmv (golint)
    • Line 2588: warning: exported method Tensor.AddmvOut should have comment or be unexported (golint)
    • Line 2603: warning: exported method Tensor.Addr should have comment or be unexported (golint)
    • Line 2618: warning: exported method Tensor.Addr_ should have comment or be unexported (golint)
    • Line 2618: warning: don't use underscores in Go names; method Addr_ should be Addr (golint)
    • Line 2629: warning: exported method Tensor.AddrOut should have comment or be unexported (golint)
    • Line 2644: warning: exported function AffineGridGenerator should have comment or be unexported (golint)
    • Line 2660: warning: exported function AffineGridGeneratorBackward should have comment or be unexported (golint)
    • Line 2676: warning: exported method Tensor.Alias should have comment or be unexported (golint)
    • Line 2691: warning: exported method Tensor.AlignAs should have comment or be unexported (golint)
    • Line 2706: warning: exported method Tensor.All should have comment or be unexported (golint)
    • Line 2721: warning: exported method Tensor.All1 should have comment or be unexported (golint)
    • Line 2740: warning: exported method Tensor.AllOut should have comment or be unexported (golint)
    • Line 2759: warning: exported function AlphaDropout should have comment or be unexported (golint)
    • Line 2775: warning: exported method Tensor.AlphaDropout_ should have comment or be unexported (golint)
    • Line 2775: warning: don't use underscores in Go names; method AlphaDropout_ should be AlphaDropout (golint)
    • Line 2790: warning: exported method Tensor.Amax should have comment or be unexported (golint)
    • Line 2809: warning: exported method Tensor.AmaxOut should have comment or be unexported (golint)
    • Line 2828: warning: exported method Tensor.Amin should have comment or be unexported (golint)
    • Line 2847: warning: exported method Tensor.AminOut should have comment or be unexported (golint)
    • Line 2866: warning: exported method Tensor.Angle should have comment or be unexported (golint)
    • Line 2881: warning: exported method Tensor.AngleOut should have comment or be unexported (golint)
    • Line 2896: warning: exported method Tensor.Any should have comment or be unexported (golint)
    • Line 2911: warning: exported method Tensor.Any1 should have comment or be unexported (golint)
    • Line 2930: warning: exported method Tensor.AnyOut should have comment or be unexported (golint)
    • Line 2949: warning: exported function Arange should have comment or be unexported (golint)
    • Line 2961: warning: exported function Arange1 should have comment or be unexported (golint)
    • Line 2973: warning: exported function Arange2 should have comment or be unexported (golint)
    • Line 2985: warning: exported function ArangeOut should have comment or be unexported (golint)
    • Line 2997: warning: exported function ArangeOut1 should have comment or be unexported (golint)
    • Line 3009: warning: exported method Tensor.Arccos should have comment or be unexported (golint)
    • Line 3024: warning: exported method Tensor.Arccos_ should have comment or be unexported (golint)
    • Line 3024: warning: don't use underscores in Go names; method Arccos_ should be Arccos (golint)
    • Line 3035: warning: exported method Tensor.ArccosOut should have comment or be unexported (golint)
    • Line 3050: warning: exported method Tensor.Arccosh should have comment or be unexported (golint)
    • Line 3065: warning: exported method Tensor.Arccosh_ should have comment or be unexported (golint)
    • Line 3065: warning: don't use underscores in Go names; method Arccosh_ should be Arccosh (golint)
    • Line 3076: warning: exported method Tensor.ArccoshOut should have comment or be unexported (golint)
    • Line 3091: warning: exported method Tensor.Arcsin should have comment or be unexported (golint)
    • Line 3106: warning: exported method Tensor.Arcsin_ should have comment or be unexported (golint)
    • Line 3106: warning: don't use underscores in Go names; method Arcsin_ should be Arcsin (golint)
    • Line 3117: warning: exported method Tensor.ArcsinOut should have comment or be unexported (golint)
    • Line 3132: warning: exported method Tensor.Arcsinh should have comment or be unexported (golint)
    • Line 3147: warning: exported method Tensor.Arcsinh_ should have comment or be unexported (golint)
    • Line 3147: warning: don't use underscores in Go names; method Arcsinh_ should be Arcsinh (golint)
    • Line 3158: warning: exported method Tensor.ArcsinhOut should have comment or be unexported (golint)
    • Line 3173: warning: exported method Tensor.Arctan should have comment or be unexported (golint)
    • Line 3188: warning: exported method Tensor.Arctan_ should have comment or be unexported (golint)
    • Line 3188: warning: don't use underscores in Go names; method Arctan_ should be Arctan (golint)
    • Line 3199: warning: exported method Tensor.ArctanOut should have comment or be unexported (golint)
    • Line 3214: warning: exported method Tensor.Arctanh should have comment or be unexported (golint)
    • Line 3229: warning: exported method Tensor.Arctanh_ should have comment or be unexported (golint)
    • Line 3229: warning: don't use underscores in Go names; method Arctanh_ should be Arctanh (golint)
    • Line 3240: warning: exported method Tensor.ArctanhOut should have comment or be unexported (golint)
    • Line 3255: warning: exported method Tensor.Argmax should have comment or be unexported (golint)
    • Line 3280: warning: exported method Tensor.Argmin should have comment or be unexported (golint)
    • Line 3305: warning: exported method Tensor.Argsort should have comment or be unexported (golint)
    • Line 3324: warning: exported method Tensor.AsStrided should have comment or be unexported (golint)
    • Line 3345: warning: exported method Tensor.AsStrided_ should have comment or be unexported (golint)
    • Line 3345: warning: don't use underscores in Go names; method AsStrided_ should be AsStrided (golint)
    • Line 3362: warning: exported method Tensor.Asin should have comment or be unexported (golint)
    • Line 3377: warning: exported method Tensor.Asin_ should have comment or be unexported (golint)
    • Line 3377: warning: don't use underscores in Go names; method Asin_ should be Asin (golint)
    • Line 3388: warning: exported method Tensor.AsinOut should have comment or be unexported (golint)
    • Line 3403: warning: exported method Tensor.Asinh should have comment or be unexported (golint)
    • Line 3418: warning: exported method Tensor.Asinh_ should have comment or be unexported (golint)
    • Line 3418: warning: don't use underscores in Go names; method Asinh_ should be Asinh (golint)
    • Line 3429: warning: exported method Tensor.AsinhOut should have comment or be unexported (golint)
    • Line 3444: warning: exported method Tensor.Atan should have comment or be unexported (golint)
    • Line 3459: warning: exported method Tensor.Atan2 should have comment or be unexported (golint)
    • Line 3474: warning: exported method Tensor.Atan2_ should have comment or be unexported (golint)
    • Line 3474: warning: don't use underscores in Go names; method Atan2_ should be Atan2 (golint)
    • Line 3485: warning: exported method Tensor.Atan2Out should have comment or be unexported (golint)
    • Line 3500: warning: exported method Tensor.Atan_ should have comment or be unexported (golint)
    • Line 3500: warning: don't use underscores in Go names; method Atan_ should be Atan (golint)
    • Line 3511: warning: exported method Tensor.AtanOut should have comment or be unexported (golint)
    • Line 3526: warning: exported method Tensor.Atanh should have comment or be unexported (golint)
    • Line 3541: warning: exported method Tensor.Atanh_ should have comment or be unexported (golint)
    • Line 3541: warning: don't use underscores in Go names; method Atanh_ should be Atanh (golint)
    • Line 3552: warning: exported method Tensor.AtanhOut should have comment or be unexported (golint)
    • Line 3567: warning: exported method Tensor.Atleast1d should have comment or be unexported (golint)
    • Line 3582: warning: exported method Tensor.Atleast2d should have comment or be unexported (golint)
    • Line 3597: warning: exported method Tensor.Atleast3d should have comment or be unexported (golint)
    • Line 3612: warning: exported method Tensor.AvgPool1d should have comment or be unexported (golint)
    • Line 3635: warning: exported method Tensor.AvgPool2d should have comment or be unexported (golint)
    • Line 3664: warning: exported method Tensor.AvgPool2dBackward should have comment or be unexported (golint)
    • Line 3693: warning: exported method Tensor.AvgPool2dBackwardOut should have comment or be unexported (golint)
    • Line 3722: warning: exported method Tensor.AvgPool2dOut should have comment or be unexported (golint)
    • Line 3751: warning: exported method Tensor.AvgPool3d should have comment or be unexported (golint)
    • Line 3780: warning: exported method Tensor.AvgPool3dBackward should have comment or be unexported (golint)
    • Line 3809: warning: exported method Tensor.AvgPool3dBackwardOut should have comment or be unexported (golint)
    • Line 3838: warning: exported method Tensor.AvgPool3dOut should have comment or be unexported (golint)
    • Line 3867: warning: exported method Tensor.Baddbmm should have comment or be unexported (golint)
    • Line 3882: warning: exported method Tensor.Baddbmm_ should have comment or be unexported (golint)
    • Line 3882: warning: don't use underscores in Go names; method Baddbmm_ should be Baddbmm (golint)
    • Line 3893: warning: exported method Tensor.BaddbmmOut should have comment or be unexported (golint)
    • Line 3908: warning: exported function BartlettWindow should have comment or be unexported (golint)
    • Line 3920: warning: exported function BartlettWindow1 should have comment or be unexported (golint)
    • Line 3936: warning: exported function BatchNorm should have comment or be unexported (golint)
    • Line 3956: warning: exported function BatchNormBackwardElemt should have comment or be unexported (golint)
    • Line 3968: warning: exported function BatchNormElemt should have comment or be unexported (golint)
    • Line 3980: warning: exported function BatchNormElemtOut should have comment or be unexported (golint)
    • Line 3992: warning: exported method Tensor.Bernoulli should have comment or be unexported (golint)
    • Line 4007: warning: exported method Tensor.Bernoulli1 should have comment or be unexported (golint)
    • Line 4022: warning: exported method Tensor.Bernoulli_ should have comment or be unexported (golint)
    • Line 4022: warning: don't use underscores in Go names; method Bernoulli_ should be Bernoulli (golint)
    • Line 4033: warning: exported method Tensor.Bernoulli1_ should have comment or be unexported (golint)
    • Line 4033: warning: don't use underscores in Go names; method Bernoulli1_ should be Bernoulli1 (golint)
    • Line 4044: warning: exported method Tensor.BernoulliOut should have comment or be unexported (golint)
    • Line 4059: warning: exported function Bilinear should have comment or be unexported (golint)
    • Line 4071: warning: exported method Tensor.BinaryCrossEntropy should have comment or be unexported (golint)
    • Line 4086: warning: exported method Tensor.BinaryCrossEntropyBackward should have comment or be unexported (golint)
    • Line 4101: warning: exported method Tensor.BinaryCrossEntropyBackwardOut should have comment or be unexported (golint)
    • Line 4116: warning: exported method Tensor.BinaryCrossEntropyOut should have comment or be unexported (golint)
    • Line 4131: warning: exported method Tensor.BinaryCrossEntropyWithLogits should have comment or be unexported (golint)
    • Line 4146: warning: exported method Tensor.BinaryCrossEntropyWithLogitsBackward should have comment or be unexported (golint)
    • Line 4161: warning: exported method Tensor.Bincount should have comment or be unexported (golint)
    • Line 4176: warning: exported function Binomial should have comment or be unexported (golint)
    • Line 4188: warning: exported method Tensor.BitwiseAnd should have comment or be unexported (golint)
    • Line 4203: warning: exported method Tensor.BitwiseAnd1 should have comment or be unexported (golint)
    • Line 4218: warning: exported method Tensor.BitwiseAnd_ should have comment or be unexported (golint)
    • Line 4218: warning: don't use underscores in Go names; method BitwiseAnd_ should be BitwiseAnd (golint)
    • Line 4229: warning: exported method Tensor.BitwiseAnd1_ should have comment or be unexported (golint)
    • Line 4229: warning: don't use underscores in Go names; method BitwiseAnd1_ should be BitwiseAnd1 (golint)
    • Line 4240: warning: exported method Tensor.BitwiseAndOut should have comment or be unexported (golint)
    • Line 4255: warning: exported method Tensor.BitwiseAndOut1 should have comment or be unexported (golint)
    • Line 4270: warning: exported method Tensor.BitwiseNot should have comment or be unexported (golint)
    • Line 4285: warning: exported method Tensor.BitwiseNot_ should have comment or be unexported (golint)
    • Line 4285: warning: don't use underscores in Go names; method BitwiseNot_ should be BitwiseNot (golint)
    • Line 4296: warning: exported method Tensor.BitwiseNotOut should have comment or be unexported (golint)
    • Line 4311: warning: exported method Tensor.BitwiseOr should have comment or be unexported (golint)
    • Line 4326: warning: exported method Tensor.BitwiseOr1 should have comment or be unexported (golint)
    • Line 4341: warning: exported method Tensor.BitwiseOr_ should have comment or be unexported (golint)
    • Line 4341: warning: don't use underscores in Go names; method BitwiseOr_ should be BitwiseOr (golint)
    • Line 4352: warning: exported method Tensor.BitwiseOr1_ should have comment or be unexported (golint)
    • Line 4352: warning: don't use underscores in Go names; method BitwiseOr1_ should be BitwiseOr1 (golint)
    • Line 4363: warning: exported method Tensor.BitwiseOrOut should have comment or be unexported (golint)
    • Line 4378: warning: exported method Tensor.BitwiseOrOut1 should have comment or be unexported (golint)
    • Line 4393: warning: exported method Tensor.BitwiseXor should have comment or be unexported (golint)
    • Line 4408: warning: exported method Tensor.BitwiseXor1 should have comment or be unexported (golint)
    • Line 4423: warning: exported method Tensor.BitwiseXor_ should have comment or be unexported (golint)
    • Line 4423: warning: don't use underscores in Go names; method BitwiseXor_ should be BitwiseXor (golint)
    • Line 4434: warning: exported method Tensor.BitwiseXor1_ should have comment or be unexported (golint)
    • Line 4434: warning: don't use underscores in Go names; method BitwiseXor1_ should be BitwiseXor1 (golint)
    • Line 4445: warning: exported method Tensor.BitwiseXorOut should have comment or be unexported (golint)
    • Line 4460: warning: exported method Tensor.BitwiseXorOut1 should have comment or be unexported (golint)
    • Line 4475: warning: exported function BlackmanWindow should have comment or be unexported (golint)
    • Line 4487: warning: exported function BlackmanWindow1 should have comment or be unexported (golint)
    • Line 4503: warning: exported function BlockDiag should have comment or be unexported (golint)
    • Line 4519: warning: exported method Tensor.Bmm should have comment or be unexported (golint)
    • Line 4534: warning: exported method Tensor.BmmOut should have comment or be unexported (golint)
    • Line 4549: warning: exported method Tensor.Bucketize should have comment or be unexported (golint)
    • Line 4572: warning: exported function Bucketize1 should have comment or be unexported (golint)
    • Line 4592: warning: exported method Tensor.BucketizeOut should have comment or be unexported (golint)
    • Line 4615: warning: exported function CartesianProd should have comment or be unexported (golint)
    • Line 4631: warning: exported function Cat should have comment or be unexported (golint)
    • Line 4647: warning: exported function CatOut should have comment or be unexported (golint)
    • Line 4663: warning: exported method Tensor.Cauchy_ should have comment or be unexported (golint)
    • Line 4663: warning: don't use underscores in Go names; method Cauchy_ should be Cauchy (golint)
    • Line 4674: warning: exported function Cdist should have comment or be unexported (golint)
    • Line 4692: warning: exported method Tensor.Ceil should have comment or be unexported (golint)
    • Line 4707: warning: exported method Tensor.Ceil_ should have comment or be unexported (golint)
    • Line 4707: warning: don't use underscores in Go names; method Ceil_ should be Ceil (golint)
    • Line 4718: warning: exported method Tensor.CeilOut should have comment or be unexported (golint)
    • Line 4733: warning: exported method Tensor.Celu should have comment or be unexported (golint)
    • Line 4748: warning: exported method Tensor.Celu_ should have comment or be unexported (golint)
    • Line 4748: warning: don't use underscores in Go names; method Celu_ should be Celu (golint)
    • Line 4759: warning: exported function ChainMatmul should have comment or be unexported (golint)
    • Line 4775: warning: exported method Tensor.ChannelShuffle should have comment or be unexported (golint)
    • Line 4790: warning: exported method Tensor.Cholesky should have comment or be unexported (golint)
    • Line 4809: warning: exported method Tensor.CholeskyInverse should have comment or be unexported (golint)
    • Line 4828: warning: exported method Tensor.CholeskyInverseOut should have comment or be unexported (golint)
    • Line 4847: warning: exported method Tensor.CholeskyOut should have comment or be unexported (golint)
    • Line 4866: warning: exported method Tensor.CholeskySolve should have comment or be unexported (golint)
    • Line 4885: warning: exported method Tensor.CholeskySolveOut should have comment or be unexported (golint)
    • Line 4904: warning: exported method Tensor.Clamp should have comment or be unexported (golint)
    • Line 4919: warning: exported method Tensor.Clamp_ should have comment or be unexported (golint)
    • Line 4919: warning: don't use underscores in Go names; method Clamp_ should be Clamp (golint)
    • Line 4930: warning: exported method Tensor.ClampMax should have comment or be unexported (golint)
    • Line 4945: warning: exported method Tensor.ClampMax_ should have comment or be unexported (golint)
    • Line 4945: warning: don't use underscores in Go names; method ClampMax_ should be ClampMax (golint)
    • Line 4956: warning: exported method Tensor.ClampMaxOut should have comment or be unexported (golint)
    • Line 4971: warning: exported method Tensor.ClampMin should have comment or be unexported (golint)
    • Line 4986: warning: exported method Tensor.ClampMin_ should have comment or be unexported (golint)
    • Line 4986: warning: don't use underscores in Go names; method ClampMin_ should be ClampMin (golint)
    • Line 4997: warning: exported method Tensor.ClampMinOut should have comment or be unexported (golint)
    • Line 5012: warning: exported method Tensor.ClampOut should have comment or be unexported (golint)
    • Line 5027: warning: exported method Tensor.Clip should have comment or be unexported (golint)
    • Line 5042: warning: exported method Tensor.Clip_ should have comment or be unexported (golint)
    • Line 5042: warning: don't use underscores in Go names; method Clip_ should be Clip (golint)
    • Line 5053: warning: exported method Tensor.ClipOut should have comment or be unexported (golint)
    • Line 5068: warning: exported method Tensor.Coalesce should have comment or be unexported (golint)
    • Line 5083: warning: exported method Tensor.Col2im should have comment or be unexported (golint)
    • Line 5098: warning: exported function Col2imBackward should have comment or be unexported (golint)
    • Line 5110: warning: exported function Col2imBackwardOut should have comment or be unexported (golint)
    • Line 5122: warning: exported method Tensor.Col2imOut should have comment or be unexported (golint)
    • Line 5137: warning: exported method Tensor.Combinations should have comment or be unexported (golint)
    • Line 5156: warning: exported function Complex should have comment or be unexported (golint)
    • Line 5168: warning: exported function ComplexOut should have comment or be unexported (golint)
    • Line 5180: warning: exported method Tensor.Conj should have comment or be unexported (golint)
    • Line 5195: warning: exported method Tensor.ConjOut should have comment or be unexported (golint)
    • Line 5210: warning: exported method Tensor.ConstantPadNd should have comment or be unexported (golint)
    • Line 5225: warning: exported method Tensor.Contiguous should have comment or be unexported (golint)
    • Line 5240: warning: exported function Conv1d should have comment or be unexported (golint)
    • Line 5252: warning: exported function Conv2d should have comment or be unexported (golint)
    • Line 5264: warning: exported function Conv3d should have comment or be unexported (golint)
    • Line 5276: warning: exported method Tensor.ConvTbc should have comment or be unexported (golint)
    • Line 5291: warning: exported function ConvTranspose1d should have comment or be unexported (golint)
    • Line 5303: warning: exported function ConvTranspose2d should have comment or be unexported (golint)
    • Line 5315: warning: exported function ConvTranspose3d should have comment or be unexported (golint)
    • Line 5327: warning: exported function Convolution should have comment or be unexported (golint)
    • Line 5343: warning: exported function ConvolutionOverrideable should have comment or be unexported (golint)
    • Line 5359: warning: exported method Tensor.CopySparseToSparse_ should have comment or be unexported (golint)
    • Line 5359: warning: don't use underscores in Go names; method CopySparseToSparse_ should be CopySparseToSparse (golint)
    • Line 5374: warning: exported method Tensor.Cos should have comment or be unexported (golint)
    • Line 5389: warning: exported method Tensor.Cos_ should have comment or be unexported (golint)
    • Line 5389: warning: don't use underscores in Go names; method Cos_ should be Cos (golint)
    • Line 5400: warning: exported method Tensor.CosOut should have comment or be unexported (golint)
    • Line 5415: warning: exported method Tensor.Cosh should have comment or be unexported (golint)
    • Line 5430: warning: exported method Tensor.Cosh_ should have comment or be unexported (golint)
    • Line 5430: warning: don't use underscores in Go names; method Cosh_ should be Cosh (golint)
    • Line 5441: warning: exported method Tensor.CoshOut should have comment or be unexported (golint)
    • Line 5456: warning: exported function CosineEmbeddingLoss should have comment or be unexported (golint)
    • Line 5468: warning: exported function CosineSimilarity should have comment or be unexported (golint)
    • Line 5480: warning: exported method Tensor.CountNonzero should have comment or be unexported (golint)
    • Line 5495: warning: exported method Tensor.CountNonzero1 should have comment or be unexported (golint)
    • Line 5516: warning: exported method Tensor.Cross should have comment or be unexported (golint)
    • Line 5537: warning: exported method Tensor.CrossOut should have comment or be unexported (golint)
    • Line 5558: warning: exported function CtcLoss should have comment or be unexported (golint)
    • Line 5574: warning: exported function CtcLoss1 should have comment or be unexported (golint)
    • Line 5590: warning: exported function CudnnAffineGridGenerator should have comment or be unexported (golint)
    • Line 5602: warning: exported function CudnnAffineGridGeneratorBackward should have comment or be unexported (golint)
    • Line 5614: warning: exported method Tensor.CudnnConvolution should have comment or be unexported (golint)
    • Line 5637: warning: exported method Tensor.CudnnConvolution1 should have comment or be unexported (golint)
    • Line 5660: warning: exported method Tensor.CudnnConvolution2 should have comment or be unexported (golint)
    • Line 5687: warning: exported function CudnnConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 5711: warning: exported method Tensor.CudnnConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 5738: warning: exported method Tensor.CudnnConvolutionTranspose should have comment or be unexported (golint)
    • Line 5761: warning: exported method Tensor.CudnnConvolutionTranspose1 should have comment or be unexported (golint)
    • Line 5784: warning: exported method Tensor.CudnnConvolutionTranspose2 should have comment or be unexported (golint)
    • Line 5811: warning: exported function CudnnConvolutionTransposeBackwardInput should have comment or be unexported (golint)
    • Line 5835: warning: exported method Tensor.CudnnConvolutionTransposeBackwardWeight should have comment or be unexported (golint)
    • Line 5862: warning: exported method Tensor.CudnnGridSampler should have comment or be unexported (golint)
    • Line 5877: warning: exported function CummaxminBackward should have comment or be unexported (golint)
    • Line 5889: warning: exported method Tensor.Cumprod should have comment or be unexported (golint)
    • Line 5904: warning: exported function CumprodBackward should have comment or be unexported (golint)
    • Line 5916: warning: exported method Tensor.CumprodOut should have comment or be unexported (golint)
    • Line 5931: warning: exported method Tensor.Cumsum should have comment or be unexported (golint)
    • Line 5946: warning: exported method Tensor.CumsumOut should have comment or be unexported (golint)
    • Line 5961: warning: exported method Tensor.Data should have comment or be unexported (golint)
    • Line 5976: warning: exported method Tensor.Deg2rad should have comment or be unexported (golint)
    • Line 5991: warning: exported method Tensor.Deg2rad_ should have comment or be unexported (golint)
    • Line 5991: warning: don't use underscores in Go names; method Deg2rad_ should be Deg2rad (golint)
    • Line 6002: warning: exported method Tensor.Deg2radOut should have comment or be unexported (golint)
    • Line 6017: warning: exported method Tensor.Dequantize should have comment or be unexported (golint)
    • Line 6032: warning: exported method Tensor.Det should have comment or be unexported (golint)
    • Line 6047: warning: exported method Tensor.Detach should have comment or be unexported (golint)
    • Line 6062: warning: exported method Tensor.Detach_ should have comment or be unexported (golint)
    • Line 6062: warning: don't use underscores in Go names; method Detach_ should be Detach (golint)
    • Line 6073: warning: exported method Tensor.Diag should have comment or be unexported (golint)
    • Line 6088: warning: exported function DiagBackward should have comment or be unexported (golint)
    • Line 6100: warning: exported method Tensor.DiagEmbed should have comment or be unexported (golint)
    • Line 6115: warning: exported method Tensor.DiagOut should have comment or be unexported (golint)
    • Line 6130: warning: exported method Tensor.Diagflat should have comment or be unexported (golint)
    • Line 6145: warning: exported method Tensor.Diagonal should have comment or be unexported (golint)
    • Line 6160: warning: exported function DiagonalBackward should have comment or be unexported (golint)
    • Line 6172: warning: exported method Tensor.Digamma should have comment or be unexported (golint)
    • Line 6187: warning: exported method Tensor.Digamma_ should have comment or be unexported (golint)
    • Line 6187: warning: don't use underscores in Go names; method Digamma_ should be Digamma (golint)
    • Line 6198: warning: exported method Tensor.DigammaOut should have comment or be unexported (golint)
    • Line 6213: warning: exported method Tensor.Dist should have comment or be unexported (golint)
    • Line 6228: warning: exported method Tensor.Div should have comment or be unexported (golint)
    • Line 6243: warning: exported method Tensor.Div1 should have comment or be unexported (golint)
    • Line 6258: warning: exported method Tensor.Div_ should have comment or be unexported (golint)
    • Line 6258: warning: don't use underscores in Go names; method Div_ should be Div (golint)
    • Line 6269: warning: exported method Tensor.Div1_ should have comment or be unexported (golint)
    • Line 6269: warning: don't use underscores in Go names; method Div1_ should be Div1 (golint)
    • Line 6280: warning: exported method Tensor.DivOut should have comment or be unexported (golint)
    • Line 6295: warning: exported method Tensor.Divide should have comment or be unexported (golint)
    • Line 6310: warning: exported method Tensor.Divide1 should have comment or be unexported (golint)
    • Line 6325: warning: exported method Tensor.Divide_ should have comment or be unexported (golint)
    • Line 6325: warning: don't use underscores in Go names; method Divide_ should be Divide (golint)
    • Line 6336: warning: exported method Tensor.Divide1_ should have comment or be unexported (golint)
    • Line 6336: warning: don't use underscores in Go names; method Divide1_ should be Divide1 (golint)
    • Line 6347: warning: exported method Tensor.DivideOut should have comment or be unexported (golint)
    • Line 6362: warning: exported method Tensor.Dot should have comment or be unexported (golint)
    • Line 6377: warning: exported method Tensor.DotOut should have comment or be unexported (golint)
    • Line 6392: warning: exported function Dropout should have comment or be unexported (golint)
    • Line 6408: warning: exported method Tensor.Dropout_ should have comment or be unexported (golint)
    • Line 6408: warning: don't use underscores in Go names; method Dropout_ should be Dropout (golint)
    • Line 6423: warning: exported function Dstack should have comment or be unexported (golint)
    • Line 6439: warning: exported function DstackOut should have comment or be unexported (golint)
    • Line 6455: warning: exported function Einsum should have comment or be unexported (golint)
    • Line 6471: warning: exported method Tensor.Elu should have comment or be unexported (golint)
    • Line 6486: warning: exported method Tensor.Elu_ should have comment or be unexported (golint)
    • Line 6486: warning: don't use underscores in Go names; method Elu_ should be Elu (golint)
    • Line 6497: warning: exported function EluBackward should have comment or be unexported (golint)
    • Line 6509: warning: exported function EluBackwardOut should have comment or be unexported (golint)
    • Line 6521: warning: exported method Tensor.EluOut should have comment or be unexported (golint)
    • Line 6536: warning: exported function Embedding should have comment or be unexported (golint)
    • Line 6556: warning: exported function EmbeddingBackward should have comment or be unexported (golint)
    • Line 6576: warning: exported function EmbeddingDenseBackward should have comment or be unexported (golint)
    • Line 6592: warning: exported method Tensor.EmbeddingRenorm_ should have comment or be unexported (golint)
    • Line 6592: warning: don't use underscores in Go names; method EmbeddingRenorm_ should be EmbeddingRenorm (golint)
    • Line 6603: warning: exported function EmbeddingSparseBackward should have comment or be unexported (golint)
    • Line 6619: warning: exported function Empty should have comment or be unexported (golint)
    • Line 6631: warning: exported method Tensor.EmptyLike should have comment or be unexported (golint)
    • Line 6646: warning: exported function EmptyMeta should have comment or be unexported (golint)
    • Line 6658: warning: exported function EmptyOut should have comment or be unexported (golint)
    • Line 6670: warning: exported function EmptyQuantized should have comment or be unexported (golint)
    • Line 6682: warning: exported function EmptyStrided should have comment or be unexported (golint)
    • Line 6694: warning: exported method Tensor.Eq should have comment or be unexported (golint)
    • Line 6709: warning: exported method Tensor.Eq1 should have comment or be unexported (golint)
    • Line 6724: warning: exported method Tensor.Eq_ should have comment or be unexported (golint)
    • Line 6724: warning: don't use underscores in Go names; method Eq_ should be Eq (golint)
    • Line 6735: warning: exported method Tensor.Eq1_ should have comment or be unexported (golint)
    • Line 6735: warning: don't use underscores in Go names; method Eq1_ should be Eq1 (golint)
    • Line 6746: warning: exported method Tensor.EqOut should have comment or be unexported (golint)
    • Line 6761: warning: exported method Tensor.EqOut1 should have comment or be unexported (golint)
    • Line 6776: warning: exported method Tensor.Erf should have comment or be unexported (golint)
    • Line 6791: warning: exported method Tensor.Erf_ should have comment or be unexported (golint)
    • Line 6791: warning: don't use underscores in Go names; method Erf_ should be Erf (golint)
    • Line 6802: warning: exported method Tensor.ErfOut should have comment or be unexported (golint)
    • Line 6817: warning: exported method Tensor.Erfc should have comment or be unexported (golint)
    • Line 6832: warning: exported method Tensor.Erfc_ should have comment or be unexported (golint)
    • Line 6832: warning: don't use underscores in Go names; method Erfc_ should be Erfc (golint)
    • Line 6843: warning: exported method Tensor.ErfcOut should have comment or be unexported (golint)
    • Line 6858: warning: exported method Tensor.Erfinv should have comment or be unexported (golint)
    • Line 6873: warning: exported method Tensor.Erfinv_ should have comment or be unexported (golint)
    • Line 6873: warning: don't use underscores in Go names; method Erfinv_ should be Erfinv (golint)
    • Line 6884: warning: exported method Tensor.ErfinvOut should have comment or be unexported (golint)
    • Line 6899: warning: exported method Tensor.Exp should have comment or be unexported (golint)
    • Line 6914: warning: exported method Tensor.Exp2 should have comment or be unexported (golint)
    • Line 6929: warning: exported method Tensor.Exp2_ should have comment or be unexported (golint)
    • Line 6929: warning: don't use underscores in Go names; method Exp2_ should be Exp2 (golint)
    • Line 6940: warning: exported method Tensor.Exp2Out should have comment or be unexported (golint)
    • Line 6955: warning: exported method Tensor.Exp_ should have comment or be unexported (golint)
    • Line 6955: warning: don't use underscores in Go names; method Exp_ should be Exp (golint)
    • Line 6966: warning: exported method Tensor.ExpOut should have comment or be unexported (golint)
    • Line 6981: warning: exported method Tensor.Expand should have comment or be unexported (golint)
    • Line 7000: warning: exported method Tensor.ExpandAs should have comment or be unexported (golint)
    • Line 7015: warning: exported method Tensor.Expm1 should have comment or be unexported (golint)
    • Line 7030: warning: exported method Tensor.Expm1_ should have comment or be unexported (golint)
    • Line 7030: warning: don't use underscores in Go names; method Expm1_ should be Expm1 (golint)
    • Line 7041: warning: exported method Tensor.Expm1Out should have comment or be unexported (golint)
    • Line 7056: warning: exported method Tensor.Exponential_ should have comment or be unexported (golint)
    • Line 7056: warning: don't use underscores in Go names; method Exponential_ should be Exponential (golint)
    • Line 7067: warning: exported function Eye should have comment or be unexported (golint)
    • Line 7079: warning: exported function Eye1 should have comment or be unexported (golint)
    • Line 7091: warning: exported function EyeOut should have comment or be unexported (golint)
    • Line 7103: warning: exported function EyeOut1 should have comment or be unexported (golint)
    • Line 7115: warning: exported method Tensor.FakeQuantizePerChannelAffine should have comment or be unexported (golint)
    • Line 7130: warning: exported method Tensor.FakeQuantizePerChannelAffineBackward should have comment or be unexported (golint)
    • Line 7145: warning: exported method Tensor.FakeQuantizePerTensorAffine should have comment or be unexported (golint)
    • Line 7160: warning: exported method Tensor.FakeQuantizePerTensorAffineBackward should have comment or be unexported (golint)
    • Line 7175: warning: exported function FbgemmLinearFp16Weight should have comment or be unexported (golint)
    • Line 7187: warning: exported function FbgemmLinearFp16WeightFp32Activation should have comment or be unexported (golint)
    • Line 7199: warning: exported function FbgemmLinearInt8Weight should have comment or be unexported (golint)
    • Line 7211: warning: exported function FbgemmLinearInt8WeightFp32Activation should have comment or be unexported (golint)
    • Line 7223: warning: exported function FbgemmPackGemmMatrixFp16 should have comment or be unexported (golint)
    • Line 7235: warning: exported function FbgemmPackQuantizedMatrix should have comment or be unexported (golint)
    • Line 7247: warning: exported function FbgemmPackQuantizedMatrix1 should have comment or be unexported (golint)
    • Line 7259: warning: exported function FeatureAlphaDropout should have comment or be unexported (golint)
    • Line 7275: warning: exported method Tensor.FeatureAlphaDropout_ should have comment or be unexported (golint)
    • Line 7275: warning: don't use underscores in Go names; method FeatureAlphaDropout_ should be FeatureAlphaDropout (golint)
    • Line 7290: warning: exported function FeatureDropout should have comment or be unexported (golint)
    • Line 7306: warning: exported method Tensor.FeatureDropout_ should have comment or be unexported (golint)
    • Line 7306: warning: don't use underscores in Go names; method FeatureDropout_ should be FeatureDropout (golint)
    • Line 7321: warning: exported method Tensor.Fft should have comment or be unexported (golint)
    • Line 7340: warning: exported method Tensor.FftFft should have comment or be unexported (golint)
    • Line 7361: warning: exported method Tensor.FftFftn should have comment or be unexported (golint)
    • Line 7376: warning: exported method Tensor.FftHfft should have comment or be unexported (golint)
    • Line 7397: warning: exported method Tensor.FftIfft should have comment or be unexported (golint)
    • Line 7418: warning: exported method Tensor.FftIfftn should have comment or be unexported (golint)
    • Line 7433: warning: exported method Tensor.FftIhfft should have comment or be unexported (golint)
    • Line 7454: warning: exported method Tensor.FftIrfft should have comment or be unexported (golint)
    • Line 7475: warning: exported method Tensor.FftIrfftn should have comment or be unexported (golint)
    • Line 7490: warning: exported method Tensor.FftRfft should have comment or be unexported (golint)
    • Line 7511: warning: exported method Tensor.FftRfftn should have comment or be unexported (golint)
    • Line 7526: warning: exported method Tensor.Fill_ should have comment or be unexported (golint)
    • Line 7526: warning: don't use underscores in Go names; method Fill_ should be Fill (golint)
    • Line 7537: warning: exported method Tensor.Fill1_ should have comment or be unexported (golint)
    • Line 7537: warning: don't use underscores in Go names; method Fill1_ should be Fill1 (golint)
    • Line 7548: warning: exported method Tensor.FillDiagonal_ should have comment or be unexported (golint)
    • Line 7548: warning: don't use underscores in Go names; method FillDiagonal_ should be FillDiagonal (golint)
    • Line 7563: warning: exported method Tensor.Fix should have comment or be unexported (golint)
    • Line 7578: warning: exported method Tensor.Fix_ should have comment or be unexported (golint)
    • Line 7578: warning: don't use underscores in Go names; method Fix_ should be Fix (golint)
    • Line 7589: warning: exported method Tensor.FixOut should have comment or be unexported (golint)
    • Line 7604: warning: exported method Tensor.Flatten should have comment or be unexported (golint)
    • Line 7619: warning: exported method Tensor.Flip should have comment or be unexported (golint)
    • Line 7634: warning: exported method Tensor.Fliplr should have comment or be unexported (golint)
    • Line 7649: warning: exported method Tensor.Flipud should have comment or be unexported (golint)
    • Line 7664: warning: exported method Tensor.Floor should have comment or be unexported (golint)
    • Line 7679: warning: exported method Tensor.Floor_ should have comment or be unexported (golint)
    • Line 7679: warning: don't use underscores in Go names; method Floor_ should be Floor (golint)
    • Line 7690: warning: exported method Tensor.FloorDivide should have comment or be unexported (golint)
    • Line 7705: warning: exported method Tensor.FloorDivide1 should have comment or be unexported (golint)
    • Line 7720: warning: exported method Tensor.FloorDivide_ should have comment or be unexported (golint)
    • Line 7720: warning: don't use underscores in Go names; method FloorDivide_ should be FloorDivide (golint)
    • Line 7731: warning: exported method Tensor.FloorDivide1_ should have comment or be unexported (golint)
    • Line 7731: warning: don't use underscores in Go names; method FloorDivide1_ should be FloorDivide1 (golint)
    • Line 7742: warning: exported method Tensor.FloorDivideOut should have comment or be unexported (golint)
    • Line 7757: warning: exported method Tensor.FloorOut should have comment or be unexported (golint)
    • Line 7772: warning: exported method Tensor.Fmod should have comment or be unexported (golint)
    • Line 7787: warning: exported method Tensor.Fmod1 should have comment or be unexported (golint)
    • Line 7802: warning: exported method Tensor.Fmod_ should have comment or be unexported (golint)
    • Line 7802: warning: don't use underscores in Go names; method Fmod_ should be Fmod (golint)
    • Line 7813: warning: exported method Tensor.Fmod1_ should have comment or be unexported (golint)
    • Line 7813: warning: don't use underscores in Go names; method Fmod1_ should be Fmod1 (golint)
    • Line 7824: warning: exported method Tensor.FmodOut should have comment or be unexported (golint)
    • Line 7839: warning: exported method Tensor.FmodOut1 should have comment or be unexported (golint)
    • Line 7854: warning: exported method Tensor.Frac should have comment or be unexported (golint)
    • Line 7869: warning: exported method Tensor.Frac_ should have comment or be unexported (golint)
    • Line 7869: warning: don't use underscores in Go names; method Frac_ should be Frac (golint)
    • Line 7880: warning: exported method Tensor.FracOut should have comment or be unexported (golint)
    • Line 7895: warning: exported method Tensor.FractionalMaxPool2dBackward should have comment or be unexported (golint)
    • Line 7910: warning: exported method Tensor.FractionalMaxPool2dBackwardOut should have comment or be unexported (golint)
    • Line 7925: warning: exported method Tensor.FractionalMaxPool3dBackward should have comment or be unexported (golint)
    • Line 7940: warning: exported method Tensor.FractionalMaxPool3dBackwardOut should have comment or be unexported (golint)
    • Line 7955: warning: exported method Tensor.FrobeniusNorm should have comment or be unexported (golint)
    • Line 7970: warning: exported method Tensor.FrobeniusNorm1 should have comment or be unexported (golint)
    • Line 7989: warning: exported method Tensor.FrobeniusNormOut should have comment or be unexported (golint)
    • Line 8008: warning: exported function FromFile should have comment or be unexported (golint)
    • Line 8030: warning: exported function Full should have comment or be unexported (golint)
    • Line 8042: warning: exported method Tensor.FullLike should have comment or be unexported (golint)
    • Line 8057: warning: exported function FullOut should have comment or be unexported (golint)
    • Line 8069: warning: exported method Tensor.Gather should have comment or be unexported (golint)
    • Line 8088: warning: exported method Tensor.GatherBackward should have comment or be unexported (golint)
    • Line 8107: warning: exported method Tensor.GatherOut should have comment or be unexported (golint)
    • Line 8126: warning: exported method Tensor.Gcd should have comment or be unexported (golint)
    • Line 8141: warning: exported method Tensor.Gcd_ should have comment or be unexported (golint)
    • Line 8141: warning: don't use underscores in Go names; method Gcd_ should be Gcd (golint)
    • Line 8152: warning: exported method Tensor.GcdOut should have comment or be unexported (golint)
    • Line 8167: warning: exported method Tensor.Ge should have comment or be unexported (golint)
    • Line 8182: warning: exported method Tensor.Ge1 should have comment or be unexported (golint)
    • Line 8197: warning: exported method Tensor.Ge_ should have comment or be unexported (golint)
    • Line 8197: warning: don't use underscores in Go names; method Ge_ should be Ge (golint)
    • Line 8208: warning: exported method Tensor.Ge1_ should have comment or be unexported (golint)
    • Line 8208: warning: don't use underscores in Go names; method Ge1_ should be Ge1 (golint)
    • Line 8219: warning: exported method Tensor.GeOut should have comment or be unexported (golint)
    • Line 8234: warning: exported method Tensor.GeOut1 should have comment or be unexported (golint)
    • Line 8249: warning: exported method Tensor.Gelu should have comment or be unexported (golint)
    • Line 8264: warning: exported method Tensor.GeluBackward should have comment or be unexported (golint)
    • Line 8279: warning: exported method Tensor.Geometric_ should have comment or be unexported (golint)
    • Line 8279: warning: don't use underscores in Go names; method Geometric_ should be Geometric (golint)
    • Line 8290: warning: exported method Tensor.Ger should have comment or be unexported (golint)
    • Line 8305: warning: exported method Tensor.GerOut should have comment or be unexported (golint)
    • Line 8320: warning: exported method Tensor.Glu should have comment or be unexported (golint)
    • Line 8335: warning: exported method Tensor.GluBackward should have comment or be unexported (golint)
    • Line 8350: warning: exported method Tensor.GluBackwardOut should have comment or be unexported (golint)
    • Line 8365: warning: exported method Tensor.GluOut should have comment or be unexported (golint)
    • Line 8380: warning: exported method Tensor.Grad should have comment or be unexported (golint)
    • Line 8395: warning: exported method Tensor.Greater should have comment or be unexported (golint)
    • Line 8410: warning: exported method Tensor.Greater1 should have comment or be unexported (golint)
    • Line 8425: warning: exported method Tensor.Greater_ should have comment or be unexported (golint)
    • Line 8425: warning: don't use underscores in Go names; method Greater_ should be Greater (golint)
    • Line 8436: warning: exported method Tensor.Greater1_ should have comment or be unexported (golint)
    • Line 8436: warning: don't use underscores in Go names; method Greater1_ should be Greater1 (golint)
    • Line 8447: warning: exported method Tensor.GreaterEqual should have comment or be unexported (golint)
    • Line 8462: warning: exported method Tensor.GreaterEqual1 should have comment or be unexported (golint)
    • Line 8477: warning: exported method Tensor.GreaterEqual_ should have comment or be unexported (golint)
    • Line 8477: warning: don't use underscores in Go names; method GreaterEqual_ should be GreaterEqual (golint)
    • Line 8488: warning: exported method Tensor.GreaterEqual1_ should have comment or be unexported (golint)
    • Line 8488: warning: don't use underscores in Go names; method GreaterEqual1_ should be GreaterEqual1 (golint)
    • Line 8499: warning: exported method Tensor.GreaterEqualOut should have comment or be unexported (golint)
    • Line 8514: warning: exported method Tensor.GreaterEqualOut1 should have comment or be unexported (golint)
    • Line 8529: warning: exported method Tensor.GreaterOut should have comment or be unexported (golint)
    • Line 8544: warning: exported method Tensor.GreaterOut1 should have comment or be unexported (golint)
    • Line 8559: warning: exported function GridSampler should have comment or be unexported (golint)
    • Line 8575: warning: exported function GridSampler2d should have comment or be unexported (golint)
    • Line 8591: warning: exported function GridSampler3d should have comment or be unexported (golint)
    • Line 8607: warning: exported function GroupNorm should have comment or be unexported (golint)
    • Line 8623: warning: exported function GruCell should have comment or be unexported (golint)
    • Line 8635: warning: exported method Tensor.Gt should have comment or be unexported (golint)
    • Line 8650: warning: exported method Tensor.Gt1 should have comment or be unexported (golint)
    • Line 8665: warning: exported method Tensor.Gt_ should have comment or be unexported (golint)
    • Line 8665: warning: don't use underscores in Go names; method Gt_ should be Gt (golint)
    • Line 8676: warning: exported method Tensor.Gt1_ should have comment or be unexported (golint)
    • Line 8676: warning: don't use underscores in Go names; method Gt1_ should be Gt1 (golint)
    • Line 8687: warning: exported method Tensor.GtOut should have comment or be unexported (golint)
    • Line 8702: warning: exported method Tensor.GtOut1 should have comment or be unexported (golint)
    • Line 8717: warning: exported function HammingWindow should have comment or be unexported (golint)
    • Line 8729: warning: exported function HammingWindow1 should have comment or be unexported (golint)
    • Line 8745: warning: exported function HammingWindow2 should have comment or be unexported (golint)
    • Line 8761: warning: exported function HammingWindow3 should have comment or be unexported (golint)
    • Line 8777: warning: exported function HannWindow should have comment or be unexported (golint)
    • Line 8789: warning: exported function HannWindow1 should have comment or be unexported (golint)
    • Line 8805: warning: exported method Tensor.Hardshrink should have comment or be unexported (golint)
    • Line 8820: warning: exported method Tensor.HardshrinkBackward should have comment or be unexported (golint)
    • Line 8835: warning: exported method Tensor.Hardsigmoid should have comment or be unexported (golint)
    • Line 8850: warning: exported method Tensor.Hardsigmoid_ should have comment or be unexported (golint)
    • Line 8850: warning: don't use underscores in Go names; method Hardsigmoid_ should be Hardsigmoid (golint)
    • Line 8861: warning: exported method Tensor.HardsigmoidBackward should have comment or be unexported (golint)
    • Line 8876: warning: exported method Tensor.HardsigmoidOut should have comment or be unexported (golint)
    • Line 8891: warning: exported method Tensor.Hardswish should have comment or be unexported (golint)
    • Line 8906: warning: exported method Tensor.Hardswish_ should have comment or be unexported (golint)
    • Line 8906: warning: don't use underscores in Go names; method Hardswish_ should be Hardswish (golint)
    • Line 8917: warning: exported method Tensor.HardswishBackward should have comment or be unexported (golint)
    • Line 8932: warning: exported method Tensor.HardswishOut should have comment or be unexported (golint)
    • Line 8947: warning: exported method Tensor.Hardtanh should have comment or be unexported (golint)
    • Line 8962: warning: exported method Tensor.Hardtanh_ should have comment or be unexported (golint)
    • Line 8962: warning: don't use underscores in Go names; method Hardtanh_ should be Hardtanh (golint)
    • Line 8973: warning: exported method Tensor.HardtanhBackward should have comment or be unexported (golint)
    • Line 8988: warning: exported method Tensor.HardtanhBackwardOut should have comment or be unexported (golint)
    • Line 9003: warning: exported method Tensor.HardtanhOut should have comment or be unexported (golint)
    • Line 9018: warning: exported method Tensor.Heaviside should have comment or be unexported (golint)
    • Line 9033: warning: exported method Tensor.Heaviside_ should have comment or be unexported (golint)
    • Line 9033: warning: don't use underscores in Go names; method Heaviside_ should be Heaviside (golint)
    • Line 9044: warning: exported method Tensor.HeavisideOut should have comment or be unexported (golint)
    • Line 9059: warning: exported method Tensor.HingeEmbeddingLoss should have comment or be unexported (golint)
    • Line 9074: warning: exported method Tensor.Histc should have comment or be unexported (golint)
    • Line 9089: warning: exported method Tensor.HistcOut should have comment or be unexported (golint)
    • Line 9104: warning: exported function Hspmm should have comment or be unexported (golint)
    • Line 9116: warning: exported function HspmmOut should have comment or be unexported (golint)
    • Line 9128: warning: exported function Hstack should have comment or be unexported (golint)
    • Line 9144: warning: exported function HstackOut should have comment or be unexported (golint)
    • Line 9160: warning: exported method Tensor.Hypot should have comment or be unexported (golint)
    • Line 9175: warning: exported method Tensor.Hypot_ should have comment or be unexported (golint)
    • Line 9175: warning: don't use underscores in Go names; method Hypot_ should be Hypot (golint)
    • Line 9186: warning: exported method Tensor.HypotOut should have comment or be unexported (golint)
    • Line 9201: warning: exported method Tensor.I0 should have comment or be unexported (golint)
    • Line 9216: warning: exported method Tensor.I0_ should have comment or be unexported (golint)
    • Line 9216: warning: don't use underscores in Go names; method I0_ should be I0 (golint)
    • Line 9227: warning: exported method Tensor.I0Out should have comment or be unexported (golint)
    • Line 9242: warning: exported method Tensor.Ifft should have comment or be unexported (golint)
    • Line 9261: warning: exported method Tensor.Im2col should have comment or be unexported (golint)
    • Line 9276: warning: exported function Im2colBackward should have comment or be unexported (golint)
    • Line 9288: warning: exported function Im2colBackwardOut should have comment or be unexported (golint)
    • Line 9300: warning: exported method Tensor.Im2colOut should have comment or be unexported (golint)
    • Line 9315: warning: exported method Tensor.Imag should have comment or be unexported (golint)
    • Line 9330: warning: exported method Tensor.Index should have comment or be unexported (golint)
    • Line 9349: warning: exported method Tensor.IndexAdd should have comment or be unexported (golint)
    • Line 9364: warning: exported method Tensor.IndexAdd_ should have comment or be unexported (golint)
    • Line 9364: warning: don't use underscores in Go names; method IndexAdd_ should be IndexAdd (golint)
    • Line 9375: warning: exported method Tensor.IndexCopy should have comment or be unexported (golint)
    • Line 9390: warning: exported method Tensor.IndexCopy_ should have comment or be unexported (golint)
    • Line 9390: warning: don't use underscores in Go names; method IndexCopy_ should be IndexCopy (golint)
    • Line 9401: warning: exported method Tensor.IndexFill should have comment or be unexported (golint)
    • Line 9416: warning: exported method Tensor.IndexFill1 should have comment or be unexported (golint)
    • Line 9431: warning: exported method Tensor.IndexFill_ should have comment or be unexported (golint)
    • Line 9431: warning: don't use underscores in Go names; method IndexFill_ should be IndexFill (golint)
    • Line 9442: warning: exported method Tensor.IndexFill1_ should have comment or be unexported (golint)
    • Line 9442: warning: don't use underscores in Go names; method IndexFill1_ should be IndexFill1 (golint)
    • Line 9453: warning: exported method Tensor.IndexPut should have comment or be unexported (golint)
    • Line 9476: warning: exported method Tensor.IndexPut_ should have comment or be unexported (golint)
    • Line 9476: warning: don't use underscores in Go names; method IndexPut_ should be IndexPut (golint)
    • Line 9495: warning: exported method Tensor.IndexSelect should have comment or be unexported (golint)
    • Line 9510: warning: exported function IndexSelectBackward should have comment or be unexported (golint)
    • Line 9522: warning: exported method Tensor.IndexSelectOut should have comment or be unexported (golint)
    • Line 9537: warning: exported method Tensor.Indices should have comment or be unexported (golint)
    • Line 9552: warning: exported method Tensor.InfinitelyDifferentiableGeluBackward should have comment or be unexported (golint)
    • Line 9567: warning: exported function InstanceNorm should have comment or be unexported (golint)
    • Line 9587: warning: exported method Tensor.IntRepr should have comment or be unexported (golint)
    • Line 9602: warning: exported method Tensor.Inverse should have comment or be unexported (golint)
    • Line 9617: warning: exported method Tensor.InverseOut should have comment or be unexported (golint)
    • Line 9632: warning: exported method Tensor.Irfft should have comment or be unexported (golint)
    • Line 9655: warning: exported method Tensor.Isclose should have comment or be unexported (golint)
    • Line 9674: warning: exported method Tensor.Isfinite should have comment or be unexported (golint)
    • Line 9689: warning: exported method Tensor.Isinf should have comment or be unexported (golint)
    • Line 9704: warning: exported method Tensor.Isnan should have comment or be unexported (golint)
    • Line 9719: warning: exported method Tensor.Isneginf should have comment or be unexported (golint)
    • Line 9734: warning: exported method Tensor.IsneginfOut should have comment or be unexported (golint)
    • Line 9749: warning: exported method Tensor.Isposinf should have comment or be unexported (golint)
    • Line 9764: warning: exported method Tensor.IsposinfOut should have comment or be unexported (golint)
    • Line 9779: warning: exported method Tensor.Isreal should have comment or be unexported (golint)
    • Line 9794: warning: exported method Tensor.Istft should have comment or be unexported (golint)
    • Line 9843: warning: exported function KaiserWindow should have comment or be unexported (golint)
    • Line 9855: warning: exported function KaiserWindow1 should have comment or be unexported (golint)
    • Line 9871: warning: exported function KaiserWindow2 should have comment or be unexported (golint)
    • Line 9887: warning: exported method Tensor.KlDiv should have comment or be unexported (golint)
    • Line 9906: warning: exported method Tensor.KlDivBackward should have comment or be unexported (golint)
    • Line 9925: warning: exported method Tensor.L1Loss should have comment or be unexported (golint)
    • Line 9940: warning: exported method Tensor.L1LossBackward should have comment or be unexported (golint)
    • Line 9955: warning: exported method Tensor.L1LossBackwardOut should have comment or be unexported (golint)
    • Line 9970: warning: exported method Tensor.L1LossOut should have comment or be unexported (golint)
    • Line 9985: warning: exported function LayerNorm should have comment or be unexported (golint)
    • Line 10001: warning: exported method Tensor.Lcm should have comment or be unexported (golint)
    • Line 10016: warning: exported method Tensor.Lcm_ should have comment or be unexported (golint)
    • Line 10016: warning: don't use underscores in Go names; method Lcm_ should be Lcm (golint)
    • Line 10027: warning: exported method Tensor.LcmOut should have comment or be unexported (golint)
    • Line 10042: warning: exported method Tensor.Le should have comment or be unexported (golint)
    • Line 10057: warning: exported method Tensor.Le1 should have comment or be unexported (golint)
    • Line 10072: warning: exported method Tensor.Le_ should have comment or be unexported (golint)
    • Line 10072: warning: don't use underscores in Go names; method Le_ should be Le (golint)
    • Line 10083: warning: exported method Tensor.Le1_ should have comment or be unexported (golint)
    • Line 10083: warning: don't use underscores in Go names; method Le1_ should be Le1 (golint)
    • Line 10094: warning: exported method Tensor.LeOut should have comment or be unexported (golint)
    • Line 10109: warning: exported method Tensor.LeOut1 should have comment or be unexported (golint)
    • Line 10124: warning: exported method Tensor.LeakyRelu should have comment or be unexported (golint)
    • Line 10139: warning: exported method Tensor.LeakyRelu_ should have comment or be unexported (golint)
    • Line 10139: warning: don't use underscores in Go names; method LeakyRelu_ should be LeakyRelu (golint)
    • Line 10150: warning: exported method Tensor.LeakyReluBackward should have comment or be unexported (golint)
    • Line 10169: warning: exported method Tensor.LeakyReluOut should have comment or be unexported (golint)
    • Line 10184: warning: exported method Tensor.Lerp should have comment or be unexported (golint)
    • Line 10199: warning: exported method Tensor.Lerp1 should have comment or be unexported (golint)
    • Line 10214: warning: exported method Tensor.Lerp_ should have comment or be unexported (golint)
    • Line 10214: warning: don't use underscores in Go names; method Lerp_ should be Lerp (golint)
    • Line 10225: warning: exported method Tensor.Lerp1_ should have comment or be unexported (golint)
    • Line 10225: warning: don't use underscores in Go names; method Lerp1_ should be Lerp1 (golint)
    • Line 10236: warning: exported method Tensor.LerpOut should have comment or be unexported (golint)
    • Line 10251: warning: exported method Tensor.LerpOut1 should have comment or be unexported (golint)
    • Line 10266: warning: exported method Tensor.Less should have comment or be unexported (golint)
    • Line 10281: warning: exported method Tensor.Less1 should have comment or be unexported (golint)
    • Line 10296: warning: exported method Tensor.Less_ should have comment or be unexported (golint)
    • Line 10296: warning: don't use underscores in Go names; method Less_ should be Less (golint)
    • Line 10307: warning: exported method Tensor.Less1_ should have comment or be unexported (golint)
    • Line 10307: warning: don't use underscores in Go names; method Less1_ should be Less1 (golint)
    • Line 10318: warning: exported method Tensor.LessEqual should have comment or be unexported (golint)
    • Line 10333: warning: exported method Tensor.LessEqual1 should have comment or be unexported (golint)
    • Line 10348: warning: exported method Tensor.LessEqual_ should have comment or be unexported (golint)
    • Line 10348: warning: don't use underscores in Go names; method LessEqual_ should be LessEqual (golint)
    • Line 10359: warning: exported method Tensor.LessEqual1_ should have comment or be unexported (golint)
    • Line 10359: warning: don't use underscores in Go names; method LessEqual1_ should be LessEqual1 (golint)
    • Line 10370: warning: exported method Tensor.LessEqualOut should have comment or be unexported (golint)
    • Line 10385: warning: exported method Tensor.LessEqualOut1 should have comment or be unexported (golint)
    • Line 10400: warning: exported method Tensor.LessOut should have comment or be unexported (golint)
    • Line 10415: warning: exported method Tensor.LessOut1 should have comment or be unexported (golint)
    • Line 10430: warning: exported method Tensor.Lgamma should have comment or be unexported (golint)
    • Line 10445: warning: exported method Tensor.Lgamma_ should have comment or be unexported (golint)
    • Line 10445: warning: don't use underscores in Go names; method Lgamma_ should be Lgamma (golint)
    • Line 10456: warning: exported method Tensor.LgammaOut should have comment or be unexported (golint)
    • Line 10471: warning: exported method Tensor.LinalgDet should have comment or be unexported (golint)
    • Line 10486: warning: exported method Tensor.LinalgNorm should have comment or be unexported (golint)
    • Line 10505: warning: exported method Tensor.LinalgNorm1 should have comment or be unexported (golint)
    • Line 10524: warning: exported method Tensor.LinalgNormOut should have comment or be unexported (golint)
    • Line 10543: warning: exported method Tensor.LinalgNormOut1 should have comment or be unexported (golint)
    • Line 10562: warning: exported function Linear should have comment or be unexported (golint)
    • Line 10574: warning: exported function Linspace should have comment or be unexported (golint)
    • Line 10592: warning: exported function LinspaceOut should have comment or be unexported (golint)
    • Line 10610: warning: exported method Tensor.Log should have comment or be unexported (golint)
    • Line 10625: warning: exported method Tensor.Log10 should have comment or be unexported (golint)
    • Line 10640: warning: exported method Tensor.Log10_ should have comment or be unexported (golint)
    • Line 10640: warning: don't use underscores in Go names; method Log10_ should be Log10 (golint)
    • Line 10651: warning: exported method Tensor.Log10Out should have comment or be unexported (golint)
    • Line 10666: warning: exported method Tensor.Log1p should have comment or be unexported (golint)
    • Line 10681: warning: exported method Tensor.Log1p_ should have comment or be unexported (golint)
    • Line 10681: warning: don't use underscores in Go names; method Log1p_ should be Log1p (golint)
    • Line 10692: warning: exported method Tensor.Log1pOut should have comment or be unexported (golint)
    • Line 10707: warning: exported method Tensor.Log2 should have comment or be unexported (golint)
    • Line 10722: warning: exported method Tensor.Log2_ should have comment or be unexported (golint)
    • Line 10722: warning: don't use underscores in Go names; method Log2_ should be Log2 (golint)
    • Line 10733: warning: exported method Tensor.Log2Out should have comment or be unexported (golint)
    • Line 10748: warning: exported method Tensor.Log_ should have comment or be unexported (golint)
    • Line 10748: warning: don't use underscores in Go names; method Log_ should be Log (golint)
    • Line 10759: warning: exported method Tensor.LogNormal_ should have comment or be unexported (golint)
    • Line 10759: warning: don't use underscores in Go names; method LogNormal_ should be LogNormal (golint)
    • Line 10770: warning: exported method Tensor.LogOut should have comment or be unexported (golint)
    • Line 10785: warning: exported method Tensor.LogSigmoid should have comment or be unexported (golint)
    • Line 10800: warning: exported method Tensor.LogSigmoidBackward should have comment or be unexported (golint)
    • Line 10815: warning: exported method Tensor.LogSigmoidBackwardOut should have comment or be unexported (golint)
    • Line 10830: warning: exported method Tensor.LogSigmoidOut should have comment or be unexported (golint)
    • Line 10845: warning: exported method Tensor.LogSoftmax should have comment or be unexported (golint)
    • Line 10860: warning: exported method Tensor.Logaddexp should have comment or be unexported (golint)
    • Line 10875: warning: exported method Tensor.Logaddexp2 should have comment or be unexported (golint)
    • Line 10890: warning: exported method Tensor.Logaddexp2Out should have comment or be unexported (golint)
    • Line 10905: warning: exported method Tensor.LogaddexpOut should have comment or be unexported (golint)
    • Line 10920: warning: exported method Tensor.Logcumsumexp should have comment or be unexported (golint)
    • Line 10935: warning: exported method Tensor.LogcumsumexpOut should have comment or be unexported (golint)
    • Line 10950: warning: exported method Tensor.Logdet should have comment or be unexported (golint)
    • Line 10965: warning: exported method Tensor.LogicalAnd should have comment or be unexported (golint)
    • Line 10980: warning: exported method Tensor.LogicalAnd_ should have comment or be unexported (golint)
    • Line 10980: warning: don't use underscores in Go names; method LogicalAnd_ should be LogicalAnd (golint)
    • Line 10991: warning: exported method Tensor.LogicalAndOut should have comment or be unexported (golint)
    • Line 11006: warning: exported method Tensor.LogicalNot should have comment or be unexported (golint)
    • Line 11021: warning: exported method Tensor.LogicalNot_ should have comment or be unexported (golint)
    • Line 11021: warning: don't use underscores in Go names; method LogicalNot_ should be LogicalNot (golint)
    • Line 11032: warning: exported method Tensor.LogicalNotOut should have comment or be unexported (golint)
    • Line 11047: warning: exported method Tensor.LogicalOr should have comment or be unexported (golint)
    • Line 11062: warning: exported method Tensor.LogicalOr_ should have comment or be unexported (golint)
    • Line 11062: warning: don't use underscores in Go names; method LogicalOr_ should be LogicalOr (golint)
    • Line 11073: warning: exported method Tensor.LogicalOrOut should have comment or be unexported (golint)
    • Line 11088: warning: exported method Tensor.LogicalXor should have comment or be unexported (golint)
    • Line 11103: warning: exported method Tensor.LogicalXor_ should have comment or be unexported (golint)
    • Line 11103: warning: don't use underscores in Go names; method LogicalXor_ should be LogicalXor (golint)
    • Line 11114: warning: exported method Tensor.LogicalXorOut should have comment or be unexported (golint)
    • Line 11129: warning: exported method Tensor.Logit should have comment or be unexported (golint)
    • Line 11150: warning: exported method Tensor.Logit_ should have comment or be unexported (golint)
    • Line 11150: warning: don't use underscores in Go names; method Logit_ should be Logit (golint)
    • Line 11167: warning: exported method Tensor.LogitBackward should have comment or be unexported (golint)
    • Line 11188: warning: exported method Tensor.LogitBackwardOut should have comment or be unexported (golint)
    • Line 11209: warning: exported method Tensor.LogitOut should have comment or be unexported (golint)
    • Line 11230: warning: exported function Logspace should have comment or be unexported (golint)
    • Line 11248: warning: exported function LogspaceOut should have comment or be unexported (golint)
    • Line 11266: warning: exported method Tensor.Logsumexp should have comment or be unexported (golint)
    • Line 11285: warning: exported method Tensor.LogsumexpOut should have comment or be unexported (golint)
    • Line 11304: warning: exported method Tensor.Lt should have comment or be unexported (golint)
    • Line 11319: warning: exported method Tensor.Lt1 should have comment or be unexported (golint)
    • Line 11334: warning: exported method Tensor.Lt_ should have comment or be unexported (golint)
    • Line 11334: warning: don't use underscores in Go names; method Lt_ should be Lt (golint)
    • Line 11345: warning: exported method Tensor.Lt1_ should have comment or be unexported (golint)
    • Line 11345: warning: don't use underscores in Go names; method Lt1_ should be Lt1 (golint)
    • Line 11356: warning: exported method Tensor.LtOut should have comment or be unexported (golint)
    • Line 11371: warning: exported method Tensor.LtOut1 should have comment or be unexported (golint)
    • Line 11386: warning: exported method Tensor.LuSolve should have comment or be unexported (golint)
    • Line 11401: warning: exported method Tensor.LuSolveOut should have comment or be unexported (golint)
    • Line 11416: warning: exported function MarginRankingLoss should have comment or be unexported (golint)
    • Line 11428: warning: exported method Tensor.MaskedFill should have comment or be unexported (golint)
    • Line 11443: warning: exported method Tensor.MaskedFill1 should have comment or be unexported (golint)
    • Line 11458: warning: exported method Tensor.MaskedFill_ should have comment or be unexported (golint)
    • Line 11458: warning: don't use underscores in Go names; method MaskedFill_ should be MaskedFill (golint)
    • Line 11469: warning: exported method Tensor.MaskedFill1_ should have comment or be unexported (golint)
    • Line 11469: warning: don't use underscores in Go names; method MaskedFill1_ should be MaskedFill1 (golint)
    • Line 11480: warning: exported method Tensor.MaskedScatter should have comment or be unexported (golint)
    • Line 11495: warning: exported method Tensor.MaskedScatter_ should have comment or be unexported (golint)
    • Line 11495: warning: don't use underscores in Go names; method MaskedScatter_ should be MaskedScatter (golint)
    • Line 11506: warning: exported method Tensor.MaskedSelect should have comment or be unexported (golint)
    • Line 11521: warning: exported function MaskedSelectBackward should have comment or be unexported (golint)
    • Line 11533: warning: exported method Tensor.MaskedSelectOut should have comment or be unexported (golint)
    • Line 11548: warning: exported method Tensor.Matmul should have comment or be unexported (golint)
    • Line 11563: warning: exported method Tensor.MatmulOut should have comment or be unexported (golint)
    • Line 11578: warning: exported method Tensor.MatrixExp should have comment or be unexported (golint)
    • Line 11593: warning: exported method Tensor.MatrixExpBackward should have comment or be unexported (golint)
    • Line 11608: warning: exported method Tensor.MatrixPower should have comment or be unexported (golint)
    • Line 11623: warning: exported method Tensor.MatrixRank should have comment or be unexported (golint)
    • Line 11642: warning: exported method Tensor.MatrixRank1 should have comment or be unexported (golint)
    • Line 11661: warning: exported method Tensor.Max should have comment or be unexported (golint)
    • Line 11676: warning: exported method Tensor.Max1 should have comment or be unexported (golint)
    • Line 11691: warning: exported method Tensor.MaxOut should have comment or be unexported (golint)
    • Line 11706: warning: exported method Tensor.MaxPool1d should have comment or be unexported (golint)
    • Line 11725: warning: exported method Tensor.MaxPool2d should have comment or be unexported (golint)
    • Line 11744: warning: exported method Tensor.MaxPool2dWithIndicesBackward should have comment or be unexported (golint)
    • Line 11763: warning: exported method Tensor.MaxPool2dWithIndicesBackwardOut should have comment or be unexported (golint)
    • Line 11782: warning: exported method Tensor.MaxPool3d should have comment or be unexported (golint)
    • Line 11801: warning: exported method Tensor.MaxPool3dWithIndicesBackward should have comment or be unexported (golint)
    • Line 11820: warning: exported method Tensor.MaxPool3dWithIndicesBackwardOut should have comment or be unexported (golint)
    • Line 11839: warning: exported method Tensor.MaxUnpool2d should have comment or be unexported (golint)
    • Line 11854: warning: exported method Tensor.MaxUnpool2dBackward should have comment or be unexported (golint)
    • Line 11869: warning: exported method Tensor.MaxUnpool2dBackwardOut should have comment or be unexported (golint)
    • Line 11884: warning: exported method Tensor.MaxUnpool2dOut should have comment or be unexported (golint)
    • Line 11899: warning: exported method Tensor.MaxUnpool3d should have comment or be unexported (golint)
    • Line 11914: warning: exported method Tensor.MaxUnpool3dBackward should have comment or be unexported (golint)
    • Line 11929: warning: exported method Tensor.MaxUnpool3dBackwardOut should have comment or be unexported (golint)
    • Line 11944: warning: exported method Tensor.MaxUnpool3dOut should have comment or be unexported (golint)
    • Line 11959: warning: exported method Tensor.Maximum should have comment or be unexported (golint)
    • Line 11974: warning: exported method Tensor.MaximumOut should have comment or be unexported (golint)
    • Line 11989: warning: exported method Tensor.Mean should have comment or be unexported (golint)
    • Line 12004: warning: exported method Tensor.Mean1 should have comment or be unexported (golint)
    • Line 12023: warning: exported method Tensor.MeanOut should have comment or be unexported (golint)
    • Line 12042: warning: exported method Tensor.Median should have comment or be unexported (golint)
    • Line 12057: warning: exported method Tensor.Min should have comment or be unexported (golint)
    • Line 12072: warning: exported method Tensor.Min1 should have comment or be unexported (golint)
    • Line 12087: warning: exported method Tensor.MinOut should have comment or be unexported (golint)
    • Line 12102: warning: exported method Tensor.Minimum should have comment or be unexported (golint)
    • Line 12117: warning: exported method Tensor.MinimumOut should have comment or be unexported (golint)
    • Line 12132: warning: exported method Tensor.MiopenConvolution should have comment or be unexported (golint)
    • Line 12155: warning: exported function MiopenConvolutionBackwardBias should have comment or be unexported (golint)
    • Line 12167: warning: exported function MiopenConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 12187: warning: exported method Tensor.MiopenConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 12210: warning: exported method Tensor.MiopenConvolutionTranspose should have comment or be unexported (golint)
    • Line 12233: warning: exported function MiopenConvolutionTransposeBackwardInput should have comment or be unexported (golint)
    • Line 12253: warning: exported method Tensor.MiopenConvolutionTransposeBackwardWeight should have comment or be unexported (golint)
    • Line 12276: warning: exported method Tensor.MiopenDepthwiseConvolution should have comment or be unexported (golint)
    • Line 12299: warning: exported function MiopenDepthwiseConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 12319: warning: exported method Tensor.MiopenDepthwiseConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 12342: warning: exported method Tensor.MkldnnAdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 12357: warning: exported method Tensor.MkldnnConvolution should have comment or be unexported (golint)
    • Line 12372: warning: exported function MkldnnConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 12388: warning: exported function MkldnnLinear should have comment or be unexported (golint)
    • Line 12400: warning: exported method Tensor.MkldnnMaxPool2d should have comment or be unexported (golint)
    • Line 12419: warning: exported method Tensor.MkldnnMaxPool3d should have comment or be unexported (golint)
    • Line 12438: warning: exported method Tensor.MkldnnReorderConv2dWeight should have comment or be unexported (golint)
    • Line 12453: warning: exported method Tensor.MkldnnReorderConv3dWeight should have comment or be unexported (golint)
    • Line 12468: warning: exported method Tensor.Mm should have comment or be unexported (golint)
    • Line 12483: warning: exported method Tensor.MmOut should have comment or be unexported (golint)
    • Line 12498: warning: exported method Tensor.Movedim should have comment or be unexported (golint)
    • Line 12513: warning: exported method Tensor.Movedim1 should have comment or be unexported (golint)
    • Line 12528: warning: exported method Tensor.MseLoss should have comment or be unexported (golint)
    • Line 12543: warning: exported method Tensor.MseLossBackward should have comment or be unexported (golint)
    • Line 12558: warning: exported method Tensor.MseLossBackwardOut should have comment or be unexported (golint)
    • Line 12573: warning: exported method Tensor.MseLossOut should have comment or be unexported (golint)
    • Line 12588: warning: exported method Tensor.Mul should have comment or be unexported (golint)
    • Line 12603: warning: exported method Tensor.Mul1 should have comment or be unexported (golint)
    • Line 12618: warning: exported method Tensor.Mul_ should have comment or be unexported (golint)
    • Line 12618: warning: don't use underscores in Go names; method Mul_ should be Mul (golint)
    • Line 12629: warning: exported method Tensor.Mul1_ should have comment or be unexported (golint)
    • Line 12629: warning: don't use underscores in Go names; method Mul1_ should be Mul1 (golint)
    • Line 12640: warning: exported method Tensor.MulOut should have comment or be unexported (golint)
    • Line 12655: warning: exported method Tensor.MultiMarginLossBackward should have comment or be unexported (golint)
    • Line 12670: warning: exported method Tensor.MultiMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 12685: warning: exported method Tensor.MultilabelMarginLoss should have comment or be unexported (golint)
    • Line 12700: warning: exported method Tensor.MultilabelMarginLossBackward should have comment or be unexported (golint)
    • Line 12715: warning: exported method Tensor.MultilabelMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 12730: warning: exported method Tensor.MultilabelMarginLossOut should have comment or be unexported (golint)
    • Line 12745: warning: exported method Tensor.Multinomial should have comment or be unexported (golint)
    • Line 12764: warning: exported method Tensor.MultinomialOut should have comment or be unexported (golint)
    • Line 12783: warning: exported method Tensor.Multiply should have comment or be unexported (golint)
    • Line 12798: warning: exported method Tensor.Multiply1 should have comment or be unexported (golint)
    • Line 12813: warning: exported method Tensor.Multiply_ should have comment or be unexported (golint)
    • Line 12813: warning: don't use underscores in Go names; method Multiply_ should be Multiply (golint)
    • Line 12824: warning: exported method Tensor.Multiply1_ should have comment or be unexported (golint)
    • Line 12824: warning: don't use underscores in Go names; method Multiply1_ should be Multiply1 (golint)
    • Line 12835: warning: exported method Tensor.MultiplyOut should have comment or be unexported (golint)
    • Line 12850: warning: exported method Tensor.Mv should have comment or be unexported (golint)
    • Line 12865: warning: exported method Tensor.MvOut should have comment or be unexported (golint)
    • Line 12880: warning: exported method Tensor.Mvlgamma should have comment or be unexported (golint)
    • Line 12895: warning: exported method Tensor.Mvlgamma_ should have comment or be unexported (golint)
    • Line 12895: warning: don't use underscores in Go names; method Mvlgamma_ should be Mvlgamma (golint)
    • Line 12906: warning: exported method Tensor.Nanquantile should have comment or be unexported (golint)
    • Line 12931: warning: exported method Tensor.Nanquantile1 should have comment or be unexported (golint)
    • Line 12956: warning: exported method Tensor.NanquantileOut should have comment or be unexported (golint)
    • Line 12981: warning: exported method Tensor.NanquantileOut1 should have comment or be unexported (golint)
    • Line 13006: warning: exported method Tensor.Nansum should have comment or be unexported (golint)
    • Line 13021: warning: exported method Tensor.Nansum1 should have comment or be unexported (golint)
    • Line 13040: warning: exported method Tensor.NansumOut should have comment or be unexported (golint)
    • Line 13059: warning: exported method Tensor.Narrow should have comment or be unexported (golint)
    • Line 13074: warning: exported method Tensor.Narrow1 should have comment or be unexported (golint)
    • Line 13089: warning: exported method Tensor.NarrowCopy should have comment or be unexported (golint)
    • Line 13104: warning: exported method Tensor.NativeNorm should have comment or be unexported (golint)
    • Line 13119: warning: exported method Tensor.NativeNorm1 should have comment or be unexported (golint)
    • Line 13138: warning: exported method Tensor.Ne should have comment or be unexported (golint)
    • Line 13153: warning: exported method Tensor.Ne1 should have comment or be unexported (golint)
    • Line 13168: warning: exported method Tensor.Ne_ should have comment or be unexported (golint)
    • Line 13168: warning: don't use underscores in Go names; method Ne_ should be Ne (golint)
    • Line 13179: warning: exported method Tensor.Ne1_ should have comment or be unexported (golint)
    • Line 13179: warning: don't use underscores in Go names; method Ne1_ should be Ne1 (golint)
    • Line 13190: warning: exported method Tensor.NeOut should have comment or be unexported (golint)
    • Line 13205: warning: exported method Tensor.NeOut1 should have comment or be unexported (golint)
    • Line 13220: warning: exported method Tensor.Neg should have comment or be unexported (golint)
    • Line 13235: warning: exported method Tensor.Neg_ should have comment or be unexported (golint)
    • Line 13235: warning: don't use underscores in Go names; method Neg_ should be Neg (golint)
    • Line 13246: warning: exported method Tensor.NegOut should have comment or be unexported (golint)
    • Line 13261: warning: exported method Tensor.Negative should have comment or be unexported (golint)
    • Line 13276: warning: exported method Tensor.Negative_ should have comment or be unexported (golint)
    • Line 13276: warning: don't use underscores in Go names; method Negative_ should be Negative (golint)
    • Line 13287: warning: exported method Tensor.NegativeOut should have comment or be unexported (golint)
    • Line 13302: warning: exported method Tensor.NewEmpty should have comment or be unexported (golint)
    • Line 13317: warning: exported method Tensor.NewFull should have comment or be unexported (golint)
    • Line 13332: warning: exported method Tensor.NewZeros should have comment or be unexported (golint)
    • Line 13347: warning: exported method Tensor.Nextafter should have comment or be unexported (golint)
    • Line 13362: warning: exported method Tensor.Nextafter_ should have comment or be unexported (golint)
    • Line 13362: warning: don't use underscores in Go names; method Nextafter_ should be Nextafter (golint)
    • Line 13373: warning: exported method Tensor.NextafterOut should have comment or be unexported (golint)
    • Line 13388: warning: exported method Tensor.NllLoss should have comment or be unexported (golint)
    • Line 13403: warning: exported method Tensor.NllLoss2d should have comment or be unexported (golint)
    • Line 13418: warning: exported method Tensor.NllLoss2dBackward should have comment or be unexported (golint)
    • Line 13433: warning: exported method Tensor.NllLoss2dBackwardOut should have comment or be unexported (golint)
    • Line 13448: warning: exported method Tensor.NllLoss2dOut should have comment or be unexported (golint)
    • Line 13463: warning: exported method Tensor.NllLossBackward should have comment or be unexported (golint)
    • Line 13478: warning: exported method Tensor.NllLossBackwardOut should have comment or be unexported (golint)
    • Line 13493: warning: exported method Tensor.NllLossOut should have comment or be unexported (golint)
    • Line 13508: warning: exported method Tensor.Nonzero should have comment or be unexported (golint)
    • Line 13523: warning: exported method Tensor.NonzeroOut should have comment or be unexported (golint)
    • Line 13538: warning: exported method Tensor.Norm should have comment or be unexported (golint)
    • Line 13553: warning: exported method Tensor.Norm1 should have comment or be unexported (golint)
    • Line 13568: warning: exported method Tensor.Norm2 should have comment or be unexported (golint)
    • Line 13587: warning: exported method Tensor.Norm3 should have comment or be unexported (golint)
    • Line 13606: warning: exported function NormExceptDim should have comment or be unexported (golint)
    • Line 13618: warning: exported method Tensor.NormOut should have comment or be unexported (golint)
    • Line 13637: warning: exported method Tensor.NormOut1 should have comment or be unexported (golint)
    • Line 13656: warning: exported method Tensor.Normal_ should have comment or be unexported (golint)
    • Line 13656: warning: don't use underscores in Go names; method Normal_ should be Normal (golint)
    • Line 13667: warning: exported function NormalOut should have comment or be unexported (golint)
    • Line 13679: warning: exported function NormalOut1 should have comment or be unexported (golint)
    • Line 13691: warning: exported function NormalOut2 should have comment or be unexported (golint)
    • Line 13703: warning: exported function NormalOut3 should have comment or be unexported (golint)
    • Line 13715: warning: exported method Tensor.NotEqual should have comment or be unexported (golint)
    • Line 13730: warning: exported method Tensor.NotEqual1 should have comment or be unexported (golint)
    • Line 13745: warning: exported method Tensor.NotEqual_ should have comment or be unexported (golint)
    • Line 13745: warning: don't use underscores in Go names; method NotEqual_ should be NotEqual (golint)
    • Line 13756: warning: exported method Tensor.NotEqual1_ should have comment or be unexported (golint)
    • Line 13756: warning: don't use underscores in Go names; method NotEqual1_ should be NotEqual1 (golint)
    • Line 13767: warning: exported method Tensor.NotEqualOut should have comment or be unexported (golint)
    • Line 13782: warning: exported method Tensor.NotEqualOut1 should have comment or be unexported (golint)
    • Line 13797: warning: exported method Tensor.NuclearNorm should have comment or be unexported (golint)
    • Line 13816: warning: exported method Tensor.NuclearNorm1 should have comment or be unexported (golint)
    • Line 13835: warning: exported method Tensor.NuclearNormOut should have comment or be unexported (golint)
    • Line 13854: warning: exported method Tensor.NuclearNormOut1 should have comment or be unexported (golint)
    • Line 13873: warning: exported method Tensor.NumpyT should have comment or be unexported (golint)
    • Line 13888: warning: exported method Tensor.OneHot should have comment or be unexported (golint)
    • Line 13903: warning: exported function Ones should have comment or be unexported (golint)
    • Line 13915: warning: exported method Tensor.OnesLike should have comment or be unexported (golint)
    • Line 13930: warning: exported function OnesOut should have comment or be unexported (golint)
    • Line 13942: warning: exported method Tensor.Orgqr should have comment or be unexported (golint)
    • Line 13957: warning: exported method Tensor.OrgqrOut should have comment or be unexported (golint)
    • Line 13972: warning: exported method Tensor.Ormqr should have comment or be unexported (golint)
    • Line 13995: warning: exported method Tensor.OrmqrOut should have comment or be unexported (golint)
    • Line 14018: warning: exported method Tensor.Outer should have comment or be unexported (golint)
    • Line 14033: warning: exported method Tensor.OuterOut should have comment or be unexported (golint)
    • Line 14048: warning: exported function PairwiseDistance should have comment or be unexported (golint)
    • Line 14064: warning: exported method Tensor.Pdist should have comment or be unexported (golint)
    • Line 14079: warning: exported method Tensor.Permute should have comment or be unexported (golint)
    • Line 14094: warning: exported method Tensor.PinMemory should have comment or be unexported (golint)
    • Line 14109: warning: exported method Tensor.Pinverse should have comment or be unexported (golint)
    • Line 14124: warning: exported method Tensor.PixelShuffle should have comment or be unexported (golint)
    • Line 14139: warning: exported method Tensor.Poisson should have comment or be unexported (golint)
    • Line 14154: warning: exported function PoissonNllLoss should have comment or be unexported (golint)
    • Line 14174: warning: exported function Polar should have comment or be unexported (golint)
    • Line 14186: warning: exported function PolarOut should have comment or be unexported (golint)
    • Line 14198: warning: exported method Tensor.Polygamma should have comment or be unexported (golint)
    • Line 14213: warning: exported method Tensor.Polygamma_ should have comment or be unexported (golint)
    • Line 14213: warning: don't use underscores in Go names; method Polygamma_ should be Polygamma (golint)
    • Line 14224: warning: exported method Tensor.PolygammaOut should have comment or be unexported (golint)
    • Line 14239: warning: exported method Tensor.Pow should have comment or be unexported (golint)
    • Line 14254: warning: exported method Tensor.Pow1 should have comment or be unexported (golint)
    • Line 14269: warning: exported function Pow2 should have comment or be unexported (golint)
    • Line 14281: warning: exported method Tensor.Pow_ should have comment or be unexported (golint)
    • Line 14281: warning: don't use underscores in Go names; method Pow_ should be Pow (golint)
    • Line 14292: warning: exported method Tensor.Pow1_ should have comment or be unexported (golint)
    • Line 14292: warning: don't use underscores in Go names; method Pow1_ should be Pow1 (golint)
    • Line 14303: warning: exported method Tensor.PowOut should have comment or be unexported (golint)
    • Line 14318: warning: exported method Tensor.PowOut1 should have comment or be unexported (golint)
    • Line 14333: warning: exported function PowOut2 should have comment or be unexported (golint)
    • Line 14345: warning: exported method Tensor.Prelu should have comment or be unexported (golint)
    • Line 14360: warning: exported method Tensor.Prod should have comment or be unexported (golint)
    • Line 14375: warning: exported method Tensor.Prod1 should have comment or be unexported (golint)
    • Line 14394: warning: exported method Tensor.ProdOut should have comment or be unexported (golint)
    • Line 14413: warning: exported method Tensor.Put_ should have comment or be unexported (golint)
    • Line 14413: warning: don't use underscores in Go names; method Put_ should be Put (golint)
    • Line 14428: warning: exported method Tensor.QPerChannelScales should have comment or be unexported (golint)
    • Line 14443: warning: exported method Tensor.QPerChannelZeroPoints should have comment or be unexported (golint)
    • Line 14458: warning: exported method Tensor.Quantile should have comment or be unexported (golint)
    • Line 14483: warning: exported method Tensor.Quantile1 should have comment or be unexported (golint)
    • Line 14508: warning: exported method Tensor.QuantileOut should have comment or be unexported (golint)
    • Line 14533: warning: exported method Tensor.QuantileOut1 should have comment or be unexported (golint)
    • Line 14558: warning: exported method Tensor.QuantizePerChannel should have comment or be unexported (golint)
    • Line 14573: warning: exported method Tensor.QuantizePerTensor should have comment or be unexported (golint)
    • Line 14588: warning: exported function QuantizedBatchNorm should have comment or be unexported (golint)
    • Line 14600: warning: exported function QuantizedGruCell should have comment or be unexported (golint)
    • Line 14612: warning: exported method Tensor.QuantizedMaxPool1d should have comment or be unexported (golint)
    • Line 14631: warning: exported method Tensor.QuantizedMaxPool2d should have comment or be unexported (golint)
    • Line 14650: warning: exported function QuantizedRnnReluCell should have comment or be unexported (golint)
    • Line 14662: warning: exported function QuantizedRnnTanhCell should have comment or be unexported (golint)
    • Line 14674: warning: exported method Tensor.Rad2deg should have comment or be unexported (golint)
    • Line 14689: warning: exported method Tensor.Rad2deg_ should have comment or be unexported (golint)
    • Line 14689: warning: don't use underscores in Go names; method Rad2deg_ should be Rad2deg (golint)
    • Line 14700: warning: exported method Tensor.Rad2degOut should have comment or be unexported (golint)
    • Line 14715: warning: exported function Rand should have comment or be unexported (golint)
    • Line 14727: warning: exported method Tensor.RandLike should have comment or be unexported (golint)
    • Line 14742: warning: exported function RandOut should have comment or be unexported (golint)
    • Line 14754: warning: exported function Randint should have comment or be unexported (golint)
    • Line 14766: warning: exported function Randint1 should have comment or be unexported (golint)
    • Line 14778: warning: exported method Tensor.RandintLike should have comment or be unexported (golint)
    • Line 14793: warning: exported method Tensor.RandintLike1 should have comment or be unexported (golint)
    • Line 14808: warning: exported function RandintOut should have comment or be unexported (golint)
    • Line 14820: warning: exported function RandintOut1 should have comment or be unexported (golint)
    • Line 14832: warning: exported function Randn should have comment or be unexported (golint)
    • Line 14844: warning: exported method Tensor.RandnLike should have comment or be unexported (golint)
    • Line 14859: warning: exported function RandnOut should have comment or be unexported (golint)
    • Line 14871: warning: exported method Tensor.Random_ should have comment or be unexported (golint)
    • Line 14871: warning: don't use underscores in Go names; method Random_ should be Random (golint)
    • Line 14882: warning: exported method Tensor.Random1_ should have comment or be unexported (golint)
    • Line 14882: warning: don't use underscores in Go names; method Random1_ should be Random1 (golint)
    • Line 14893: warning: exported method Tensor.Random2 should have comment or be unexported (golint)
    • Line 14910: warning: exported function Randperm should have comment or be unexported (golint)
    • Line 14922: warning: exported function RandpermOut should have comment or be unexported (golint)
    • Line 14934: warning: exported function Range should have comment or be unexported (golint)
    • Line 14946: warning: exported function Range1 should have comment or be unexported (golint)
    • Line 14958: warning: exported function RangeOut should have comment or be unexported (golint)
    • Line 14970: warning: exported method Tensor.Real should have comment or be unexported (golint)
    • Line 14985: warning: exported method Tensor.Reciprocal should have comment or be unexported (golint)
    • Line 15000: warning: exported method Tensor.Reciprocal_ should have comment or be unexported (golint)
    • Line 15000: warning: don't use underscores in Go names; method Reciprocal_ should be Reciprocal (golint)
    • Line 15011: warning: exported method Tensor.ReciprocalOut should have comment or be unexported (golint)
    • Line 15026: warning: exported method Tensor.ReflectionPad1d should have comment or be unexported (golint)
    • Line 15041: warning: exported method Tensor.ReflectionPad1dBackward should have comment or be unexported (golint)
    • Line 15056: warning: exported method Tensor.ReflectionPad1dBackwardOut should have comment or be unexported (golint)
    • Line 15071: warning: exported method Tensor.ReflectionPad1dOut should have comment or be unexported (golint)
    • Line 15086: warning: exported method Tensor.ReflectionPad2d should have comment or be unexported (golint)
    • Line 15101: warning: exported method Tensor.ReflectionPad2dBackward should have comment or be unexported (golint)
    • Line 15116: warning: exported method Tensor.ReflectionPad2dBackwardOut should have comment or be unexported (golint)
    • Line 15131: warning: exported method Tensor.ReflectionPad2dOut should have comment or be unexported (golint)
    • Line 15146: warning: exported method Tensor.Relu should have comment or be unexported (golint)
    • Line 15161: warning: exported method Tensor.Relu_ should have comment or be unexported (golint)
    • Line 15161: warning: don't use underscores in Go names; method Relu_ should be Relu (golint)
    • Line 15172: warning: exported method Tensor.Remainder should have comment or be unexported (golint)
    • Line 15187: warning: exported method Tensor.Remainder1 should have comment or be unexported (golint)
    • Line 15202: warning: exported method Tensor.Remainder_ should have comment or be unexported (golint)
    • Line 15202: warning: don't use underscores in Go names; method Remainder_ should be Remainder (golint)
    • Line 15213: warning: exported method Tensor.Remainder1_ should have comment or be unexported (golint)
    • Line 15213: warning: don't use underscores in Go names; method Remainder1_ should be Remainder1 (golint)
    • Line 15224: warning: exported method Tensor.RemainderOut should have comment or be unexported (golint)
    • Line 15239: warning: exported method Tensor.RemainderOut1 should have comment or be unexported (golint)
    • Line 15254: warning: exported method Tensor.Renorm should have comment or be unexported (golint)
    • Line 15269: warning: exported method Tensor.Renorm_ should have comment or be unexported (golint)
    • Line 15269: warning: don't use underscores in Go names; method Renorm_ should be Renorm (golint)
    • Line 15280: warning: exported method Tensor.RenormOut should have comment or be unexported (golint)
    • Line 15295: warning: exported method Tensor.Repeat should have comment or be unexported (golint)
    • Line 15310: warning: exported function RepeatInterleave should have comment or be unexported (golint)
    • Line 15322: warning: exported method Tensor.RepeatInterleave1 should have comment or be unexported (golint)
    • Line 15343: warning: exported method Tensor.RepeatInterleave2 should have comment or be unexported (golint)
    • Line 15364: warning: exported method Tensor.ReplicationPad1d should have comment or be unexported (golint)
    • Line 15379: warning: exported method Tensor.ReplicationPad1dBackward should have comment or be unexported (golint)
    • Line 15394: warning: exported method Tensor.ReplicationPad1dBackwardOut should have comment or be unexported (golint)
    • Line 15409: warning: exported method Tensor.ReplicationPad1dOut should have comment or be unexported (golint)
    • Line 15424: warning: exported method Tensor.ReplicationPad2d should have comment or be unexported (golint)
    • Line 15439: warning: exported method Tensor.ReplicationPad2dBackward should have comment or be unexported (golint)
    • Line 15454: warning: exported method Tensor.ReplicationPad2dBackwardOut should have comment or be unexported (golint)
    • Line 15469: warning: exported method Tensor.ReplicationPad2dOut should have comment or be unexported (golint)
    • Line 15484: warning: exported method Tensor.ReplicationPad3d should have comment or be unexported (golint)
    • Line 15499: warning: exported method Tensor.ReplicationPad3dBackward should have comment or be unexported (golint)
    • Line 15514: warning: exported method Tensor.ReplicationPad3dBackwardOut should have comment or be unexported (golint)
    • Line 15529: warning: exported method Tensor.ReplicationPad3dOut should have comment or be unexported (golint)
    • Line 15544: warning: exported method Tensor.RequiresGrad_ should have comment or be unexported (golint)
    • Line 15544: warning: don't use underscores in Go names; method RequiresGrad_ should be RequiresGrad (golint)
    • Line 15559: warning: exported method Tensor.Reshape should have comment or be unexported (golint)
    • Line 15574: warning: exported method Tensor.ReshapeAs should have comment or be unexported (golint)
    • Line 15589: warning: exported method Tensor.Resize_ should have comment or be unexported (golint)
    • Line 15589: warning: don't use underscores in Go names; method Resize_ should be Resize (golint)
    • Line 15600: warning: exported method Tensor.ResizeAs_ should have comment or be unexported (golint)
    • Line 15600: warning: don't use underscores in Go names; method ResizeAs_ should be ResizeAs (golint)
    • Line 15611: warning: exported method Tensor.Rfft should have comment or be unexported (golint)
    • Line 15634: warning: exported function RnnReluCell should have comment or be unexported (golint)
    • Line 15646: warning: exported function RnnTanhCell should have comment or be unexported (golint)
    • Line 15658: warning: exported method Tensor.Roll should have comment or be unexported (golint)
    • Line 15673: warning: exported method Tensor.Rot90 should have comment or be unexported (golint)
    • Line 15688: warning: exported method Tensor.Round should have comment or be unexported (golint)
    • Line 15703: warning: exported method Tensor.Round_ should have comment or be unexported (golint)
    • Line 15703: warning: don't use underscores in Go names; method Round_ should be Round (golint)
    • Line 15714: warning: exported method Tensor.RoundOut should have comment or be unexported (golint)
    • Line 15729: warning: exported method Tensor.Rrelu should have comment or be unexported (golint)
    • Line 15748: warning: exported method Tensor.Rrelu_ should have comment or be unexported (golint)
    • Line 15748: warning: don't use underscores in Go names; method Rrelu_ should be Rrelu (golint)
    • Line 15763: warning: exported method Tensor.RreluWithNoise should have comment or be unexported (golint)
    • Line 15782: warning: exported method Tensor.RreluWithNoise_ should have comment or be unexported (golint)
    • Line 15782: warning: don't use underscores in Go names; method RreluWithNoise_ should be RreluWithNoise (golint)
    • Line 15797: warning: exported method Tensor.RreluWithNoiseBackward should have comment or be unexported (golint)
    • Line 15820: warning: exported method Tensor.RreluWithNoiseOut should have comment or be unexported (golint)
    • Line 15839: warning: exported method Tensor.Rsqrt should have comment or be unexported (golint)
    • Line 15854: warning: exported method Tensor.Rsqrt_ should have comment or be unexported (golint)
    • Line 15854: warning: don't use underscores in Go names; method Rsqrt_ should be Rsqrt (golint)
    • Line 15865: warning: exported method Tensor.RsqrtOut should have comment or be unexported (golint)
    • Line 15880: warning: exported method Tensor.Rsub should have comment or be unexported (golint)
    • Line 15895: warning: exported method Tensor.Rsub1 should have comment or be unexported (golint)
    • Line 15910: warning: exported function ScalarTensor should have comment or be unexported (golint)
    • Line 15922: warning: exported method Tensor.Scatter should have comment or be unexported (golint)
    • Line 15937: warning: exported method Tensor.Scatter1 should have comment or be unexported (golint)
    • Line 15952: warning: exported method Tensor.Scatter_ should have comment or be unexported (golint)
    • Line 15952: warning: don't use underscores in Go names; method Scatter_ should be Scatter (golint)
    • Line 15963: warning: exported method Tensor.Scatter1_ should have comment or be unexported (golint)
    • Line 15963: warning: don't use underscores in Go names; method Scatter1_ should be Scatter1 (golint)
    • Line 15974: warning: exported method Tensor.Scatter2 should have comment or be unexported (golint)
    • Line 15985: warning: exported method Tensor.Scatter3 should have comment or be unexported (golint)
    • Line 15996: warning: exported method Tensor.ScatterAdd should have comment or be unexported (golint)
    • Line 16011: warning: exported method Tensor.ScatterAdd_ should have comment or be unexported (golint)
    • Line 16011: warning: don't use underscores in Go names; method ScatterAdd_ should be ScatterAdd (golint)
    • Line 16022: warning: exported method Tensor.Searchsorted should have comment or be unexported (golint)
    • Line 16045: warning: exported function Searchsorted1 should have comment or be unexported (golint)
    • Line 16065: warning: exported method Tensor.SearchsortedOut should have comment or be unexported (golint)
    • Line 16088: warning: exported method Tensor.Select should have comment or be unexported (golint)
    • Line 16103: warning: exported function SelectBackward should have comment or be unexported (golint)
    • Line 16115: warning: exported method Tensor.Selu should have comment or be unexported (golint)
    • Line 16130: warning: exported method Tensor.Selu_ should have comment or be unexported (golint)
    • Line 16130: warning: don't use underscores in Go names; method Selu_ should be Selu (golint)
    • Line 16141: warning: exported method Tensor.Set_ should have comment or be unexported (golint)
    • Line 16141: warning: don't use underscores in Go names; method Set_ should be Set (golint)
    • Line 16152: warning: exported method Tensor.Set1_ should have comment or be unexported (golint)
    • Line 16152: warning: don't use underscores in Go names; method Set1_ should be Set1 (golint)
    • Line 16163: warning: exported method Tensor.SetRequiresGrad should have comment or be unexported (golint)
    • Line 16182: warning: exported method Tensor.Sgn should have comment or be unexported (golint)
    • Line 16197: warning: exported method Tensor.Sgn_ should have comment or be unexported (golint)
    • Line 16197: warning: don't use underscores in Go names; method Sgn_ should be Sgn (golint)
    • Line 16208: warning: exported method Tensor.SgnOut should have comment or be unexported (golint)
    • Line 16223: warning: exported method Tensor.Sigmoid should have comment or be unexported (golint)
    • Line 16238: warning: exported method Tensor.Sigmoid_ should have comment or be unexported (golint)
    • Line 16238: warning: don't use underscores in Go names; method Sigmoid_ should be Sigmoid (golint)
    • Line 16249: warning: exported function SigmoidBackward should have comment or be unexported (golint)
    • Line 16261: warning: exported function SigmoidBackwardOut should have comment or be unexported (golint)
    • Line 16273: warning: exported method Tensor.SigmoidOut should have comment or be unexported (golint)
    • Line 16288: warning: exported method Tensor.Sign should have comment or be unexported (golint)
    • Line 16303: warning: exported method Tensor.Sign_ should have comment or be unexported (golint)
    • Line 16303: warning: don't use underscores in Go names; method Sign_ should be Sign (golint)
    • Line 16314: warning: exported method Tensor.SignOut should have comment or be unexported (golint)
    • Line 16329: warning: exported method Tensor.Signbit should have comment or be unexported (golint)
    • Line 16344: warning: exported method Tensor.SignbitOut should have comment or be unexported (golint)
    • Line 16359: warning: exported method Tensor.Silu should have comment or be unexported (golint)
    • Line 16374: warning: exported method Tensor.Silu_ should have comment or be unexported (golint)
    • Line 16374: warning: don't use underscores in Go names; method Silu_ should be Silu (golint)
    • Line 16385: warning: exported method Tensor.SiluBackward should have comment or be unexported (golint)
    • Line 16400: warning: exported method Tensor.SiluOut should have comment or be unexported (golint)
    • Line 16415: warning: exported method Tensor.Sin should have comment or be unexported (golint)
    • Line 16430: warning: exported method Tensor.Sin_ should have comment or be unexported (golint)
    • Line 16430: warning: don't use underscores in Go names; method Sin_ should be Sin (golint)
    • Line 16441: warning: exported method Tensor.SinOut should have comment or be unexported (golint)
    • Line 16456: warning: exported method Tensor.Sinh should have comment or be unexported (golint)
    • Line 16471: warning: exported method Tensor.Sinh_ should have comment or be unexported (golint)
    • Line 16471: warning: don't use underscores in Go names; method Sinh_ should be Sinh (golint)
    • Line 16482: warning: exported method Tensor.SinhOut should have comment or be unexported (golint)
    • Line 16497: warning: exported method Tensor.Slice should have comment or be unexported (golint)
    • Line 16512: warning: exported function SliceBackward should have comment or be unexported (golint)
    • Line 16524: warning: exported method Tensor.SlowConv3d should have comment or be unexported (golint)
    • Line 16539: warning: exported method Tensor.SlowConv3dOut should have comment or be unexported (golint)
    • Line 16554: warning: exported method Tensor.SlowConvDilated2d should have comment or be unexported (golint)
    • Line 16569: warning: exported method Tensor.SlowConvDilated3d should have comment or be unexported (golint)
    • Line 16584: warning: exported method Tensor.SlowConvTranspose2d should have comment or be unexported (golint)
    • Line 16599: warning: exported method Tensor.SlowConvTranspose2dOut should have comment or be unexported (golint)
    • Line 16614: warning: exported method Tensor.SlowConvTranspose3d should have comment or be unexported (golint)
    • Line 16629: warning: exported method Tensor.SlowConvTranspose3dOut should have comment or be unexported (golint)
    • Line 16644: warning: exported method Tensor.Smm should have comment or be unexported (golint)
    • Line 16659: warning: exported method Tensor.SmoothL1Loss should have comment or be unexported (golint)
    • Line 16674: warning: exported method Tensor.SmoothL1LossBackward should have comment or be unexported (golint)
    • Line 16689: warning: exported method Tensor.SmoothL1LossBackwardOut should have comment or be unexported (golint)
    • Line 16704: warning: exported method Tensor.SmoothL1LossOut should have comment or be unexported (golint)
    • Line 16719: warning: exported method Tensor.SoftMarginLoss should have comment or be unexported (golint)
    • Line 16734: warning: exported method Tensor.SoftMarginLossBackward should have comment or be unexported (golint)
    • Line 16749: warning: exported method Tensor.SoftMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 16764: warning: exported method Tensor.SoftMarginLossOut should have comment or be unexported (golint)
    • Line 16779: warning: exported method Tensor.Softmax should have comment or be unexported (golint)
    • Line 16794: warning: exported method Tensor.Softplus should have comment or be unexported (golint)
    • Line 16809: warning: exported method Tensor.SoftplusBackward should have comment or be unexported (golint)
    • Line 16824: warning: exported method Tensor.SoftplusBackwardOut should have comment or be unexported (golint)
    • Line 16839: warning: exported method Tensor.SoftplusOut should have comment or be unexported (golint)
    • Line 16854: warning: exported method Tensor.Softshrink should have comment or be unexported (golint)
    • Line 16869: warning: exported method Tensor.SoftshrinkBackward should have comment or be unexported (golint)
    • Line 16884: warning: exported method Tensor.SoftshrinkBackwardOut should have comment or be unexported (golint)
    • Line 16899: warning: exported method Tensor.SoftshrinkOut should have comment or be unexported (golint)
    • Line 16914: warning: exported function SparseCooTensor should have comment or be unexported (golint)
    • Line 16926: warning: exported function SparseCooTensor1 should have comment or be unexported (golint)
    • Line 16938: warning: exported function SparseCooTensor2 should have comment or be unexported (golint)
    • Line 16950: warning: exported method Tensor.SparseMask should have comment or be unexported (golint)
    • Line 16965: warning: exported method Tensor.SparseResize_ should have comment or be unexported (golint)
    • Line 16965: warning: don't use underscores in Go names; method SparseResize_ should be SparseResize (golint)
    • Line 16976: warning: exported method Tensor.SparseResizeAndClear_ should have comment or be unexported (golint)
    • Line 16976: warning: don't use underscores in Go names; method SparseResizeAndClear_ should be SparseResizeAndClear (golint)
    • Line 16987: warning: exported method Tensor.Sqrt should have comment or be unexported (golint)
    • Line 17002: warning: exported method Tensor.Sqrt_ should have comment or be unexported (golint)
    • Line 17002: warning: don't use underscores in Go names; method Sqrt_ should be Sqrt (golint)
    • Line 17013: warning: exported method Tensor.SqrtOut should have comment or be unexported (golint)
    • Line 17028: warning: exported method Tensor.Square should have comment or be unexported (golint)
    • Line 17043: warning: exported method Tensor.Square_ should have comment or be unexported (golint)
    • Line 17043: warning: don't use underscores in Go names; method Square_ should be Square (golint)
    • Line 17054: warning: exported method Tensor.Squeeze should have comment or be unexported (golint)
    • Line 17069: warning: exported method Tensor.Squeeze1 should have comment or be unexported (golint)
    • Line 17084: warning: exported method Tensor.Squeeze_ should have comment or be unexported (golint)
    • Line 17084: warning: don't use underscores in Go names; method Squeeze_ should be Squeeze (golint)
    • Line 17095: warning: exported method Tensor.Squeeze1_ should have comment or be unexported (golint)
    • Line 17095: warning: don't use underscores in Go names; method Squeeze1_ should be Squeeze1 (golint)
    • Line 17106: warning: exported method Tensor.Sspaddmm should have comment or be unexported (golint)
    • Line 17121: warning: exported method Tensor.SspaddmmOut should have comment or be unexported (golint)
    • Line 17136: warning: exported function Stack should have comment or be unexported (golint)
    • Line 17152: warning: exported function StackOut should have comment or be unexported (golint)
    • Line 17168: warning: exported method Tensor.Std should have comment or be unexported (golint)
    • Line 17187: warning: exported method Tensor.Std1 should have comment or be unexported (golint)
    • Line 17210: warning: exported method Tensor.StdOut should have comment or be unexported (golint)
    • Line 17233: warning: exported method Tensor.Stft should have comment or be unexported (golint)
    • Line 17272: warning: exported method Tensor.Sub should have comment or be unexported (golint)
    • Line 17287: warning: exported method Tensor.Sub1 should have comment or be unexported (golint)
    • Line 17302: warning: exported method Tensor.Sub_ should have comment or be unexported (golint)
    • Line 17302: warning: don't use underscores in Go names; method Sub_ should be Sub (golint)
    • Line 17313: warning: exported method Tensor.Sub1_ should have comment or be unexported (golint)
    • Line 17313: warning: don't use underscores in Go names; method Sub1_ should be Sub1 (golint)
    • Line 17324: warning: exported method Tensor.SubOut should have comment or be unexported (golint)
    • Line 17339: warning: exported method Tensor.Subtract should have comment or be unexported (golint)
    • Line 17354: warning: exported method Tensor.Subtract1 should have comment or be unexported (golint)
    • Line 17369: warning: exported method Tensor.Subtract_ should have comment or be unexported (golint)
    • Line 17369: warning: don't use underscores in Go names; method Subtract_ should be Subtract (golint)
    • Line 17380: warning: exported method Tensor.Subtract1_ should have comment or be unexported (golint)
    • Line 17380: warning: don't use underscores in Go names; method Subtract1_ should be Subtract1 (golint)
    • Line 17391: warning: exported method Tensor.SubtractOut should have comment or be unexported (golint)
    • Line 17406: warning: exported method Tensor.Sum should have comment or be unexported (golint)
    • Line 17421: warning: exported method Tensor.Sum1 should have comment or be unexported (golint)
    • Line 17440: warning: exported method Tensor.SumOut should have comment or be unexported (golint)
    • Line 17459: warning: exported method Tensor.SumToSize should have comment or be unexported (golint)
    • Line 17474: warning: exported method Tensor.T should have comment or be unexported (golint)
    • Line 17489: warning: exported method Tensor.T_ should have comment or be unexported (golint)
    • Line 17500: warning: exported method Tensor.Take should have comment or be unexported (golint)
    • Line 17515: warning: exported function TakeBackward should have comment or be unexported (golint)
    • Line 17527: warning: exported method Tensor.TakeOut should have comment or be unexported (golint)
    • Line 17542: warning: exported method Tensor.Tan should have comment or be unexported (golint)
    • Line 17557: warning: exported method Tensor.Tan_ should have comment or be unexported (golint)
    • Line 17557: warning: don't use underscores in Go names; method Tan_ should be Tan (golint)
    • Line 17568: warning: exported method Tensor.TanOut should have comment or be unexported (golint)
    • Line 17583: warning: exported method Tensor.Tanh should have comment or be unexported (golint)
    • Line 17598: warning: exported method Tensor.Tanh_ should have comment or be unexported (golint)
    • Line 17598: warning: don't use underscores in Go names; method Tanh_ should be Tanh (golint)
    • Line 17609: warning: exported function TanhBackward should have comment or be unexported (golint)
    • Line 17621: warning: exported function TanhBackwardOut should have comment or be unexported (golint)
    • Line 17633: warning: exported method Tensor.TanhOut should have comment or be unexported (golint)
    • Line 17648: warning: exported method Tensor.Tensordot should have comment or be unexported (golint)
    • Line 17663: warning: exported method Tensor.Threshold should have comment or be unexported (golint)
    • Line 17678: warning: exported method Tensor.Threshold_ should have comment or be unexported (golint)
    • Line 17678: warning: don't use underscores in Go names; method Threshold_ should be Threshold (golint)
    • Line 17689: warning: exported method Tensor.ThresholdBackward should have comment or be unexported (golint)
    • Line 17704: warning: exported method Tensor.ThresholdOut should have comment or be unexported (golint)
    • Line 17719: warning: exported method Tensor.To should have comment or be unexported (golint)
    • Line 17734: warning: exported method Tensor.To1 should have comment or be unexported (golint)
    • Line 17757: warning: exported method Tensor.To2 should have comment or be unexported (golint)
    • Line 17780: warning: exported method Tensor.To3 should have comment or be unexported (golint)
    • Line 17803: warning: exported method Tensor.To4 should have comment or be unexported (golint)
    • Line 17826: warning: exported method Tensor.ToDense should have comment or be unexported (golint)
    • Line 17841: warning: exported function ToDenseBackward should have comment or be unexported (golint)
    • Line 17853: warning: exported method Tensor.ToMkldnn should have comment or be unexported (golint)
    • Line 17868: warning: exported function ToMkldnnBackward should have comment or be unexported (golint)
    • Line 17880: warning: exported method Tensor.ToSparse should have comment or be unexported (golint)
    • Line 17895: warning: exported method Tensor.ToSparse1 should have comment or be unexported (golint)
    • Line 17910: warning: exported method Tensor.Totype should have comment or be unexported (golint)
    • Line 17925: warning: exported method Tensor.Trace should have comment or be unexported (golint)
    • Line 17940: warning: exported function TraceBackward should have comment or be unexported (golint)
    • Line 17952: warning: exported method Tensor.Transpose should have comment or be unexported (golint)
    • Line 17967: warning: exported method Tensor.Transpose_ should have comment or be unexported (golint)
    • Line 17967: warning: don't use underscores in Go names; method Transpose_ should be Transpose (golint)
    • Line 17978: warning: exported function Trapz should have comment or be unexported (golint)
    • Line 17990: warning: exported function Trapz1 should have comment or be unexported (golint)
    • Line 18002: warning: exported method Tensor.Tril should have comment or be unexported (golint)
    • Line 18017: warning: exported method Tensor.Tril_ should have comment or be unexported (golint)
    • Line 18017: warning: don't use underscores in Go names; method Tril_ should be Tril (golint)
    • Line 18028: warning: exported function TrilIndices should have comment or be unexported (golint)
    • Line 18040: warning: exported method Tensor.TrilOut should have comment or be unexported (golint)
    • Line 18055: warning: exported function TripletMarginLoss should have comment or be unexported (golint)
    • Line 18071: warning: exported method Tensor.Triu should have comment or be unexported (golint)
    • Line 18086: warning: exported method Tensor.Triu_ should have comment or be unexported (golint)
    • Line 18086: warning: don't use underscores in Go names; method Triu_ should be Triu (golint)
    • Line 18097: warning: exported function TriuIndices should have comment or be unexported (golint)
    • Line 18109: warning: exported method Tensor.TriuOut should have comment or be unexported (golint)
    • Line 18124: warning: exported method Tensor.TrueDivide should have comment or be unexported (golint)
    • Line 18139: warning: exported method Tensor.TrueDivide1 should have comment or be unexported (golint)
    • Line 18154: warning: exported method Tensor.TrueDivide_ should have comment or be unexported (golint)
    • Line 18154: warning: don't use underscores in Go names; method TrueDivide_ should be TrueDivide (golint)
    • Line 18165: warning: exported method Tensor.TrueDivide1_ should have comment or be unexported (golint)
    • Line 18165: warning: don't use underscores in Go names; method TrueDivide1_ should be TrueDivide1 (golint)
    • Line 18176: warning: exported method Tensor.TrueDivideOut should have comment or be unexported (golint)
    • Line 18191: warning: exported method Tensor.Trunc should have comment or be unexported (golint)
    • Line 18206: warning: exported method Tensor.Trunc_ should have comment or be unexported (golint)
    • Line 18206: warning: don't use underscores in Go names; method Trunc_ should be Trunc (golint)
    • Line 18217: warning: exported method Tensor.TruncOut should have comment or be unexported (golint)
    • Line 18232: warning: exported method Tensor.TypeAs should have comment or be unexported (golint)
    • Line 18247: warning: exported method Tensor.Unflatten should have comment or be unexported (golint)
    • Line 18262: warning: exported method Tensor.Unfold should have comment or be unexported (golint)
    • Line 18277: warning: exported function UnfoldBackward should have comment or be unexported (golint)
    • Line 18289: warning: exported method Tensor.Uniform_ should have comment or be unexported (golint)
    • Line 18289: warning: don't use underscores in Go names; method Uniform_ should be Uniform (golint)
    • Line 18300: warning: exported method Tensor.Unsqueeze should have comment or be unexported (golint)
    • Line 18315: warning: exported method Tensor.Unsqueeze_ should have comment or be unexported (golint)
    • Line 18315: warning: don't use underscores in Go names; method Unsqueeze_ should be Unsqueeze (golint)
    • Line 18326: warning: exported method Tensor.UpsampleBicubic2d should have comment or be unexported (golint)
    • Line 18357: warning: exported function UpsampleBicubic2dBackward should have comment or be unexported (golint)
    • Line 18385: warning: exported function UpsampleBicubic2dBackwardOut should have comment or be unexported (golint)
    • Line 18413: warning: exported method Tensor.UpsampleBicubic2dOut should have comment or be unexported (golint)
    • Line 18444: warning: exported method Tensor.UpsampleBilinear2d should have comment or be unexported (golint)
    • Line 18475: warning: exported function UpsampleBilinear2dBackward should have comment or be unexported (golint)
    • Line 18503: warning: exported function UpsampleBilinear2dBackwardOut should have comment or be unexported (golint)
    • Line 18531: warning: exported method Tensor.UpsampleBilinear2dOut should have comment or be unexported (golint)
    • Line 18562: warning: exported method Tensor.UpsampleLinear1d should have comment or be unexported (golint)
    • Line 18587: warning: exported function UpsampleLinear1dBackward should have comment or be unexported (golint)
    • Line 18609: warning: exported function UpsampleLinear1dBackwardOut should have comment or be unexported (golint)
    • Line 18631: warning: exported method Tensor.UpsampleLinear1dOut should have comment or be unexported (golint)
    • Line 18656: warning: exported method Tensor.UpsampleNearest1d should have comment or be unexported (golint)
    • Line 18677: warning: exported function UpsampleNearest1dBackward should have comment or be unexported (golint)
    • Line 18695: warning: exported function UpsampleNearest1dBackwardOut should have comment or be unexported (golint)
    • Line 18713: warning: exported method Tensor.UpsampleNearest1dOut should have comment or be unexported (golint)
    • Line 18734: warning: exported method Tensor.UpsampleNearest2d should have comment or be unexported (golint)
    • Line 18761: warning: exported function UpsampleNearest2dBackward should have comment or be unexported (golint)
    • Line 18785: warning: exported function UpsampleNearest2dBackwardOut should have comment or be unexported (golint)
    • Line 18809: warning: exported method Tensor.UpsampleNearest2dOut should have comment or be unexported (golint)
    • Line 18836: warning: exported method Tensor.UpsampleNearest3d should have comment or be unexported (golint)
    • Line 18869: warning: exported function UpsampleNearest3dBackward should have comment or be unexported (golint)
    • Line 18899: warning: exported function UpsampleNearest3dBackwardOut should have comment or be unexported (golint)
    • Line 18929: warning: exported method Tensor.UpsampleNearest3dOut should have comment or be unexported (golint)
    • Line 18962: warning: exported method Tensor.UpsampleTrilinear3d should have comment or be unexported (golint)
    • Line 18999: warning: exported function UpsampleTrilinear3dBackward should have comment or be unexported (golint)
    • Line 19033: warning: exported function UpsampleTrilinear3dBackwardOut should have comment or be unexported (golint)
    • Line 19067: warning: exported method Tensor.UpsampleTrilinear3dOut should have comment or be unexported (golint)
    • Line 19104: warning: exported function ValueSelectingReductionBackward should have comment or be unexported (golint)
    • Line 19120: warning: exported method Tensor.Values should have comment or be unexported (golint)
    • Line 19135: warning: exported function Vander should have comment or be unexported (golint)
    • Line 19157: warning: exported method Tensor.Var should have comment or be unexported (golint)
    • Line 19176: warning: exported method Tensor.Var1 should have comment or be unexported (golint)
    • Line 19199: warning: exported method Tensor.VarOut should have comment or be unexported (golint)
    • Line 19222: warning: exported method Tensor.Vdot should have comment or be unexported (golint)
    • Line 19237: warning: exported method Tensor.VdotOut should have comment or be unexported (golint)
    • Line 19252: warning: exported method Tensor.View should have comment or be unexported (golint)
    • Line 19267: warning: exported method Tensor.ViewAs should have comment or be unexported (golint)
    • Line 19282: warning: exported method Tensor.ViewAsComplex should have comment or be unexported (golint)
    • Line 19297: warning: exported method Tensor.ViewAsReal should have comment or be unexported (golint)
    • Line 19312: warning: exported function Vstack should have comment or be unexported (golint)
    • Line 19328: warning: exported function VstackOut should have comment or be unexported (golint)
    • Line 19344: warning: exported method Tensor.Where1 should have comment or be unexported (golint)
    • Line 19359: warning: exported function Where2 should have comment or be unexported (golint)
    • Line 19371: warning: exported method Tensor.Where3 should have comment or be unexported (golint)
    • Line 19386: warning: exported function Where4 should have comment or be unexported (golint)
    • Line 19398: warning: exported method Tensor.Zero_ should have comment or be unexported (golint)
    • Line 19398: warning: don't use underscores in Go names; method Zero_ should be Zero (golint)
    • Line 19409: warning: exported function Zeros should have comment or be unexported (golint)
    • Line 19421: warning: exported method Tensor.ZerosLike should have comment or be unexported (golint)
    • Line 19436: warning: exported function ZerosOut should have comment or be unexported (golint)
    • gotch/vision/dataset.go
    • Line 14: warning: exported type Dataset should have comment or be unexported (golint)
    • Line 72: warning: comment on exported function RandomCrop should be of the form "RandomCrop ..." (golint)
    • Line 116: warning: comment on exported function RandomCutout should be of the form "RandomCutout ..." (golint)
    • Line 171: warning: exported function Augmentation should have comment or be unexported (golint)
    • gotch/tensor/npy.go
    • Line 18: warning: exported const NpyMagicString should have comment (or a comment on this block) or be unexported (golint)
    • Line 72: warning: exported type NpyHeader should have comment or be unexported (golint)
    • Line 78: warning: comment on exported function NewNpyHeader should be of the form "NewNpyHeader ..." (golint)
    • Line 89: warning: exported method NpyHeader.ToString should have comment or be unexported (golint)
    • gotch/vision/aug/grayscale.go
    • Line 10: warning: comment on exported type Grayscale should be of the form "Grayscale ..." (with optional leading article) (golint)
    • Line 19: warning: exported method Grayscale.Forward should have comment or be unexported (golint)
    • Line 57: warning: exported method RandomGrayscale.Forward should have comment or be unexported (golint)
    • Line 71: warning: exported function WithRandomGrayscale should have comment or be unexported (golint)
    • gotch/libtch/patch.go
    • Line 22: warning: comment on exported function AtgAlignTensors should be of the form "AtgAlignTensors ..." (golint)
    • Line 30: warning: comment on exported function AtgBroadcastTensors should be of the form "AtgBroadcastTensors ..." (golint)
    • Line 38: warning: comment on exported function AtgChunk should be of the form "AtgChunk ..." (golint)
    • Line 46: warning: comment on exported function AtgMeshgrid should be of the form "AtgMeshgrid ..." (golint)
    • Line 54: warning: comment on exported function AtgNonzeroNumpy should be of the form "AtgNonzeroNumpy ..." (golint)
    • Line 59: warning: comment on exported function AtgSplit should be of the form "AtgSplit ..." (golint)
    • Line 68: warning: comment on exported function AtgSplitWithSizes should be of the form "AtgSplitWithSizes ..." (golint)
    • Line 78: warning: comment on exported function AtgUnbind should be of the form "AtgUnbind ..." (golint)
    • Line 85: warning: comment on exported function AtgWhere should be of the form "AtgWhere ..." (golint)
    • gotch/dutil/kfold.go
    • Line 25: warning: exported type KFoldOptions should have comment or be unexported (golint)
    • Line 30: warning: exported type KFoldOption should have comment or be unexported (golint)
    • Line 32: warning: exported function NewKFoldOptions should have comment or be unexported (golint)
    • Line 45: warning: exported function WithNFolds should have comment or be unexported (golint)
    • Line 51: warning: exported function WithKFoldShuffle should have comment or be unexported (golint)
    • Line 78: warning: exported method KFold.Split should have comment or be unexported (golint)
    • gotch/example/translation/dataset.go
    • Line 12: warning: exported var Prefixes should have comment or be unexported (golint)
    • Line 27: warning: exported type Pair should have comment or be unexported (golint)
    • Line 32: warning: exported type Dataset should have comment or be unexported (golint)
    • Line 148: warning: exported method Dataset.InputLang should have comment or be unexported (golint)
    • Line 152: warning: exported method Dataset.OutputLang should have comment or be unexported (golint)
    • Line 156: warning: exported method Dataset.Reverse should have comment or be unexported (golint)
    • Line 168: warning: exported type Pairs should have comment or be unexported (golint)
    • Line 173: warning: exported method Dataset.Pairs should have comment or be unexported (golint)
    • gotch/vision/aug/color.go
    • Line 12: warning: exported type ColorJitter should have comment or be unexported (golint)
    • Line 67: warning: exported function WithColorJitter should have comment or be unexported (golint)
    • gotch/vision/aug/cutout.go
    • Line 12: warning: comment on exported type RandomCutout should be of the form "RandomCutout ..." (with optional leading article) (golint)
    • Line 58: warning: exported function WithCutoutPvalue should have comment or be unexported (golint)
    • Line 67: warning: exported function WithCutoutScale should have comment or be unexported (golint)
    • Line 76: warning: exported function WithCutoutRatio should have comment or be unexported (golint)
    • Line 85: warning: exported function WithCutoutValue should have comment or be unexported (golint)
    • Line 148: warning: exported method RandomCutout.Forward should have comment or be unexported (golint)
    • Line 167: warning: exported function WithRandomCutout should have comment or be unexported (golint)
    • gotch/vision/mobilenet.go
    • Line 62: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 78: warning: exported function MobileNetV2 should have comment or be unexported (golint)
    • gotch/libtch/scalar.go
    • Line 11: warning: comment on exported function AtsInt should be of the form "AtsInt ..." (golint)
    • Line 17: warning: comment on exported function AtsFloat should be of the form "AtsFloat ..." (golint)
    • Line 23: warning: comment on exported function AtsToInt should be of the form "AtsToInt ..." (golint)
    • Line 29: warning: comment on exported function AtsToFloat should be of the form "AtsToFloat ..." (golint)
    • Line 35: warning: comment on exported function AtsToString should be of the form "AtsToString ..." (golint)
    • Line 41: warning: comment on exported function AtsFree should be of the form "AtsFree ..." (golint)
    • gotch/tensor/optimizer.go
    • Line 9: warning: exported type COptimizer should have comment or be unexported (golint)
    • Line 76: warning: comment on exported method COptimizer.SetLearningRate should be of the form "SetLearningRate ..." (golint)
    • Line 97: warning: comment on exported method COptimizer.Step should be of the form "Step ..." (golint)
    • gotch/nn/rnn.go
    • Line 8: warning: exported type State should have comment or be unexported (golint)
    • Line 10: warning: exported type RNN should have comment or be unexported (golint)
    • Line 32: warning: comment on exported type LSTMState should be of the form "LSTMState ..." (with optional leading article) (golint)
    • Line 38: warning: comment on exported method LSTMState.H should be of the form "H ..." (golint)
    • Line 43: warning: comment on exported method LSTMState.C should be of the form "C ..." (golint)
    • Line 48: warning: comment on exported type RNNConfig should be of the form "RNNConfig ..." (with optional leading article) (golint)
    • Line 59: warning: comment on exported function DefaultRNNConfig should be of the form "DefaultRNNConfig ..." (golint)
    • Line 71: warning: comment on exported type LSTM should be of the form "LSTM ..." (with optional leading article) (golint)
    • Line 127: warning: exported method LSTM.ZeroState should have comment or be unexported (golint)
    • Line 147: warning: exported method LSTM.Step should have comment or be unexported (golint)
    • Line 159: warning: exported method LSTM.Seq should have comment or be unexported (golint)
    • Line 172: warning: exported method LSTM.SeqInit should have comment or be unexported (golint)
    • Line 187: warning: exported method GRUState.Value should have comment or be unexported (golint)
    • Line 191: warning: comment on exported type GRU should be of the form "GRU ..." (with optional leading article) (golint)
    • Line 246: warning: exported method GRU.ZeroState should have comment or be unexported (golint)
    • Line 260: warning: exported method GRU.Step should have comment or be unexported (golint)
    • Line 272: warning: exported method GRU.Seq should have comment or be unexported (golint)
    • Line 284: warning: exported method GRU.SeqInit should have comment or be unexported (golint)
    • gotch/vision/aug/resize.go
    • Line 11: warning: exported type ResizeModule should have comment or be unexported (golint)
    • Line 31: warning: exported function WithResize should have comment or be unexported (golint)
    • Line 38: warning: comment on exported type RandomResizedCrop should be of the form "RandomResizedCrop ..." (with optional leading article) (golint)
    • gotch/vision/aug/affine.go
    • Line 97: warning: exported method RandomAffine.Forward should have comment or be unexported (golint)
    • Line 144: warning: exported function WithAffineDegree should have comment or be unexported (golint)
    • Line 150: warning: exported function WithAffineTranslate should have comment or be unexported (golint)
    • Line 156: warning: exported function WithAffineScale should have comment or be unexported (golint)
    • Line 162: warning: exported function WithAffineShear should have comment or be unexported (golint)
    • Line 168: warning: exported function WithAffineMode should have comment or be unexported (golint)
    • Line 174: warning: exported function WithAffineFillValue should have comment or be unexported (golint)
    • Line 180: warning: exported function WithRandomAffine should have comment or be unexported (golint)
    • gotch/tensor/jit.go
    • Line 21: warning: exported type CIValue should have comment or be unexported (golint)
    • Line 25: warning: exported type IValueKind should have comment or be unexported (golint)
    • Line 30: warning: exported var NoneVal should have comment or be unexported (golint)
    • Line 46: warning: exported type IValue should have comment or be unexported (golint)
    • Line 169: warning: exported method IValue.ToCIValue should have comment or be unexported (golint)
    • Line 931: warning: exported method IValue.Value should have comment or be unexported (golint)
    • Line 935: warning: exported method IValue.Name should have comment or be unexported (golint)
    • Line 939: warning: exported method IValue.Kind should have comment or be unexported (golint)
    • Line 943: warning: comment on exported type CModule should be of the form "CModule ..." (with optional leading article) (golint)
    • Line 951: warning: exported method CModule.Drop should have comment or be unexported (golint)
    • Line 958: warning: comment on exported function ModuleLoad should be of the form "ModuleLoad ..." (golint)
    • Line 969: warning: comment on exported function ModuleLoadOnDevice should be of the form "ModuleLoadOnDevice ..." (golint)
    • Line 982: warning: comment on exported function ModuleLoadData should be of the form "ModuleLoadData ..." (golint)
    • Line 999: warning: comment on exported function ModuleLoadDataOnDevice should be of the form "ModuleLoadDataOnDevice ..." (golint)
    • Line 1192: warning: comment on exported method CModule.Forward should be of the form "Forward ..." (golint)
    • Line 1202: warning: comment on exported method Tensor.ApplyCModule should be of the form "ApplyCModule ..." (golint)
    • gotch/tensor/patch.go
    • Line 16: warning: exported method Tensor.Lstm should have comment or be unexported (golint)
    • Line 62: warning: exported method Tensor.MustLstm should have comment or be unexported (golint)
    • Line 72: warning: exported method Tensor.Gru should have comment or be unexported (golint)
    • Line 112: warning: exported method Tensor.MustGru should have comment or be unexported (golint)
    • Line 121: warning: exported method Tensor.TopK should have comment or be unexported (golint)
    • Line 145: warning: exported method Tensor.MustTopK should have comment or be unexported (golint)
    • Line 155: warning: comment on exported method Tensor.NLLLoss should be of the form "NLLLoss ..." (golint)
    • Line 177: warning: exported method Tensor.MustNLLLoss should have comment or be unexported (golint)
    • Line 202: warning: comment on exported function AlignTensors should be of the form "AlignTensors ..." (golint)
    • Line 230: warning: exported function MustAlignTensors should have comment or be unexported (golint)
    • Line 244: warning: comment on exported function BroadcastTensors should be of the form "BroadcastTensors ..." (golint)
    • Line 272: warning: exported function MustBroadcastTensors should have comment or be unexported (golint)
    • Line 287: warning: comment on exported method Tensor.Chunk should be of the form "Chunk ..." (golint)
    • Line 310: warning: exported method Tensor.MustChunk should have comment or be unexported (golint)
    • Line 323: warning: comment on exported method Tensor.Meshgrid should be of the form "Meshgrid ..." (golint)
    • Line 351: warning: exported method Tensor.MustMeshgrid should have comment or be unexported (golint)
    • Line 364: warning: comment on exported method Tensor.NonzeroNumpy should be of the form "NonzeroNumpy ..." (golint)
    • Line 387: warning: exported method Tensor.MustNonzeroNumpy should have comment or be unexported (golint)
    • Line 433: warning: exported method Tensor.MustSplit should have comment or be unexported (golint)
    • Line 479: warning: exported method Tensor.MustSplitWithSizes should have comment or be unexported (golint)
    • Line 492: warning: comment on exported method Tensor.Unbind should be of the form "Unbind ..." (golint)
    • Line 515: warning: exported method Tensor.MustUnbind should have comment or be unexported (golint)
    • Line 528: warning: comment on exported function Where should be of the form "Where ..." (golint)
    • Line 551: warning: exported function MustWhere should have comment or be unexported (golint)
    • Line 567: warning: comment on exported method Tensor.Lstsq should be of the form "Lstsq ..." (golint)
    • Line 583: warning: exported method Tensor.MustLstsq should have comment or be unexported (golint)
    • gotch/device.go
    • Line 9: warning: exported type Device should have comment or be unexported (golint)
    • Line 14: warning: exported type Cuda should have comment or be unexported (golint)
    • Line 17: warning: exported var CPU should have comment or be unexported (golint)
    • Line 21: warning: exported function CudaBuilder should have comment or be unexported (golint)
    • Line 46: warning: comment on exported method Cuda.IsAvailable should be of the form "IsAvailable ..." (golint)
    • Line 73: warning: exported method Device.CInt should have comment or be unexported (golint)
    • Line 87: warning: exported method Device.OfCInt should have comment or be unexported (golint)
    • gotch/example/yolo/darknet.go
    • Line 17: warning: exported type Block should have comment or be unexported (golint)
    • Line 31: warning: exported type Darknet should have comment or be unexported (golint)
    • Line 45: warning: exported type Accumulator should have comment or be unexported (golint)
    • Line 82: warning: exported function ParseConfig should have comment or be unexported (golint)
    • Line 146: warning: exported type Layer should have comment or be unexported (golint)
    • Line 149: warning: exported type Route should have comment or be unexported (golint)
    • Line 152: warning: exported type Shortcut should have comment or be unexported (golint)
    • Line 156: warning: exported type Anchor should have comment or be unexported (golint)
    • Line 158: warning: exported type Yolo should have comment or be unexported (golint)
    • Line 163: warning: exported type ChannelsBl should have comment or be unexported (golint)
    • Line 298: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 444: warning: exported method Darknet.Height should have comment or be unexported (golint)
    • Line 444: warning: receiver name dn should be consistent with previous receiver name d for Darknet (golint)
    • Line 454: warning: exported method Darknet.Width should have comment or be unexported (golint)
    • Line 454: warning: receiver name dn should be consistent with previous receiver name d for Darknet (golint)
    • Line 464: warning: exported method Darknet.BuildModel should have comment or be unexported (golint)
    • Line 464: warning: receiver name dn should be consistent with previous receiver name d for Darknet (golint)
    • gotch/nn/conv.go
    • Line 12: warning: exported type Conv1DConfig should have comment or be unexported (golint)
    • Line 22: warning: exported type Conv2DConfig should have comment or be unexported (golint)
    • Line 32: warning: exported type Conv3DConfig should have comment or be unexported (golint)
    • Line 42: warning: comment on exported function DefaultConv1DConfig should be of the form "DefaultConv1DConfig ..." (golint)
    • Line 55: warning: comment on exported function DefaultConv2DConfig should be of the form "DefaultConv2DConfig ..." (golint)
    • Line 68: warning: exported type Conv1D should have comment or be unexported (golint)
    • Line 74: warning: exported function NewConv1D should have comment or be unexported (golint)
    • Line 93: warning: exported type Conv2D should have comment or be unexported (golint)
    • Line 99: warning: exported function NewConv2D should have comment or be unexported (golint)
    • Line 118: warning: exported type Conv3D should have comment or be unexported (golint)
    • Line 124: warning: exported function NewConv3D should have comment or be unexported (golint)
    • Line 143: warning: exported type Conv should have comment or be unexported (golint)
    • Line 250: warning: exported method Conv1D.Forward should have comment or be unexported (golint)
    • Line 254: warning: exported method Conv2D.Forward should have comment or be unexported (golint)
    • Line 257: warning: exported method Conv3D.Forward should have comment or be unexported (golint)
    • Line 266: warning: exported method Conv1D.ForwardT should have comment or be unexported (golint)
    • Line 270: warning: exported method Conv2D.ForwardT should have comment or be unexported (golint)
    • Line 273: warning: exported method Conv3D.ForwardT should have comment or be unexported (golint)
    • gotch/nn/sparse.go
    • Line 9: warning: comment on exported type EmbeddingConfig should be of the form "EmbeddingConfig ..." (with optional leading article) (golint)
    • Line 17: warning: exported function DefaultEmbeddingConfig should have comment or be unexported (golint)
    • Line 26: warning: comment on exported type Embedding should be of the form "Embedding ..." (with optional leading article) (golint)
    • gotch/vision/aug/flip.go
    • Line 24: warning: exported method RandomHorizontalFlip.Forward should have comment or be unexported (golint)
    • Line 37: warning: exported function WithRandomHFlip should have comment or be unexported (golint)
    • Line 60: warning: exported method RandomVerticalFlip.Forward should have comment or be unexported (golint)
    • Line 73: warning: exported function WithRandomVFlip should have comment or be unexported (golint)
    • gotch/example/mnist/cnn.go
    • Line 15: warning: exported const MnistDirCNN should have comment (or a comment on this block) or be unexported (golint)
    • Line 24: warning: exported type Net should have comment or be unexported (golint)
    • Line 44: warning: exported method Net.ForwardT should have comment or be unexported (golint)
    • gotch/dutil/sampler.go
    • Line 41: warning: exported method SequentialSampler.BatchSize should have comment or be unexported (golint)
    • Line 54: warning: exported type RandOptions should have comment or be unexported (golint)
    • Line 59: warning: exported type RandOption should have comment or be unexported (golint)
    • Line 61: warning: exported function NewRandOptions should have comment or be unexported (golint)
    • Line 74: warning: exported function WithSize should have comment or be unexported (golint)
    • Line 80: warning: exported function WithReplacement should have comment or be unexported (golint)
    • gotch/nn/batch-norm.go
    • Line 11: warning: comment on exported type BatchNormConfig should be of the form "BatchNormConfig ..." (with optional leading article) (golint)
    • Line 20: warning: exported function DefaultBatchNormConfig should have comment or be unexported (golint)
    • Line 30: warning: comment on exported type BatchNorm should be of the form "BatchNorm ..." (with optional leading article) (golint)
    • Line 51: warning: comment on exported function BatchNorm1D should be of the form "BatchNorm1D ..." (golint)
    • Line 59: warning: comment on exported function BatchNorm2D should be of the form "BatchNorm2D ..." (golint)
    • Line 67: warning: comment on exported function BatchNorm3D should be of the form "BatchNorm3D ..." (golint)
    • Line 78: warning: exported method BatchNorm.ForwardT should have comment or be unexported (golint)
    • gotch/tensor/util.go
    • Line 380: warning: comment on exported function InvokeFnWithArgs should be of the form "InvokeFnWithArgs ..." (golint)
    • Line 390: warning: comment on exported type FuncInfo should be of the form "FuncInfo ..." (with optional leading article) (golint)
    • Line 398: warning: exported type Func should have comment or be unexported (golint)
    • Line 404: warning: exported function NewFunc should have comment or be unexported (golint)
    • Line 469: warning: exported method Func.Invoke should have comment or be unexported (golint)
    • gotch/vision/aug/invert.go
    • Line 7: warning: exported type RandomInvert should have comment or be unexported (golint)
    • Line 19: warning: exported method RandomInvert.Forward should have comment or be unexported (golint)
    • Line 33: warning: exported function WithRandomInvert should have comment or be unexported (golint)
    • gotch/libtch/tensor.go
    • Line 16: warning: comment on exported type Ctensor should be of the form "Ctensor ..." (with optional leading article) (golint)
    • Line 18: warning: exported type Cscalar should have comment or be unexported (golint)
    • Line 19: warning: exported type Coptimizer should have comment or be unexported (golint)
    • Line 20: warning: exported type Civalue should have comment or be unexported (golint)
    • Line 21: warning: exported type Cmodule should have comment or be unexported (golint)
    • Line 23: warning: exported type NamedCtensor should have comment or be unexported (golint)
    • Line 28: warning: exported type LoadData should have comment or be unexported (golint)
    • Line 32: warning: exported var PStore should have comment or be unexported (golint)
    • Line 34: warning: exported function AtNewTensor should have comment or be unexported (golint)
    • Line 38: warning: comment on exported function NewTensor should be of the form "NewTensor ..." (golint)
    • Line 43: warning: comment on exported function AtDevice should be of the form "AtDevice ..." (golint)
    • Line 49: warning: comment on exported function AtTensorOfData should be of the form "AtTensorOfData ..." (golint)
    • Line 50: warning: don't use underscores in Go names; func parameter elt_size_in_bytes should be eltSizeInBytes (golint)
    • Line 53: warning: don't use underscores in Go names; var c_dims should be cDims (golint)
    • Line 54: warning: don't use underscores in Go names; var c_ndims should be cNdims (golint)
    • Line 55: warning: don't use underscores in Go names; var c_elt_size_in_bytes should be cEltSizeInBytes (golint)
    • Line 56: warning: don't use underscores in Go names; var c_kind should be cKind (golint)
    • Line 62: warning: comment on exported function AtPrint should be of the form "AtPrint ..." (golint)
    • Line 67: warning: comment on exported function AtDataPtr should be of the form "AtDataPtr ..." (golint)
    • Line 72: warning: comment on exported function AtDim should be of the form "AtDim ..." (golint)
    • Line 78: warning: comment on exported function AtShape should be of the form "AtShape ..." (golint)
    • Line 80: warning: don't use underscores in Go names; var c_ptr should be cPtr (golint)
    • Line 84: warning: comment on exported function AtScalarType should be of the form "AtScalarType ..." (golint)
    • Line 90: warning: exported function GetAndResetLastErr should have comment or be unexported (golint)
    • Line 94: warning: comment on exported function AtcCudaDeviceCount should be of the form "AtcCudaDeviceCount ..." (golint)
    • Line 100: warning: comment on exported function AtcCudaIsAvailable should be of the form "AtcCudaIsAvailable ..." (golint)
    • Line 106: warning: comment on exported function AtcCudnnIsAvailable should be of the form "AtcCudnnIsAvailable ..." (golint)
    • Line 112: warning: comment on exported function AtcSetBenchmarkCudnn should be of the form "AtcSetBenchmarkCudnn ..." (golint)
    • Line 118: warning: comment on exported function AtDoubleValueAtIndexes should be of the form "AtDoubleValueAtIndexes ..." (golint)
    • Line 127: warning: comment on exported function AtInt64ValueAtIndexes should be of the form "AtInt64ValueAtIndexes ..." (golint)
    • Line 136: warning: comment on exported function AtRequiresGrad should be of the form "AtRequiresGrad ..." (golint)
    • Line 142: warning: comment on exported function AtDefined should be of the form "AtDefined ..." (golint)
    • Line 148: warning: comment on exported function AtIsSparse should be of the form "AtIsSparse ..." (golint)
    • Line 154: warning: comment on exported function AtBackward should be of the form "AtBackward ..." (golint)
    • Line 162: warning: comment on exported function AtRunBackward should be of the form "AtRunBackward ..." (golint)
    • Line 179: warning: comment on exported function AtCopyData should be of the form "AtCopyData ..." (golint)
    • Line 180: warning: don't use underscores in Go names; func parameter element_size_in_bytes should be elementSizeInBytes (golint)
    • Line 182: warning: don't use underscores in Go names; var celement_size_in_bytes should be celementSizeInBytes (golint)
    • Line 186: warning: comment on exported function AtShallowClone should be of the form "AtShallowClone ..." (golint)
    • Line 191: warning: comment on exported function AtGet should be of the form "AtGet ..." (golint)
    • Line 197: warning: comment on exported function AtCopy_ should be of the form "AtCopy_ ..." (golint)
    • Line 198: warning: don't use underscores in Go names; func AtCopy_ should be AtCopy (golint)
    • Line 202: warning: comment on exported function AtSave should be of the form "AtSave ..." (golint)
    • Line 209: warning: comment on exported function AtLoad should be of the form "AtLoad ..." (golint)
    • Line 216: warning: comment on exported function AtSaveMulti should be of the form "AtSaveMulti ..." (golint)
    • Line 217: warning: don't use underscores in Go names; func parameter tensor_names should be tensorNames (golint)
    • Line 238: warning: comment on exported function AtSaveMultiNew should be of the form "AtSaveMultiNew ..." (golint)
    • Line 268: warning: comment on exported function AtLoadMulti should be of the form "AtLoadMulti ..." (golint)
    • Line 270: warning: don't use underscores in Go names; func parameter tensor_names should be tensorNames (golint)
    • Line 274: warning: comment on exported function AtLoadCallback should be of the form "AtLoadCallback ..." (golint)
    • Line 307: warning: comment on exported function AtLoadCallbackWithDevice should be of the form "AtLoadCallbackWithDevice ..." (golint)
    • Line 325: warning: comment on exported function AtToString should be of the form "AtToString ..." (golint)
    • Line 343: warning: comment on exported function AtFree should be of the form "AtFree ..." (golint)
    • Line 348: warning: comment on exported function AtGradSetEnabled should be of the form "AtGradSetEnabled ..." (golint)
    • Line 355: warning: comment on exported function AtoAdam should be of the form "AtoAdam ..." (golint)
    • Line 370: warning: comment on exported function AtoRmsProp should be of the form "AtoRmsProp ..." (golint)
    • Line 389: warning: comment on exported function AtoSgd should be of the form "AtoSgd ..." (golint)
    • Line 406: warning: comment on exported function AtoAddParametersOld should be of the form "AtoAddParametersOld ..." (golint)
    • Line 421: warning: comment on exported function AtoAddParameters should be of the form "AtoAddParameters ..." (golint)
    • Line 437: warning: comment on exported function AtoSetLearningRate should be of the form "AtoSetLearningRate ..." (golint)
    • Line 443: warning: comment on exported function AtoSetMomentum should be of the form "AtoSetMomentum ..." (golint)
    • Line 450: warning: comment on exported function AtoZeroGrad should be of the form "AtoZeroGrad ..." (golint)
    • Line 456: warning: comment on exported function AtoStep should be of the form "AtoStep ..." (golint)
    • Line 462: warning: comment on exported function AtoFree should be of the form "AtoFree ..." (golint)
    • Line 467: warning: comment on exported function AtLoadImage should be of the form "AtLoadImage ..." (golint)
    • Line 474: warning: comment on exported function AtSaveImage should be of the form "AtSaveImage ..." (golint)
    • Line 484: warning: comment on exported function AtResizeImage should be of the form "AtResizeImage ..." (golint)
    • Line 493: warning: comment on exported function AtiNone should be of the form "AtiNone ..." (golint)
    • Line 498: warning: comment on exported function AtiTensor should be of the form "AtiTensor ..." (golint)
    • Line 503: warning: comment on exported function AtiInt should be of the form "AtiInt ..." (golint)
    • Line 510: warning: comment on exported function AtiDouble should be of the form "AtiDouble ..." (golint)
    • Line 516: warning: comment on exported function AtiBool should be of the form "AtiBool ..." (golint)
    • Line 526: warning: comment on exported function AtiString should be of the form "AtiString ..." (golint)
    • Line 532: warning: comment on exported function AtiTuple should be of the form "AtiTuple ..." (golint)
    • Line 540: warning: comment on exported function AtiGenericList should be of the form "AtiGenericList ..." (golint)
    • Line 548: warning: comment on exported function AtiGenericDict should be of the form "AtiGenericDict ..." (golint)
    • Line 556: warning: comment on exported function AtiIntList should be of the form "AtiIntList ..." (golint)
    • Line 564: warning: comment on exported function AtiDoubleList should be of the form "AtiDoubleList ..." (golint)
    • Line 572: warning: comment on exported function AtiBoolList should be of the form "AtiBoolList ..." (golint)
    • Line 588: warning: comment on exported function AtiTensorList should be of the form "AtiTensorList ..." (golint)
    • Line 596: warning: comment on exported function AtiToTensor should be of the form "AtiToTensor ..." (golint)
    • Line 601: warning: comment on exported function AtiToInt should be of the form "AtiToInt ..." (golint)
    • Line 607: warning: comment on exported function AtiToDouble should be of the form "AtiToDouble ..." (golint)
    • Line 613: warning: comment on exported function AtiToString should be of the form "AtiToString ..." (golint)
    • Line 619: warning: comment on exported function AtiToBool should be of the form "AtiToBool ..." (golint)
    • Line 626: warning: comment on exported function AtiLength should be of the form "AtiLength ..." (golint)
    • Line 632: warning: comment on exported function AtiTupleLength should be of the form "AtiTupleLength ..." (golint)
    • Line 638: warning: comment on exported function AtiToTuple should be of the form "AtiToTuple ..." (golint)
    • Line 645: warning: comment on exported function AtiToGenericList should be of the form "AtiToGenericList ..." (golint)
    • Line 652: warning: comment on exported function AtiToGenericDict should be of the form "AtiToGenericDict ..." (golint)
    • Line 659: warning: comment on exported function AtiToIntList should be of the form "AtiToIntList ..." (golint)
    • Line 667: warning: comment on exported function AtiToDoubleList should be of the form "AtiToDoubleList ..." (golint)
    • Line 675: warning: comment on exported function AtiToBoolList should be of the form "AtiToBoolList ..." (golint)
    • Line 684: warning: comment on exported function AtiToTensorList should be of the form "AtiToTensorList ..." (golint)
    • Line 691: warning: comment on exported function AtiTag should be of the form "AtiTag ..." (golint)
    • Line 698: warning: comment on exported function AtiFree should be of the form "AtiFree ..." (golint)
    • Line 703: warning: comment on exported function AtmLoad should be of the form "AtmLoad ..." (golint)
    • Line 709: warning: comment on exported function AtmLoadOnDevice should be of the form "AtmLoadOnDevice ..." (golint)
    • Line 716: warning: comment on exported function AtmLoadStr should be of the form "AtmLoadStr ..." (golint)
    • Line 724: warning: comment on exported function AtmLoadStrOnDevice should be of the form "AtmLoadStrOnDevice ..." (golint)
    • Line 733: warning: comment on exported function AtmSave should be of the form "AtmSave ..." (golint)
    • Line 739: warning: comment on exported function AtmNamedParameters should be of the form "AtmNamedParameters ..." (golint)
    • Line 744: warning: comment on exported function AtmForward should be of the form "AtmForward ..." (golint)
    • Line 750: warning: comment on exported function AtmForward_ should be of the form "AtmForward_ ..." (golint)
    • Line 751: warning: don't use underscores in Go names; func AtmForward_ should be AtmForward (golint)
    • Line 756: warning: comment on exported function AtmFree should be of the form "AtmFree ..." (golint)
    • Line 761: warning: comment on exported function AtmTo should be of the form "AtmTo ..." (golint)
    • Line 770: warning: comment on exported function AtmGetProfilingMode should be of the form "AtmGetProfilingMode ..." (golint)
    • Line 776: warning: comment on exported function AtmSetProfilingMode should be of the form "AtmSetProfilingMode ..." (golint)
    • Line 782: warning: comment on exported function AtmEval should be of the form "AtmEval ..." (golint)
    • Line 787: warning: comment on exported function AtmTrain should be of the form "AtmTrain ..." (golint)
    • gotch/example/debug-memory/cpu.go
    • Line 11: warning: comment on exported type SI should be of the form "SI ..." (with optional leading article) (golint)
    • Line 29: warning: comment on exported function CPUInfo should be of the form "CPUInfo ..." (golint)
    • gotch/nn/jit.go
    • Line 48: warning: exported function TrainableCModuleLoadData should have comment or be unexported (golint)
    • gotch/vision/aug/contrast.go
    • Line 25: warning: exported method RandomAutocontrast.Forward should have comment or be unexported (golint)
    • Line 38: warning: exported function WithRandomAutocontrast should have comment or be unexported (golint)
    • gotch/tensor/data.go
    • Line 126: warning: exported type Iter2Item should have comment or be unexported (golint)
    • Line 142: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 155: warning: exported method Iter2.Drop should have comment or be unexported (golint)
    • Line 234: warning: comment on exported method TextData.CloneData should be of the form "CloneData ..." (golint)
    • gotch/tensor/must-tensor-generated.go
    • Line 12: warning: exported method Tensor.Must__And_ should have comment or be unexported (golint)
    • Line 12: warning: don't use underscores in Go names; method Must__And_ should be MustAnd (golint)
    • Line 20: warning: exported method Tensor.Must__And1 should have comment or be unexported (golint)
    • Line 20: warning: don't use underscores in Go names; method Must__And1 should be MustAnd1 (golint)
    • Line 28: warning: exported method Tensor.Must__Iand_ should have comment or be unexported (golint)
    • Line 28: warning: don't use underscores in Go names; method Must__Iand_ should be MustIand (golint)
    • Line 36: warning: exported method Tensor.Must__Iand1 should have comment or be unexported (golint)
    • Line 36: warning: don't use underscores in Go names; method Must__Iand1 should be MustIand1 (golint)
    • Line 44: warning: exported method Tensor.Must__Ilshift_ should have comment or be unexported (golint)
    • Line 44: warning: don't use underscores in Go names; method Must__Ilshift_ should be MustIlshift (golint)
    • Line 52: warning: exported method Tensor.Must__Ilshift1 should have comment or be unexported (golint)
    • Line 52: warning: don't use underscores in Go names; method Must__Ilshift1 should be MustIlshift1 (golint)
    • Line 60: warning: exported method Tensor.Must__Ior_ should have comment or be unexported (golint)
    • Line 60: warning: don't use underscores in Go names; method Must__Ior_ should be MustIor (golint)
    • Line 68: warning: exported method Tensor.Must__Ior1 should have comment or be unexported (golint)
    • Line 68: warning: don't use underscores in Go names; method Must__Ior1 should be MustIor1 (golint)
    • Line 76: warning: exported method Tensor.Must__Irshift_ should have comment or be unexported (golint)
    • Line 76: warning: don't use underscores in Go names; method Must__Irshift_ should be MustIrshift (golint)
    • Line 84: warning: exported method Tensor.Must__Irshift1 should have comment or be unexported (golint)
    • Line 84: warning: don't use underscores in Go names; method Must__Irshift1 should be MustIrshift1 (golint)
    • Line 92: warning: exported method Tensor.Must__Ixor_ should have comment or be unexported (golint)
    • Line 92: warning: don't use underscores in Go names; method Must__Ixor_ should be MustIxor (golint)
    • Line 100: warning: exported method Tensor.Must__Ixor1 should have comment or be unexported (golint)
    • Line 100: warning: don't use underscores in Go names; method Must__Ixor1 should be MustIxor1 (golint)
    • Line 108: warning: exported method Tensor.Must__Lshift_ should have comment or be unexported (golint)
    • Line 108: warning: don't use underscores in Go names; method Must__Lshift_ should be MustLshift (golint)
    • Line 116: warning: exported method Tensor.Must__Lshift1 should have comment or be unexported (golint)
    • Line 116: warning: don't use underscores in Go names; method Must__Lshift1 should be MustLshift1 (golint)
    • Line 124: warning: exported method Tensor.Must__Or_ should have comment or be unexported (golint)
    • Line 124: warning: don't use underscores in Go names; method Must__Or_ should be MustOr (golint)
    • Line 132: warning: exported method Tensor.Must__Or1 should have comment or be unexported (golint)
    • Line 132: warning: don't use underscores in Go names; method Must__Or1 should be MustOr1 (golint)
    • Line 140: warning: exported method Tensor.Must__Rshift_ should have comment or be unexported (golint)
    • Line 140: warning: don't use underscores in Go names; method Must__Rshift_ should be MustRshift (golint)
    • Line 148: warning: exported method Tensor.Must__Rshift1 should have comment or be unexported (golint)
    • Line 148: warning: don't use underscores in Go names; method Must__Rshift1 should be MustRshift1 (golint)
    • Line 156: warning: exported method Tensor.Must__Xor_ should have comment or be unexported (golint)
    • Line 156: warning: don't use underscores in Go names; method Must__Xor_ should be MustXor (golint)
    • Line 164: warning: exported method Tensor.Must__Xor1 should have comment or be unexported (golint)
    • Line 164: warning: don't use underscores in Go names; method Must__Xor1 should be MustXor1 (golint)
    • Line 172: warning: exported method Tensor.Must_AdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 172: warning: don't use underscores in Go names; method Must_AdaptiveAvgPool2d should be MustAdaptiveAvgPool2d (golint)
    • Line 180: warning: exported method Tensor.Must_AdaptiveAvgPool2dBackward should have comment or be unexported (golint)
    • Line 180: warning: don't use underscores in Go names; method Must_AdaptiveAvgPool2dBackward should be MustAdaptiveAvgPool2dBackward (golint)
    • Line 188: warning: exported method Tensor.Must_AddBatchDim should have comment or be unexported (golint)
    • Line 188: warning: don't use underscores in Go names; method Must_AddBatchDim should be MustAddBatchDim (golint)
    • Line 196: warning: exported method Tensor.Must_AddRelu should have comment or be unexported (golint)
    • Line 196: warning: don't use underscores in Go names; method Must_AddRelu should be MustAddRelu (golint)
    • Line 204: warning: exported method Tensor.Must_AddRelu_ should have comment or be unexported (golint)
    • Line 204: warning: don't use underscores in Go names; method Must_AddRelu_ should be MustAddRelu (golint)
    • Line 212: warning: exported method Tensor.Must_AddReluOut should have comment or be unexported (golint)
    • Line 212: warning: don't use underscores in Go names; method Must_AddReluOut should be MustAddReluOut (golint)
    • Line 220: warning: exported method Tensor.Must_AddmvImpl_ should have comment or be unexported (golint)
    • Line 220: warning: don't use underscores in Go names; method Must_AddmvImpl_ should be MustAddmvImpl (golint)
    • Line 228: warning: exported function Must_AmpUpdateScale should have comment or be unexported (golint)
    • Line 228: warning: don't use underscores in Go names; func Must_AmpUpdateScale should be MustAmpUpdateScale (golint)
    • Line 236: warning: exported method Tensor.Must_BaddbmmMkl_ should have comment or be unexported (golint)
    • Line 236: warning: don't use underscores in Go names; method Must_BaddbmmMkl_ should be MustBaddbmmMkl (golint)
    • Line 244: warning: exported method Tensor.Must_Bmm should have comment or be unexported (golint)
    • Line 244: warning: don't use underscores in Go names; method Must_Bmm should be MustBmm (golint)
    • Line 252: warning: exported method Tensor.Must_BmmOut should have comment or be unexported (golint)
    • Line 252: warning: don't use underscores in Go names; method Must_BmmOut should be MustBmmOut (golint)
    • Line 260: warning: exported method Tensor.Must_CastByte should have comment or be unexported (golint)
    • Line 260: warning: don't use underscores in Go names; method Must_CastByte should be MustCastByte (golint)
    • Line 268: warning: exported method Tensor.Must_CastChar should have comment or be unexported (golint)
    • Line 268: warning: don't use underscores in Go names; method Must_CastChar should be MustCastChar (golint)
    • Line 276: warning: exported method Tensor.Must_CastDouble should have comment or be unexported (golint)
    • Line 276: warning: don't use underscores in Go names; method Must_CastDouble should be MustCastDouble (golint)
    • Line 284: warning: exported method Tensor.Must_CastFloat should have comment or be unexported (golint)
    • Line 284: warning: don't use underscores in Go names; method Must_CastFloat should be MustCastFloat (golint)
    • Line 292: warning: exported method Tensor.Must_CastHalf should have comment or be unexported (golint)
    • Line 292: warning: don't use underscores in Go names; method Must_CastHalf should be MustCastHalf (golint)
    • Line 300: warning: exported method Tensor.Must_CastInt should have comment or be unexported (golint)
    • Line 300: warning: don't use underscores in Go names; method Must_CastInt should be MustCastInt (golint)
    • Line 308: warning: exported method Tensor.Must_CastLong should have comment or be unexported (golint)
    • Line 308: warning: don't use underscores in Go names; method Must_CastLong should be MustCastLong (golint)
    • Line 316: warning: exported method Tensor.Must_CastShort should have comment or be unexported (golint)
    • Line 316: warning: don't use underscores in Go names; method Must_CastShort should be MustCastShort (golint)
    • Line 324: warning: exported function Must_Cat should have comment or be unexported (golint)
    • Line 324: warning: don't use underscores in Go names; func Must_Cat should be MustCat (golint)
    • Line 332: warning: exported function Must_CatOut should have comment or be unexported (golint)
    • Line 332: warning: don't use underscores in Go names; func Must_CatOut should be MustCatOut (golint)
    • Line 340: warning: exported function Must_CdistBackward should have comment or be unexported (golint)
    • Line 340: warning: don't use underscores in Go names; func Must_CdistBackward should be MustCdistBackward (golint)
    • Line 348: warning: exported method Tensor.Must_CholeskyHelper should have comment or be unexported (golint)
    • Line 348: warning: don't use underscores in Go names; method Must_CholeskyHelper should be MustCholeskyHelper (golint)
    • Line 356: warning: exported method Tensor.Must_CholeskySolveHelper should have comment or be unexported (golint)
    • Line 356: warning: don't use underscores in Go names; method Must_CholeskySolveHelper should be MustCholeskySolveHelper (golint)
    • Line 364: warning: exported method Tensor.Must_Coalesced_ should have comment or be unexported (golint)
    • Line 364: warning: don't use underscores in Go names; method Must_Coalesced_ should be MustCoalesced (golint)
    • Line 372: warning: exported function Must_ComputeLinearCombination should have comment or be unexported (golint)
    • Line 372: warning: don't use underscores in Go names; func Must_ComputeLinearCombination should be MustComputeLinearCombination (golint)
    • Line 380: warning: exported function Must_ComputeLinearCombinationOut should have comment or be unexported (golint)
    • Line 380: warning: don't use underscores in Go names; func Must_ComputeLinearCombinationOut should be MustComputeLinearCombinationOut (golint)
    • Line 388: warning: exported method Tensor.Must_Conj should have comment or be unexported (golint)
    • Line 388: warning: don't use underscores in Go names; method Must_Conj should be MustConj (golint)
    • Line 396: warning: exported function Must_Convolution should have comment or be unexported (golint)
    • Line 396: warning: don't use underscores in Go names; func Must_Convolution should be MustConvolution (golint)
    • Line 404: warning: exported function Must_Convolution1 should have comment or be unexported (golint)
    • Line 404: warning: don't use underscores in Go names; func Must_Convolution1 should be MustConvolution1 (golint)
    • Line 412: warning: exported function Must_ConvolutionNogroup should have comment or be unexported (golint)
    • Line 412: warning: don't use underscores in Go names; func Must_ConvolutionNogroup should be MustConvolutionNogroup (golint)
    • Line 420: warning: exported method Tensor.Must_CopyFrom should have comment or be unexported (golint)
    • Line 420: warning: don't use underscores in Go names; method Must_CopyFrom should be MustCopyFrom (golint)
    • Line 428: warning: exported function Must_CtcLossBackward should have comment or be unexported (golint)
    • Line 428: warning: don't use underscores in Go names; func Must_CtcLossBackward should be MustCtcLossBackward (golint)
    • Line 436: warning: exported function Must_CudnnInitDropoutState should have comment or be unexported (golint)
    • Line 436: warning: don't use underscores in Go names; func Must_CudnnInitDropoutState should be MustCudnnInitDropoutState (golint)
    • Line 444: warning: exported function Must_CudnnRnnFlattenWeight should have comment or be unexported (golint)
    • Line 444: warning: don't use underscores in Go names; func Must_CudnnRnnFlattenWeight should be MustCudnnRnnFlattenWeight (golint)
    • Line 452: warning: exported method Tensor.Must_Cumprod should have comment or be unexported (golint)
    • Line 452: warning: don't use underscores in Go names; method Must_Cumprod should be MustCumprod (golint)
    • Line 460: warning: exported method Tensor.Must_CumprodOut should have comment or be unexported (golint)
    • Line 460: warning: don't use underscores in Go names; method Must_CumprodOut should be MustCumprodOut (golint)
    • Line 468: warning: exported method Tensor.Must_Cumsum should have comment or be unexported (golint)
    • Line 468: warning: don't use underscores in Go names; method Must_Cumsum should be MustCumsum (golint)
    • Line 476: warning: exported method Tensor.Must_CumsumOut should have comment or be unexported (golint)
    • Line 476: warning: don't use underscores in Go names; method Must_CumsumOut should be MustCumsumOut (golint)
    • Line 484: warning: exported function Must_DimArange should have comment or be unexported (golint)
    • Line 484: warning: don't use underscores in Go names; func Must_DimArange should be MustDimArange (golint)
    • Line 492: warning: exported function Must_DirichletGrad should have comment or be unexported (golint)
    • Line 492: warning: don't use underscores in Go names; func Must_DirichletGrad should be MustDirichletGrad (golint)
    • Line 500: warning: exported function Must_EmbeddingBagBackward should have comment or be unexported (golint)
    • Line 500: warning: don't use underscores in Go names; func Must_EmbeddingBagBackward should be MustEmbeddingBagBackward (golint)
    • Line 508: warning: exported function Must_EmbeddingBagDenseBackward should have comment or be unexported (golint)
    • Line 508: warning: don't use underscores in Go names; func Must_EmbeddingBagDenseBackward should be MustEmbeddingBagDenseBackward (golint)
    • Line 516: warning: exported function Must_EmbeddingBagPerSampleWeightsBackward should have comment or be unexported (golint)
    • Line 516: warning: don't use underscores in Go names; func Must_EmbeddingBagPerSampleWeightsBackward should be MustEmbeddingBagPerSampleWeightsBackward (golint)
    • Line 524: warning: exported function Must_EmbeddingBagSparseBackward should have comment or be unexported (golint)
    • Line 524: warning: don't use underscores in Go names; func Must_EmbeddingBagSparseBackward should be MustEmbeddingBagSparseBackward (golint)
    • Line 532: warning: exported function Must_EmptyAffineQuantized should have comment or be unexported (golint)
    • Line 532: warning: don't use underscores in Go names; func Must_EmptyAffineQuantized should be MustEmptyAffineQuantized (golint)
    • Line 540: warning: exported function Must_EmptyPerChannelAffineQuantized should have comment or be unexported (golint)
    • Line 540: warning: don't use underscores in Go names; func Must_EmptyPerChannelAffineQuantized should be MustEmptyPerChannelAffineQuantized (golint)
    • Line 548: warning: exported function Must_EuclideanDist should have comment or be unexported (golint)
    • Line 548: warning: don't use underscores in Go names; func Must_EuclideanDist should be MustEuclideanDist (golint)
    • Line 556: warning: exported method Tensor.Must_FakeQuantizeLearnablePerChannelAffine should have comment or be unexported (golint)
    • Line 556: warning: don't use underscores in Go names; method Must_FakeQuantizeLearnablePerChannelAffine should be MustFakeQuantizeLearnablePerChannelAffine (golint)
    • Line 564: warning: exported method Tensor.Must_FakeQuantizeLearnablePerTensorAffine should have comment or be unexported (golint)
    • Line 564: warning: don't use underscores in Go names; method Must_FakeQuantizeLearnablePerTensorAffine should be MustFakeQuantizeLearnablePerTensorAffine (golint)
    • Line 572: warning: exported method Tensor.Must_FftWithSize should have comment or be unexported (golint)
    • Line 572: warning: don't use underscores in Go names; method Must_FftWithSize should be MustFftWithSize (golint)
    • Line 580: warning: exported method Tensor.Must_FftWithSize1 should have comment or be unexported (golint)
    • Line 580: warning: don't use underscores in Go names; method Must_FftWithSize1 should be MustFftWithSize1 (golint)
    • Line 588: warning: exported method Tensor.Must_GatherSparseBackward should have comment or be unexported (golint)
    • Line 588: warning: don't use underscores in Go names; method Must_GatherSparseBackward should be MustGatherSparseBackward (golint)
    • Line 596: warning: exported function Must_GridSampler2dCpuFallback should have comment or be unexported (golint)
    • Line 596: warning: don't use underscores in Go names; func Must_GridSampler2dCpuFallback should be MustGridSampler2dCPUFallback (golint)
    • Line 604: warning: exported method Tensor.Must_IndexCopy_ should have comment or be unexported (golint)
    • Line 604: warning: don't use underscores in Go names; method Must_IndexCopy_ should be MustIndexCopy (golint)
    • Line 612: warning: exported method Tensor.Must_IndexPutImpl_ should have comment or be unexported (golint)
    • Line 612: warning: don't use underscores in Go names; method Must_IndexPutImpl_ should be MustIndexPutImpl (golint)
    • Line 620: warning: exported method Tensor.Must_Indices should have comment or be unexported (golint)
    • Line 620: warning: don't use underscores in Go names; method Must_Indices should be MustIndices (golint)
    • Line 628: warning: exported method Tensor.Must_InverseHelper should have comment or be unexported (golint)
    • Line 628: warning: don't use underscores in Go names; method Must_InverseHelper should be MustInverseHelper (golint)
    • Line 636: warning: exported method Tensor.Must_LogSoftmax should have comment or be unexported (golint)
    • Line 636: warning: don't use underscores in Go names; method Must_LogSoftmax should be MustLogSoftmax (golint)
    • Line 644: warning: exported method Tensor.Must_LogSoftmaxBackwardData should have comment or be unexported (golint)
    • Line 644: warning: don't use underscores in Go names; method Must_LogSoftmaxBackwardData should be MustLogSoftmaxBackwardData (golint)
    • Line 652: warning: exported method Tensor.Must_Logcumsumexp should have comment or be unexported (golint)
    • Line 652: warning: don't use underscores in Go names; method Must_Logcumsumexp should be MustLogcumsumexp (golint)
    • Line 660: warning: exported method Tensor.Must_LogcumsumexpOut should have comment or be unexported (golint)
    • Line 660: warning: don't use underscores in Go names; method Must_LogcumsumexpOut should be MustLogcumsumexpOut (golint)
    • Line 668: warning: exported method Tensor.Must_LuSolveHelper should have comment or be unexported (golint)
    • Line 668: warning: don't use underscores in Go names; method Must_LuSolveHelper should be MustLuSolveHelper (golint)
    • Line 676: warning: exported method Tensor.Must_MakePerChannelQuantizedTensor should have comment or be unexported (golint)
    • Line 676: warning: don't use underscores in Go names; method Must_MakePerChannelQuantizedTensor should be MustMakePerChannelQuantizedTensor (golint)
    • Line 684: warning: exported method Tensor.Must_MakePerTensorQuantizedTensor should have comment or be unexported (golint)
    • Line 684: warning: don't use underscores in Go names; method Must_MakePerTensorQuantizedTensor should be MustMakePerTensorQuantizedTensor (golint)
    • Line 692: warning: exported method Tensor.Must_MaskedScale should have comment or be unexported (golint)
    • Line 692: warning: don't use underscores in Go names; method Must_MaskedScale should be MustMaskedScale (golint)
    • Line 700: warning: exported method Tensor.Must_MkldnnReshape should have comment or be unexported (golint)
    • Line 700: warning: don't use underscores in Go names; method Must_MkldnnReshape should be MustMkldnnReshape (golint)
    • Line 708: warning: exported method Tensor.Must_MkldnnTranspose should have comment or be unexported (golint)
    • Line 708: warning: don't use underscores in Go names; method Must_MkldnnTranspose should be MustMkldnnTranspose (golint)
    • Line 716: warning: exported method Tensor.Must_MkldnnTranspose_ should have comment or be unexported (golint)
    • Line 716: warning: don't use underscores in Go names; method Must_MkldnnTranspose_ should be MustMkldnnTranspose (golint)
    • Line 724: warning: exported function Must_MultinomialAliasDraw should have comment or be unexported (golint)
    • Line 724: warning: don't use underscores in Go names; func Must_MultinomialAliasDraw should be MustMultinomialAliasDraw (golint)
    • Line 732: warning: exported function Must_NnpackSpatialConvolution should have comment or be unexported (golint)
    • Line 732: warning: don't use underscores in Go names; func Must_NnpackSpatialConvolution should be MustNnpackSpatialConvolution (golint)
    • Line 740: warning: exported function Must_NnpackSpatialConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 740: warning: don't use underscores in Go names; func Must_NnpackSpatialConvolutionBackwardInput should be MustNnpackSpatialConvolutionBackwardInput (golint)
    • Line 748: warning: exported function Must_NnpackSpatialConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 748: warning: don't use underscores in Go names; func Must_NnpackSpatialConvolutionBackwardWeight should be MustNnpackSpatialConvolutionBackwardWeight (golint)
    • Line 756: warning: exported function Must_PackPaddedSequenceBackward should have comment or be unexported (golint)
    • Line 756: warning: don't use underscores in Go names; func Must_PackPaddedSequenceBackward should be MustPackPaddedSequenceBackward (golint)
    • Line 764: warning: exported method Tensor.Must_PdistBackward should have comment or be unexported (golint)
    • Line 764: warning: don't use underscores in Go names; method Must_PdistBackward should be MustPdistBackward (golint)
    • Line 772: warning: exported method Tensor.Must_RemoveBatchDim should have comment or be unexported (golint)
    • Line 772: warning: don't use underscores in Go names; method Must_RemoveBatchDim should be MustRemoveBatchDim (golint)
    • Line 780: warning: exported method Tensor.Must_ReshapeFromTensor should have comment or be unexported (golint)
    • Line 780: warning: don't use underscores in Go names; method Must_ReshapeFromTensor should be MustReshapeFromTensor (golint)
    • Line 788: warning: exported method Tensor.Must_SWhere should have comment or be unexported (golint)
    • Line 788: warning: don't use underscores in Go names; method Must_SWhere should be MustSWhere (golint)
    • Line 796: warning: exported method Tensor.Must_SampleDirichlet should have comment or be unexported (golint)
    • Line 796: warning: don't use underscores in Go names; method Must_SampleDirichlet should be MustSampleDirichlet (golint)
    • Line 804: warning: exported function Must_SaturateWeightToFp16 should have comment or be unexported (golint)
    • Line 804: warning: don't use underscores in Go names; func Must_SaturateWeightToFp16 should be MustSaturateWeightToFp16 (golint)
    • Line 812: warning: exported method Tensor.Must_ShapeAsTensor should have comment or be unexported (golint)
    • Line 812: warning: don't use underscores in Go names; method Must_ShapeAsTensor should be MustShapeAsTensor (golint)
    • Line 820: warning: exported method Tensor.Must_SobolEngineFf_ should have comment or be unexported (golint)
    • Line 820: warning: don't use underscores in Go names; method Must_SobolEngineFf_ should be MustSobolEngineFf (golint)
    • Line 828: warning: exported method Tensor.Must_SobolEngineInitializeState_ should have comment or be unexported (golint)
    • Line 828: warning: don't use underscores in Go names; method Must_SobolEngineInitializeState_ should be MustSobolEngineInitializeState (golint)
    • Line 836: warning: exported method Tensor.Must_SobolEngineScramble_ should have comment or be unexported (golint)
    • Line 836: warning: don't use underscores in Go names; method Must_SobolEngineScramble_ should be MustSobolEngineScramble (golint)
    • Line 844: warning: exported method Tensor.Must_Softmax should have comment or be unexported (golint)
    • Line 844: warning: don't use underscores in Go names; method Must_Softmax should be MustSoftmax (golint)
    • Line 852: warning: exported method Tensor.Must_SoftmaxBackwardData should have comment or be unexported (golint)
    • Line 852: warning: don't use underscores in Go names; method Must_SoftmaxBackwardData should be MustSoftmaxBackwardData (golint)
    • Line 860: warning: exported method Tensor.Must_SparseAddmm should have comment or be unexported (golint)
    • Line 860: warning: don't use underscores in Go names; method Must_SparseAddmm should be MustSparseAddmm (golint)
    • Line 868: warning: exported function Must_SparseCooTensorUnsafe should have comment or be unexported (golint)
    • Line 868: warning: don't use underscores in Go names; func Must_SparseCooTensorUnsafe should be MustSparseCooTensorUnsafe (golint)
    • Line 876: warning: exported function Must_SparseCooTensorWithDims should have comment or be unexported (golint)
    • Line 876: warning: don't use underscores in Go names; func Must_SparseCooTensorWithDims should be MustSparseCooTensorWithDims (golint)
    • Line 884: warning: exported function Must_SparseCooTensorWithDimsAndTensors should have comment or be unexported (golint)
    • Line 884: warning: don't use underscores in Go names; func Must_SparseCooTensorWithDimsAndTensors should be MustSparseCooTensorWithDimsAndTensors (golint)
    • Line 892: warning: exported method Tensor.Must_SparseLogSoftmax should have comment or be unexported (golint)
    • Line 892: warning: don't use underscores in Go names; method Must_SparseLogSoftmax should be MustSparseLogSoftmax (golint)
    • Line 900: warning: exported method Tensor.Must_SparseLogSoftmax1 should have comment or be unexported (golint)
    • Line 900: warning: don't use underscores in Go names; method Must_SparseLogSoftmax1 should be MustSparseLogSoftmax1 (golint)
    • Line 908: warning: exported method Tensor.Must_SparseLogSoftmaxBackwardData should have comment or be unexported (golint)
    • Line 908: warning: don't use underscores in Go names; method Must_SparseLogSoftmaxBackwardData should be MustSparseLogSoftmaxBackwardData (golint)
    • Line 916: warning: exported function Must_SparseMm should have comment or be unexported (golint)
    • Line 916: warning: don't use underscores in Go names; func Must_SparseMm should be MustSparseMm (golint)
    • Line 924: warning: exported method Tensor.Must_SparseSoftmax should have comment or be unexported (golint)
    • Line 924: warning: don't use underscores in Go names; method Must_SparseSoftmax should be MustSparseSoftmax (golint)
    • Line 932: warning: exported method Tensor.Must_SparseSoftmax1 should have comment or be unexported (golint)
    • Line 932: warning: don't use underscores in Go names; method Must_SparseSoftmax1 should be MustSparseSoftmax1 (golint)
    • Line 940: warning: exported method Tensor.Must_SparseSoftmaxBackwardData should have comment or be unexported (golint)
    • Line 940: warning: don't use underscores in Go names; method Must_SparseSoftmaxBackwardData should be MustSparseSoftmaxBackwardData (golint)
    • Line 948: warning: exported method Tensor.Must_SparseSum should have comment or be unexported (golint)
    • Line 948: warning: don't use underscores in Go names; method Must_SparseSum should be MustSparseSum (golint)
    • Line 956: warning: exported method Tensor.Must_SparseSum1 should have comment or be unexported (golint)
    • Line 956: warning: don't use underscores in Go names; method Must_SparseSum1 should be MustSparseSum1 (golint)
    • Line 964: warning: exported method Tensor.Must_SparseSum2 should have comment or be unexported (golint)
    • Line 964: warning: don't use underscores in Go names; method Must_SparseSum2 should be MustSparseSum2 (golint)
    • Line 972: warning: exported method Tensor.Must_SparseSum3 should have comment or be unexported (golint)
    • Line 972: warning: don't use underscores in Go names; method Must_SparseSum3 should be MustSparseSum3 (golint)
    • Line 980: warning: exported method Tensor.Must_SparseSumBackward should have comment or be unexported (golint)
    • Line 980: warning: don't use underscores in Go names; method Must_SparseSumBackward should be MustSparseSumBackward (golint)
    • Line 988: warning: exported method Tensor.Must_StandardGamma should have comment or be unexported (golint)
    • Line 988: warning: don't use underscores in Go names; method Must_StandardGamma should be MustStandardGamma (golint)
    • Line 996: warning: exported method Tensor.Must_StandardGammaGrad should have comment or be unexported (golint)
    • Line 996: warning: don't use underscores in Go names; method Must_StandardGammaGrad should be MustStandardGammaGrad (golint)
    • Line 1004: warning: exported method Tensor.Must_Std should have comment or be unexported (golint)
    • Line 1004: warning: don't use underscores in Go names; method Must_Std should be MustStd (golint)
    • Line 1012: warning: exported function Must_TestOptionalFilledIntlist should have comment or be unexported (golint)
    • Line 1012: warning: don't use underscores in Go names; func Must_TestOptionalFilledIntlist should be MustTestOptionalFilledIntlist (golint)
    • Line 1020: warning: exported function Must_TestOptionalIntlist should have comment or be unexported (golint)
    • Line 1020: warning: don't use underscores in Go names; func Must_TestOptionalIntlist should be MustTestOptionalIntlist (golint)
    • Line 1028: warning: exported method Tensor.Must_TestSerializationSubcmul should have comment or be unexported (golint)
    • Line 1028: warning: don't use underscores in Go names; method Must_TestSerializationSubcmul should be MustTestSerializationSubcmul (golint)
    • Line 1036: warning: exported function Must_Trilinear should have comment or be unexported (golint)
    • Line 1036: warning: don't use underscores in Go names; func Must_Trilinear should be MustTrilinear (golint)
    • Line 1044: warning: exported method Tensor.Must_UnsafeView should have comment or be unexported (golint)
    • Line 1044: warning: don't use underscores in Go names; method Must_UnsafeView should be MustUnsafeView (golint)
    • Line 1052: warning: exported method Tensor.Must_Values should have comment or be unexported (golint)
    • Line 1052: warning: don't use underscores in Go names; method Must_Values should be MustValues (golint)
    • Line 1060: warning: exported method Tensor.Must_Var should have comment or be unexported (golint)
    • Line 1060: warning: don't use underscores in Go names; method Must_Var should be MustVar (golint)
    • Line 1068: warning: exported function Must_WeightNorm should have comment or be unexported (golint)
    • Line 1068: warning: don't use underscores in Go names; func Must_WeightNorm should be MustWeightNorm (golint)
    • Line 1076: warning: exported method Tensor.MustAbs should have comment or be unexported (golint)
    • Line 1084: warning: exported method Tensor.MustAbs_ should have comment or be unexported (golint)
    • Line 1084: warning: don't use underscores in Go names; method MustAbs_ should be MustAbs (golint)
    • Line 1092: warning: exported method Tensor.MustAbsOut should have comment or be unexported (golint)
    • Line 1100: warning: exported method Tensor.MustAbsolute should have comment or be unexported (golint)
    • Line 1108: warning: exported method Tensor.MustAbsolute_ should have comment or be unexported (golint)
    • Line 1108: warning: don't use underscores in Go names; method MustAbsolute_ should be MustAbsolute (golint)
    • Line 1116: warning: exported method Tensor.MustAbsoluteOut should have comment or be unexported (golint)
    • Line 1124: warning: exported method Tensor.MustAcos should have comment or be unexported (golint)
    • Line 1132: warning: exported method Tensor.MustAcos_ should have comment or be unexported (golint)
    • Line 1132: warning: don't use underscores in Go names; method MustAcos_ should be MustAcos (golint)
    • Line 1140: warning: exported method Tensor.MustAcosOut should have comment or be unexported (golint)
    • Line 1148: warning: exported method Tensor.MustAcosh should have comment or be unexported (golint)
    • Line 1156: warning: exported method Tensor.MustAcosh_ should have comment or be unexported (golint)
    • Line 1156: warning: don't use underscores in Go names; method MustAcosh_ should be MustAcosh (golint)
    • Line 1164: warning: exported method Tensor.MustAcoshOut should have comment or be unexported (golint)
    • Line 1172: warning: exported method Tensor.MustAdaptiveAvgPool1d should have comment or be unexported (golint)
    • Line 1180: warning: exported method Tensor.MustAdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 1188: warning: exported method Tensor.MustAdaptiveAvgPool2dOut should have comment or be unexported (golint)
    • Line 1196: warning: exported method Tensor.MustAdaptiveAvgPool3d should have comment or be unexported (golint)
    • Line 1204: warning: exported method Tensor.MustAdaptiveAvgPool3dBackward should have comment or be unexported (golint)
    • Line 1212: warning: exported method Tensor.MustAdaptiveAvgPool3dBackwardOut should have comment or be unexported (golint)
    • Line 1220: warning: exported method Tensor.MustAdaptiveAvgPool3dOut should have comment or be unexported (golint)
    • Line 1228: warning: exported method Tensor.MustAdaptiveMaxPool2dBackward should have comment or be unexported (golint)
    • Line 1236: warning: exported method Tensor.MustAdaptiveMaxPool2dBackwardOut should have comment or be unexported (golint)
    • Line 1244: warning: exported method Tensor.MustAdaptiveMaxPool3dBackward should have comment or be unexported (golint)
    • Line 1252: warning: exported method Tensor.MustAdaptiveMaxPool3dBackwardOut should have comment or be unexported (golint)
    • Line 1260: warning: exported method Tensor.MustAdd should have comment or be unexported (golint)
    • Line 1268: warning: exported method Tensor.MustAdd1 should have comment or be unexported (golint)
    • Line 1276: warning: exported method Tensor.MustAdd_ should have comment or be unexported (golint)
    • Line 1276: warning: don't use underscores in Go names; method MustAdd_ should be MustAdd (golint)
    • Line 1284: warning: exported method Tensor.MustAdd1_ should have comment or be unexported (golint)
    • Line 1284: warning: don't use underscores in Go names; method MustAdd1_ should be MustAdd1 (golint)
    • Line 1292: warning: exported method Tensor.MustAddOut should have comment or be unexported (golint)
    • Line 1300: warning: exported method Tensor.MustAddbmm should have comment or be unexported (golint)
    • Line 1308: warning: exported method Tensor.MustAddbmm_ should have comment or be unexported (golint)
    • Line 1308: warning: don't use underscores in Go names; method MustAddbmm_ should be MustAddbmm (golint)
    • Line 1316: warning: exported method Tensor.MustAddbmmOut should have comment or be unexported (golint)
    • Line 1324: warning: exported method Tensor.MustAddcdiv should have comment or be unexported (golint)
    • Line 1332: warning: exported method Tensor.MustAddcdiv_ should have comment or be unexported (golint)
    • Line 1332: warning: don't use underscores in Go names; method MustAddcdiv_ should be MustAddcdiv (golint)
    • Line 1340: warning: exported method Tensor.MustAddcdivOut should have comment or be unexported (golint)
    • Line 1348: warning: exported method Tensor.MustAddcmul should have comment or be unexported (golint)
    • Line 1356: warning: exported method Tensor.MustAddcmul_ should have comment or be unexported (golint)
    • Line 1356: warning: don't use underscores in Go names; method MustAddcmul_ should be MustAddcmul (golint)
    • Line 1364: warning: exported method Tensor.MustAddcmulOut should have comment or be unexported (golint)
    • Line 1372: warning: exported method Tensor.MustAddmm should have comment or be unexported (golint)
    • Line 1380: warning: exported method Tensor.MustAddmm_ should have comment or be unexported (golint)
    • Line 1380: warning: don't use underscores in Go names; method MustAddmm_ should be MustAddmm (golint)
    • Line 1388: warning: exported method Tensor.MustAddmmOut should have comment or be unexported (golint)
    • Line 1396: warning: exported method Tensor.MustAddmv should have comment or be unexported (golint)
    • Line 1404: warning: exported method Tensor.MustAddmv_ should have comment or be unexported (golint)
    • Line 1404: warning: don't use underscores in Go names; method MustAddmv_ should be MustAddmv (golint)
    • Line 1412: warning: exported method Tensor.MustAddmvOut should have comment or be unexported (golint)
    • Line 1420: warning: exported method Tensor.MustAddr should have comment or be unexported (golint)
    • Line 1428: warning: exported method Tensor.MustAddr_ should have comment or be unexported (golint)
    • Line 1428: warning: don't use underscores in Go names; method MustAddr_ should be MustAddr (golint)
    • Line 1436: warning: exported method Tensor.MustAddrOut should have comment or be unexported (golint)
    • Line 1444: warning: exported function MustAffineGridGenerator should have comment or be unexported (golint)
    • Line 1452: warning: exported function MustAffineGridGeneratorBackward should have comment or be unexported (golint)
    • Line 1460: warning: exported method Tensor.MustAlias should have comment or be unexported (golint)
    • Line 1468: warning: exported method Tensor.MustAlignAs should have comment or be unexported (golint)
    • Line 1476: warning: exported method Tensor.MustAll should have comment or be unexported (golint)
    • Line 1484: warning: exported method Tensor.MustAll1 should have comment or be unexported (golint)
    • Line 1492: warning: exported method Tensor.MustAllOut should have comment or be unexported (golint)
    • Line 1500: warning: exported function MustAlphaDropout should have comment or be unexported (golint)
    • Line 1508: warning: exported method Tensor.MustAlphaDropout_ should have comment or be unexported (golint)
    • Line 1508: warning: don't use underscores in Go names; method MustAlphaDropout_ should be MustAlphaDropout (golint)
    • Line 1516: warning: exported method Tensor.MustAmax should have comment or be unexported (golint)
    • Line 1524: warning: exported method Tensor.MustAmaxOut should have comment or be unexported (golint)
    • Line 1532: warning: exported method Tensor.MustAmin should have comment or be unexported (golint)
    • Line 1540: warning: exported method Tensor.MustAminOut should have comment or be unexported (golint)
    • Line 1548: warning: exported method Tensor.MustAngle should have comment or be unexported (golint)
    • Line 1556: warning: exported method Tensor.MustAngleOut should have comment or be unexported (golint)
    • Line 1564: warning: exported method Tensor.MustAny should have comment or be unexported (golint)
    • Line 1572: warning: exported method Tensor.MustAny1 should have comment or be unexported (golint)
    • Line 1580: warning: exported method Tensor.MustAnyOut should have comment or be unexported (golint)
    • Line 1588: warning: exported function MustArange should have comment or be unexported (golint)
    • Line 1596: warning: exported function MustArange1 should have comment or be unexported (golint)
    • Line 1604: warning: exported function MustArange2 should have comment or be unexported (golint)
    • Line 1612: warning: exported function MustArangeOut should have comment or be unexported (golint)
    • Line 1620: warning: exported function MustArangeOut1 should have comment or be unexported (golint)
    • Line 1628: warning: exported method Tensor.MustArccos should have comment or be unexported (golint)
    • Line 1636: warning: exported method Tensor.MustArccos_ should have comment or be unexported (golint)
    • Line 1636: warning: don't use underscores in Go names; method MustArccos_ should be MustArccos (golint)
    • Line 1644: warning: exported method Tensor.MustArccosOut should have comment or be unexported (golint)
    • Line 1652: warning: exported method Tensor.MustArccosh should have comment or be unexported (golint)
    • Line 1660: warning: exported method Tensor.MustArccosh_ should have comment or be unexported (golint)
    • Line 1660: warning: don't use underscores in Go names; method MustArccosh_ should be MustArccosh (golint)
    • Line 1668: warning: exported method Tensor.MustArccoshOut should have comment or be unexported (golint)
    • Line 1676: warning: exported method Tensor.MustArcsin should have comment or be unexported (golint)
    • Line 1684: warning: exported method Tensor.MustArcsin_ should have comment or be unexported (golint)
    • Line 1684: warning: don't use underscores in Go names; method MustArcsin_ should be MustArcsin (golint)
    • Line 1692: warning: exported method Tensor.MustArcsinOut should have comment or be unexported (golint)
    • Line 1700: warning: exported method Tensor.MustArcsinh should have comment or be unexported (golint)
    • Line 1708: warning: exported method Tensor.MustArcsinh_ should have comment or be unexported (golint)
    • Line 1708: warning: don't use underscores in Go names; method MustArcsinh_ should be MustArcsinh (golint)
    • Line 1716: warning: exported method Tensor.MustArcsinhOut should have comment or be unexported (golint)
    • Line 1724: warning: exported method Tensor.MustArctan should have comment or be unexported (golint)
    • Line 1732: warning: exported method Tensor.MustArctan_ should have comment or be unexported (golint)
    • Line 1732: warning: don't use underscores in Go names; method MustArctan_ should be MustArctan (golint)
    • Line 1740: warning: exported method Tensor.MustArctanOut should have comment or be unexported (golint)
    • Line 1748: warning: exported method Tensor.MustArctanh should have comment or be unexported (golint)
    • Line 1756: warning: exported method Tensor.MustArctanh_ should have comment or be unexported (golint)
    • Line 1756: warning: don't use underscores in Go names; method MustArctanh_ should be MustArctanh (golint)
    • Line 1764: warning: exported method Tensor.MustArctanhOut should have comment or be unexported (golint)
    • Line 1772: warning: exported method Tensor.MustArgmax should have comment or be unexported (golint)
    • Line 1780: warning: exported method Tensor.MustArgmin should have comment or be unexported (golint)
    • Line 1788: warning: exported method Tensor.MustArgsort should have comment or be unexported (golint)
    • Line 1796: warning: exported method Tensor.MustAsStrided should have comment or be unexported (golint)
    • Line 1804: warning: exported method Tensor.MustAsStrided_ should have comment or be unexported (golint)
    • Line 1804: warning: don't use underscores in Go names; method MustAsStrided_ should be MustAsStrided (golint)
    • Line 1812: warning: exported method Tensor.MustAsin should have comment or be unexported (golint)
    • Line 1820: warning: exported method Tensor.MustAsin_ should have comment or be unexported (golint)
    • Line 1820: warning: don't use underscores in Go names; method MustAsin_ should be MustAsin (golint)
    • Line 1828: warning: exported method Tensor.MustAsinOut should have comment or be unexported (golint)
    • Line 1836: warning: exported method Tensor.MustAsinh should have comment or be unexported (golint)
    • Line 1844: warning: exported method Tensor.MustAsinh_ should have comment or be unexported (golint)
    • Line 1844: warning: don't use underscores in Go names; method MustAsinh_ should be MustAsinh (golint)
    • Line 1852: warning: exported method Tensor.MustAsinhOut should have comment or be unexported (golint)
    • Line 1860: warning: exported method Tensor.MustAtan should have comment or be unexported (golint)
    • Line 1868: warning: exported method Tensor.MustAtan2 should have comment or be unexported (golint)
    • Line 1876: warning: exported method Tensor.MustAtan2_ should have comment or be unexported (golint)
    • Line 1876: warning: don't use underscores in Go names; method MustAtan2_ should be MustAtan2 (golint)
    • Line 1884: warning: exported method Tensor.MustAtan2Out should have comment or be unexported (golint)
    • Line 1892: warning: exported method Tensor.MustAtan_ should have comment or be unexported (golint)
    • Line 1892: warning: don't use underscores in Go names; method MustAtan_ should be MustAtan (golint)
    • Line 1900: warning: exported method Tensor.MustAtanOut should have comment or be unexported (golint)
    • Line 1908: warning: exported method Tensor.MustAtanh should have comment or be unexported (golint)
    • Line 1916: warning: exported method Tensor.MustAtanh_ should have comment or be unexported (golint)
    • Line 1916: warning: don't use underscores in Go names; method MustAtanh_ should be MustAtanh (golint)
    • Line 1924: warning: exported method Tensor.MustAtanhOut should have comment or be unexported (golint)
    • Line 1932: warning: exported method Tensor.MustAtleast1d should have comment or be unexported (golint)
    • Line 1940: warning: exported method Tensor.MustAtleast2d should have comment or be unexported (golint)
    • Line 1948: warning: exported method Tensor.MustAtleast3d should have comment or be unexported (golint)
    • Line 1956: warning: exported method Tensor.MustAvgPool1d should have comment or be unexported (golint)
    • Line 1964: warning: exported method Tensor.MustAvgPool2d should have comment or be unexported (golint)
    • Line 1972: warning: exported method Tensor.MustAvgPool2dBackward should have comment or be unexported (golint)
    • Line 1980: warning: exported method Tensor.MustAvgPool2dBackwardOut should have comment or be unexported (golint)
    • Line 1988: warning: exported method Tensor.MustAvgPool2dOut should have comment or be unexported (golint)
    • Line 1996: warning: exported method Tensor.MustAvgPool3d should have comment or be unexported (golint)
    • Line 2004: warning: exported method Tensor.MustAvgPool3dBackward should have comment or be unexported (golint)
    • Line 2012: warning: exported method Tensor.MustAvgPool3dBackwardOut should have comment or be unexported (golint)
    • Line 2020: warning: exported method Tensor.MustAvgPool3dOut should have comment or be unexported (golint)
    • Line 2028: warning: exported method Tensor.MustBaddbmm should have comment or be unexported (golint)
    • Line 2036: warning: exported method Tensor.MustBaddbmm_ should have comment or be unexported (golint)
    • Line 2036: warning: don't use underscores in Go names; method MustBaddbmm_ should be MustBaddbmm (golint)
    • Line 2044: warning: exported method Tensor.MustBaddbmmOut should have comment or be unexported (golint)
    • Line 2052: warning: exported function MustBartlettWindow should have comment or be unexported (golint)
    • Line 2060: warning: exported function MustBartlettWindow1 should have comment or be unexported (golint)
    • Line 2068: warning: exported function MustBatchNorm should have comment or be unexported (golint)
    • Line 2076: warning: exported function MustBatchNormBackwardElemt should have comment or be unexported (golint)
    • Line 2084: warning: exported function MustBatchNormElemt should have comment or be unexported (golint)
    • Line 2092: warning: exported function MustBatchNormElemtOut should have comment or be unexported (golint)
    • Line 2100: warning: exported method Tensor.MustBernoulli should have comment or be unexported (golint)
    • Line 2108: warning: exported method Tensor.MustBernoulli1 should have comment or be unexported (golint)
    • Line 2116: warning: exported method Tensor.MustBernoulli_ should have comment or be unexported (golint)
    • Line 2116: warning: don't use underscores in Go names; method MustBernoulli_ should be MustBernoulli (golint)
    • Line 2124: warning: exported method Tensor.MustBernoulli1_ should have comment or be unexported (golint)
    • Line 2124: warning: don't use underscores in Go names; method MustBernoulli1_ should be MustBernoulli1 (golint)
    • Line 2132: warning: exported method Tensor.MustBernoulliOut should have comment or be unexported (golint)
    • Line 2140: warning: exported function MustBilinear should have comment or be unexported (golint)
    • Line 2148: warning: exported method Tensor.MustBinaryCrossEntropy should have comment or be unexported (golint)
    • Line 2156: warning: exported method Tensor.MustBinaryCrossEntropyBackward should have comment or be unexported (golint)
    • Line 2164: warning: exported method Tensor.MustBinaryCrossEntropyBackwardOut should have comment or be unexported (golint)
    • Line 2172: warning: exported method Tensor.MustBinaryCrossEntropyOut should have comment or be unexported (golint)
    • Line 2180: warning: exported method Tensor.MustBinaryCrossEntropyWithLogits should have comment or be unexported (golint)
    • Line 2188: warning: exported method Tensor.MustBinaryCrossEntropyWithLogitsBackward should have comment or be unexported (golint)
    • Line 2196: warning: exported method Tensor.MustBincount should have comment or be unexported (golint)
    • Line 2204: warning: exported function MustBinomial should have comment or be unexported (golint)
    • Line 2212: warning: exported method Tensor.MustBitwiseAnd should have comment or be unexported (golint)
    • Line 2220: warning: exported method Tensor.MustBitwiseAnd1 should have comment or be unexported (golint)
    • Line 2228: warning: exported method Tensor.MustBitwiseAnd_ should have comment or be unexported (golint)
    • Line 2228: warning: don't use underscores in Go names; method MustBitwiseAnd_ should be MustBitwiseAnd (golint)
    • Line 2236: warning: exported method Tensor.MustBitwiseAnd1_ should have comment or be unexported (golint)
    • Line 2236: warning: don't use underscores in Go names; method MustBitwiseAnd1_ should be MustBitwiseAnd1 (golint)
    • Line 2244: warning: exported method Tensor.MustBitwiseAndOut should have comment or be unexported (golint)
    • Line 2252: warning: exported method Tensor.MustBitwiseAndOut1 should have comment or be unexported (golint)
    • Line 2260: warning: exported method Tensor.MustBitwiseNot should have comment or be unexported (golint)
    • Line 2268: warning: exported method Tensor.MustBitwiseNot_ should have comment or be unexported (golint)
    • Line 2268: warning: don't use underscores in Go names; method MustBitwiseNot_ should be MustBitwiseNot (golint)
    • Line 2276: warning: exported method Tensor.MustBitwiseNotOut should have comment or be unexported (golint)
    • Line 2284: warning: exported method Tensor.MustBitwiseOr should have comment or be unexported (golint)
    • Line 2292: warning: exported method Tensor.MustBitwiseOr1 should have comment or be unexported (golint)
    • Line 2300: warning: exported method Tensor.MustBitwiseOr_ should have comment or be unexported (golint)
    • Line 2300: warning: don't use underscores in Go names; method MustBitwiseOr_ should be MustBitwiseOr (golint)
    • Line 2308: warning: exported method Tensor.MustBitwiseOr1_ should have comment or be unexported (golint)
    • Line 2308: warning: don't use underscores in Go names; method MustBitwiseOr1_ should be MustBitwiseOr1 (golint)
    • Line 2316: warning: exported method Tensor.MustBitwiseOrOut should have comment or be unexported (golint)
    • Line 2324: warning: exported method Tensor.MustBitwiseOrOut1 should have comment or be unexported (golint)
    • Line 2332: warning: exported method Tensor.MustBitwiseXor should have comment or be unexported (golint)
    • Line 2340: warning: exported method Tensor.MustBitwiseXor1 should have comment or be unexported (golint)
    • Line 2348: warning: exported method Tensor.MustBitwiseXor_ should have comment or be unexported (golint)
    • Line 2348: warning: don't use underscores in Go names; method MustBitwiseXor_ should be MustBitwiseXor (golint)
    • Line 2356: warning: exported method Tensor.MustBitwiseXor1_ should have comment or be unexported (golint)
    • Line 2356: warning: don't use underscores in Go names; method MustBitwiseXor1_ should be MustBitwiseXor1 (golint)
    • Line 2364: warning: exported method Tensor.MustBitwiseXorOut should have comment or be unexported (golint)
    • Line 2372: warning: exported method Tensor.MustBitwiseXorOut1 should have comment or be unexported (golint)
    • Line 2380: warning: exported function MustBlackmanWindow should have comment or be unexported (golint)
    • Line 2388: warning: exported function MustBlackmanWindow1 should have comment or be unexported (golint)
    • Line 2396: warning: exported function MustBlockDiag should have comment or be unexported (golint)
    • Line 2404: warning: exported method Tensor.MustBmm should have comment or be unexported (golint)
    • Line 2412: warning: exported method Tensor.MustBmmOut should have comment or be unexported (golint)
    • Line 2420: warning: exported method Tensor.MustBucketize should have comment or be unexported (golint)
    • Line 2428: warning: exported function MustBucketize1 should have comment or be unexported (golint)
    • Line 2436: warning: exported method Tensor.MustBucketizeOut should have comment or be unexported (golint)
    • Line 2444: warning: exported function MustCartesianProd should have comment or be unexported (golint)
    • Line 2452: warning: exported function MustCat should have comment or be unexported (golint)
    • Line 2460: warning: exported function MustCatOut should have comment or be unexported (golint)
    • Line 2468: warning: exported method Tensor.MustCauchy_ should have comment or be unexported (golint)
    • Line 2468: warning: don't use underscores in Go names; method MustCauchy_ should be MustCauchy (golint)
    • Line 2476: warning: exported function MustCdist should have comment or be unexported (golint)
    • Line 2484: warning: exported method Tensor.MustCeil should have comment or be unexported (golint)
    • Line 2492: warning: exported method Tensor.MustCeil_ should have comment or be unexported (golint)
    • Line 2492: warning: don't use underscores in Go names; method MustCeil_ should be MustCeil (golint)
    • Line 2500: warning: exported method Tensor.MustCeilOut should have comment or be unexported (golint)
    • Line 2508: warning: exported method Tensor.MustCelu should have comment or be unexported (golint)
    • Line 2516: warning: exported method Tensor.MustCelu_ should have comment or be unexported (golint)
    • Line 2516: warning: don't use underscores in Go names; method MustCelu_ should be MustCelu (golint)
    • Line 2524: warning: exported function MustChainMatmul should have comment or be unexported (golint)
    • Line 2532: warning: exported method Tensor.MustChannelShuffle should have comment or be unexported (golint)
    • Line 2540: warning: exported method Tensor.MustCholesky should have comment or be unexported (golint)
    • Line 2548: warning: exported method Tensor.MustCholeskyInverse should have comment or be unexported (golint)
    • Line 2556: warning: exported method Tensor.MustCholeskyInverseOut should have comment or be unexported (golint)
    • Line 2564: warning: exported method Tensor.MustCholeskyOut should have comment or be unexported (golint)
    • Line 2572: warning: exported method Tensor.MustCholeskySolve should have comment or be unexported (golint)
    • Line 2580: warning: exported method Tensor.MustCholeskySolveOut should have comment or be unexported (golint)
    • Line 2588: warning: exported method Tensor.MustClamp should have comment or be unexported (golint)
    • Line 2596: warning: exported method Tensor.MustClamp_ should have comment or be unexported (golint)
    • Line 2596: warning: don't use underscores in Go names; method MustClamp_ should be MustClamp (golint)
    • Line 2604: warning: exported method Tensor.MustClampMax should have comment or be unexported (golint)
    • Line 2612: warning: exported method Tensor.MustClampMax_ should have comment or be unexported (golint)
    • Line 2612: warning: don't use underscores in Go names; method MustClampMax_ should be MustClampMax (golint)
    • Line 2620: warning: exported method Tensor.MustClampMaxOut should have comment or be unexported (golint)
    • Line 2628: warning: exported method Tensor.MustClampMin should have comment or be unexported (golint)
    • Line 2636: warning: exported method Tensor.MustClampMin_ should have comment or be unexported (golint)
    • Line 2636: warning: don't use underscores in Go names; method MustClampMin_ should be MustClampMin (golint)
    • Line 2644: warning: exported method Tensor.MustClampMinOut should have comment or be unexported (golint)
    • Line 2652: warning: exported method Tensor.MustClampOut should have comment or be unexported (golint)
    • Line 2660: warning: exported method Tensor.MustClip should have comment or be unexported (golint)
    • Line 2668: warning: exported method Tensor.MustClip_ should have comment or be unexported (golint)
    • Line 2668: warning: don't use underscores in Go names; method MustClip_ should be MustClip (golint)
    • Line 2676: warning: exported method Tensor.MustClipOut should have comment or be unexported (golint)
    • Line 2684: warning: exported method Tensor.MustCoalesce should have comment or be unexported (golint)
    • Line 2692: warning: exported method Tensor.MustCol2im should have comment or be unexported (golint)
    • Line 2700: warning: exported function MustCol2imBackward should have comment or be unexported (golint)
    • Line 2708: warning: exported function MustCol2imBackwardOut should have comment or be unexported (golint)
    • Line 2716: warning: exported method Tensor.MustCol2imOut should have comment or be unexported (golint)
    • Line 2724: warning: exported method Tensor.MustCombinations should have comment or be unexported (golint)
    • Line 2732: warning: exported function MustComplex should have comment or be unexported (golint)
    • Line 2740: warning: exported function MustComplexOut should have comment or be unexported (golint)
    • Line 2748: warning: exported method Tensor.MustConj should have comment or be unexported (golint)
    • Line 2756: warning: exported method Tensor.MustConjOut should have comment or be unexported (golint)
    • Line 2764: warning: exported method Tensor.MustConstantPadNd should have comment or be unexported (golint)
    • Line 2772: warning: exported method Tensor.MustContiguous should have comment or be unexported (golint)
    • Line 2780: warning: exported function MustConv1d should have comment or be unexported (golint)
    • Line 2788: warning: exported function MustConv2d should have comment or be unexported (golint)
    • Line 2796: warning: exported function MustConv3d should have comment or be unexported (golint)
    • Line 2804: warning: exported method Tensor.MustConvTbc should have comment or be unexported (golint)
    • Line 2812: warning: exported function MustConvTranspose1d should have comment or be unexported (golint)
    • Line 2820: warning: exported function MustConvTranspose2d should have comment or be unexported (golint)
    • Line 2828: warning: exported function MustConvTranspose3d should have comment or be unexported (golint)
    • Line 2836: warning: exported function MustConvolution should have comment or be unexported (golint)
    • Line 2844: warning: exported function MustConvolutionOverrideable should have comment or be unexported (golint)
    • Line 2852: warning: exported method Tensor.MustCopySparseToSparse_ should have comment or be unexported (golint)
    • Line 2852: warning: don't use underscores in Go names; method MustCopySparseToSparse_ should be MustCopySparseToSparse (golint)
    • Line 2860: warning: exported method Tensor.MustCos should have comment or be unexported (golint)
    • Line 2868: warning: exported method Tensor.MustCos_ should have comment or be unexported (golint)
    • Line 2868: warning: don't use underscores in Go names; method MustCos_ should be MustCos (golint)
    • Line 2876: warning: exported method Tensor.MustCosOut should have comment or be unexported (golint)
    • Line 2884: warning: exported method Tensor.MustCosh should have comment or be unexported (golint)
    • Line 2892: warning: exported method Tensor.MustCosh_ should have comment or be unexported (golint)
    • Line 2892: warning: don't use underscores in Go names; method MustCosh_ should be MustCosh (golint)
    • Line 2900: warning: exported method Tensor.MustCoshOut should have comment or be unexported (golint)
    • Line 2908: warning: exported function MustCosineEmbeddingLoss should have comment or be unexported (golint)
    • Line 2916: warning: exported function MustCosineSimilarity should have comment or be unexported (golint)
    • Line 2924: warning: exported method Tensor.MustCountNonzero should have comment or be unexported (golint)
    • Line 2932: warning: exported method Tensor.MustCountNonzero1 should have comment or be unexported (golint)
    • Line 2940: warning: exported method Tensor.MustCross should have comment or be unexported (golint)
    • Line 2948: warning: exported method Tensor.MustCrossOut should have comment or be unexported (golint)
    • Line 2956: warning: exported function MustCtcLoss should have comment or be unexported (golint)
    • Line 2964: warning: exported function MustCtcLoss1 should have comment or be unexported (golint)
    • Line 2972: warning: exported function MustCudnnAffineGridGenerator should have comment or be unexported (golint)
    • Line 2980: warning: exported function MustCudnnAffineGridGeneratorBackward should have comment or be unexported (golint)
    • Line 2988: warning: exported method Tensor.MustCudnnConvolution should have comment or be unexported (golint)
    • Line 2996: warning: exported method Tensor.MustCudnnConvolution1 should have comment or be unexported (golint)
    • Line 3004: warning: exported method Tensor.MustCudnnConvolution2 should have comment or be unexported (golint)
    • Line 3012: warning: exported function MustCudnnConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 3020: warning: exported method Tensor.MustCudnnConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 3028: warning: exported method Tensor.MustCudnnConvolutionTranspose should have comment or be unexported (golint)
    • Line 3036: warning: exported method Tensor.MustCudnnConvolutionTranspose1 should have comment or be unexported (golint)
    • Line 3044: warning: exported method Tensor.MustCudnnConvolutionTranspose2 should have comment or be unexported (golint)
    • Line 3052: warning: exported function MustCudnnConvolutionTransposeBackwardInput should have comment or be unexported (golint)
    • Line 3060: warning: exported method Tensor.MustCudnnConvolutionTransposeBackwardWeight should have comment or be unexported (golint)
    • Line 3068: warning: exported method Tensor.MustCudnnGridSampler should have comment or be unexported (golint)
    • Line 3076: warning: exported function MustCummaxminBackward should have comment or be unexported (golint)
    • Line 3084: warning: exported method Tensor.MustCumprod should have comment or be unexported (golint)
    • Line 3092: warning: exported function MustCumprodBackward should have comment or be unexported (golint)
    • Line 3100: warning: exported method Tensor.MustCumprodOut should have comment or be unexported (golint)
    • Line 3108: warning: exported method Tensor.MustCumsum should have comment or be unexported (golint)
    • Line 3116: warning: exported method Tensor.MustCumsumOut should have comment or be unexported (golint)
    • Line 3124: warning: exported method Tensor.MustData should have comment or be unexported (golint)
    • Line 3132: warning: exported method Tensor.MustDeg2rad should have comment or be unexported (golint)
    • Line 3140: warning: exported method Tensor.MustDeg2rad_ should have comment or be unexported (golint)
    • Line 3140: warning: don't use underscores in Go names; method MustDeg2rad_ should be MustDeg2rad (golint)
    • Line 3148: warning: exported method Tensor.MustDeg2radOut should have comment or be unexported (golint)
    • Line 3156: warning: exported method Tensor.MustDequantize should have comment or be unexported (golint)
    • Line 3164: warning: exported method Tensor.MustDet should have comment or be unexported (golint)
    • Line 3172: warning: exported method Tensor.MustDetach should have comment or be unexported (golint)
    • Line 3180: warning: exported method Tensor.MustDetach_ should have comment or be unexported (golint)
    • Line 3180: warning: don't use underscores in Go names; method MustDetach_ should be MustDetach (golint)
    • Line 3188: warning: exported method Tensor.MustDiag should have comment or be unexported (golint)
    • Line 3196: warning: exported function MustDiagBackward should have comment or be unexported (golint)
    • Line 3204: warning: exported method Tensor.MustDiagEmbed should have comment or be unexported (golint)
    • Line 3212: warning: exported method Tensor.MustDiagOut should have comment or be unexported (golint)
    • Line 3220: warning: exported method Tensor.MustDiagflat should have comment or be unexported (golint)
    • Line 3228: warning: exported method Tensor.MustDiagonal should have comment or be unexported (golint)
    • Line 3236: warning: exported function MustDiagonalBackward should have comment or be unexported (golint)
    • Line 3244: warning: exported method Tensor.MustDigamma should have comment or be unexported (golint)
    • Line 3252: warning: exported method Tensor.MustDigamma_ should have comment or be unexported (golint)
    • Line 3252: warning: don't use underscores in Go names; method MustDigamma_ should be MustDigamma (golint)
    • Line 3260: warning: exported method Tensor.MustDigammaOut should have comment or be unexported (golint)
    • Line 3268: warning: exported method Tensor.MustDist should have comment or be unexported (golint)
    • Line 3276: warning: exported method Tensor.MustDiv should have comment or be unexported (golint)
    • Line 3284: warning: exported method Tensor.MustDiv1 should have comment or be unexported (golint)
    • Line 3292: warning: exported method Tensor.MustDiv_ should have comment or be unexported (golint)
    • Line 3292: warning: don't use underscores in Go names; method MustDiv_ should be MustDiv (golint)
    • Line 3300: warning: exported method Tensor.MustDiv1_ should have comment or be unexported (golint)
    • Line 3300: warning: don't use underscores in Go names; method MustDiv1_ should be MustDiv1 (golint)
    • Line 3308: warning: exported method Tensor.MustDivOut should have comment or be unexported (golint)
    • Line 3316: warning: exported method Tensor.MustDivide should have comment or be unexported (golint)
    • Line 3324: warning: exported method Tensor.MustDivide1 should have comment or be unexported (golint)
    • Line 3332: warning: exported method Tensor.MustDivide_ should have comment or be unexported (golint)
    • Line 3332: warning: don't use underscores in Go names; method MustDivide_ should be MustDivide (golint)
    • Line 3340: warning: exported method Tensor.MustDivide1_ should have comment or be unexported (golint)
    • Line 3340: warning: don't use underscores in Go names; method MustDivide1_ should be MustDivide1 (golint)
    • Line 3348: warning: exported method Tensor.MustDivideOut should have comment or be unexported (golint)
    • Line 3356: warning: exported method Tensor.MustDot should have comment or be unexported (golint)
    • Line 3364: warning: exported method Tensor.MustDotOut should have comment or be unexported (golint)
    • Line 3372: warning: exported function MustDropout should have comment or be unexported (golint)
    • Line 3380: warning: exported method Tensor.MustDropout_ should have comment or be unexported (golint)
    • Line 3380: warning: don't use underscores in Go names; method MustDropout_ should be MustDropout (golint)
    • Line 3388: warning: exported function MustDstack should have comment or be unexported (golint)
    • Line 3396: warning: exported function MustDstackOut should have comment or be unexported (golint)
    • Line 3404: warning: exported function MustEinsum should have comment or be unexported (golint)
    • Line 3412: warning: exported method Tensor.MustElu should have comment or be unexported (golint)
    • Line 3420: warning: exported method Tensor.MustElu_ should have comment or be unexported (golint)
    • Line 3420: warning: don't use underscores in Go names; method MustElu_ should be MustElu (golint)
    • Line 3428: warning: exported function MustEluBackward should have comment or be unexported (golint)
    • Line 3436: warning: exported function MustEluBackwardOut should have comment or be unexported (golint)
    • Line 3444: warning: exported method Tensor.MustEluOut should have comment or be unexported (golint)
    • Line 3452: warning: exported function MustEmbedding should have comment or be unexported (golint)
    • Line 3460: warning: exported function MustEmbeddingBackward should have comment or be unexported (golint)
    • Line 3468: warning: exported function MustEmbeddingDenseBackward should have comment or be unexported (golint)
    • Line 3476: warning: exported method Tensor.MustEmbeddingRenorm_ should have comment or be unexported (golint)
    • Line 3476: warning: don't use underscores in Go names; method MustEmbeddingRenorm_ should be MustEmbeddingRenorm (golint)
    • Line 3484: warning: exported function MustEmbeddingSparseBackward should have comment or be unexported (golint)
    • Line 3492: warning: exported function MustEmpty should have comment or be unexported (golint)
    • Line 3500: warning: exported method Tensor.MustEmptyLike should have comment or be unexported (golint)
    • Line 3508: warning: exported function MustEmptyMeta should have comment or be unexported (golint)
    • Line 3516: warning: exported function MustEmptyOut should have comment or be unexported (golint)
    • Line 3524: warning: exported function MustEmptyQuantized should have comment or be unexported (golint)
    • Line 3532: warning: exported function MustEmptyStrided should have comment or be unexported (golint)
    • Line 3540: warning: exported method Tensor.MustEq should have comment or be unexported (golint)
    • Line 3548: warning: exported method Tensor.MustEq1 should have comment or be unexported (golint)
    • Line 3556: warning: exported method Tensor.MustEq_ should have comment or be unexported (golint)
    • Line 3556: warning: don't use underscores in Go names; method MustEq_ should be MustEq (golint)
    • Line 3564: warning: exported method Tensor.MustEq1_ should have comment or be unexported (golint)
    • Line 3564: warning: don't use underscores in Go names; method MustEq1_ should be MustEq1 (golint)
    • Line 3572: warning: exported method Tensor.MustEqOut should have comment or be unexported (golint)
    • Line 3580: warning: exported method Tensor.MustEqOut1 should have comment or be unexported (golint)
    • Line 3588: warning: exported method Tensor.MustErf should have comment or be unexported (golint)
    • Line 3596: warning: exported method Tensor.MustErf_ should have comment or be unexported (golint)
    • Line 3596: warning: don't use underscores in Go names; method MustErf_ should be MustErf (golint)
    • Line 3604: warning: exported method Tensor.MustErfOut should have comment or be unexported (golint)
    • Line 3612: warning: exported method Tensor.MustErfc should have comment or be unexported (golint)
    • Line 3620: warning: exported method Tensor.MustErfc_ should have comment or be unexported (golint)
    • Line 3620: warning: don't use underscores in Go names; method MustErfc_ should be MustErfc (golint)
    • Line 3628: warning: exported method Tensor.MustErfcOut should have comment or be unexported (golint)
    • Line 3636: warning: exported method Tensor.MustErfinv should have comment or be unexported (golint)
    • Line 3644: warning: exported method Tensor.MustErfinv_ should have comment or be unexported (golint)
    • Line 3644: warning: don't use underscores in Go names; method MustErfinv_ should be MustErfinv (golint)
    • Line 3652: warning: exported method Tensor.MustErfinvOut should have comment or be unexported (golint)
    • Line 3660: warning: exported method Tensor.MustExp should have comment or be unexported (golint)
    • Line 3668: warning: exported method Tensor.MustExp2 should have comment or be unexported (golint)
    • Line 3676: warning: exported method Tensor.MustExp2_ should have comment or be unexported (golint)
    • Line 3676: warning: don't use underscores in Go names; method MustExp2_ should be MustExp2 (golint)
    • Line 3684: warning: exported method Tensor.MustExp2Out should have comment or be unexported (golint)
    • Line 3692: warning: exported method Tensor.MustExp_ should have comment or be unexported (golint)
    • Line 3692: warning: don't use underscores in Go names; method MustExp_ should be MustExp (golint)
    • Line 3700: warning: exported method Tensor.MustExpOut should have comment or be unexported (golint)
    • Line 3708: warning: exported method Tensor.MustExpand should have comment or be unexported (golint)
    • Line 3716: warning: exported method Tensor.MustExpandAs should have comment or be unexported (golint)
    • Line 3724: warning: exported method Tensor.MustExpm1 should have comment or be unexported (golint)
    • Line 3732: warning: exported method Tensor.MustExpm1_ should have comment or be unexported (golint)
    • Line 3732: warning: don't use underscores in Go names; method MustExpm1_ should be MustExpm1 (golint)
    • Line 3740: warning: exported method Tensor.MustExpm1Out should have comment or be unexported (golint)
    • Line 3748: warning: exported method Tensor.MustExponential_ should have comment or be unexported (golint)
    • Line 3748: warning: don't use underscores in Go names; method MustExponential_ should be MustExponential (golint)
    • Line 3756: warning: exported function MustEye should have comment or be unexported (golint)
    • Line 3764: warning: exported function MustEye1 should have comment or be unexported (golint)
    • Line 3772: warning: exported function MustEyeOut should have comment or be unexported (golint)
    • Line 3780: warning: exported function MustEyeOut1 should have comment or be unexported (golint)
    • Line 3788: warning: exported method Tensor.MustFakeQuantizePerChannelAffine should have comment or be unexported (golint)
    • Line 3796: warning: exported method Tensor.MustFakeQuantizePerChannelAffineBackward should have comment or be unexported (golint)
    • Line 3804: warning: exported method Tensor.MustFakeQuantizePerTensorAffine should have comment or be unexported (golint)
    • Line 3812: warning: exported method Tensor.MustFakeQuantizePerTensorAffineBackward should have comment or be unexported (golint)
    • Line 3820: warning: exported function MustFbgemmLinearFp16Weight should have comment or be unexported (golint)
    • Line 3828: warning: exported function MustFbgemmLinearFp16WeightFp32Activation should have comment or be unexported (golint)
    • Line 3836: warning: exported function MustFbgemmLinearInt8Weight should have comment or be unexported (golint)
    • Line 3844: warning: exported function MustFbgemmLinearInt8WeightFp32Activation should have comment or be unexported (golint)
    • Line 3852: warning: exported function MustFbgemmPackGemmMatrixFp16 should have comment or be unexported (golint)
    • Line 3860: warning: exported function MustFbgemmPackQuantizedMatrix should have comment or be unexported (golint)
    • Line 3868: warning: exported function MustFbgemmPackQuantizedMatrix1 should have comment or be unexported (golint)
    • Line 3876: warning: exported function MustFeatureAlphaDropout should have comment or be unexported (golint)
    • Line 3884: warning: exported method Tensor.MustFeatureAlphaDropout_ should have comment or be unexported (golint)
    • Line 3884: warning: don't use underscores in Go names; method MustFeatureAlphaDropout_ should be MustFeatureAlphaDropout (golint)
    • Line 3892: warning: exported function MustFeatureDropout should have comment or be unexported (golint)
    • Line 3900: warning: exported method Tensor.MustFeatureDropout_ should have comment or be unexported (golint)
    • Line 3900: warning: don't use underscores in Go names; method MustFeatureDropout_ should be MustFeatureDropout (golint)
    • Line 3908: warning: exported method Tensor.MustFft should have comment or be unexported (golint)
    • Line 3916: warning: exported method Tensor.MustFftFft should have comment or be unexported (golint)
    • Line 3924: warning: exported method Tensor.MustFftFftn should have comment or be unexported (golint)
    • Line 3932: warning: exported method Tensor.MustFftHfft should have comment or be unexported (golint)
    • Line 3940: warning: exported method Tensor.MustFftIfft should have comment or be unexported (golint)
    • Line 3948: warning: exported method Tensor.MustFftIfftn should have comment or be unexported (golint)
    • Line 3956: warning: exported method Tensor.MustFftIhfft should have comment or be unexported (golint)
    • Line 3964: warning: exported method Tensor.MustFftIrfft should have comment or be unexported (golint)
    • Line 3972: warning: exported method Tensor.MustFftIrfftn should have comment or be unexported (golint)
    • Line 3980: warning: exported method Tensor.MustFftRfft should have comment or be unexported (golint)
    • Line 3988: warning: exported method Tensor.MustFftRfftn should have comment or be unexported (golint)
    • Line 3996: warning: exported method Tensor.MustFill_ should have comment or be unexported (golint)
    • Line 3996: warning: don't use underscores in Go names; method MustFill_ should be MustFill (golint)
    • Line 4004: warning: exported method Tensor.MustFill1_ should have comment or be unexported (golint)
    • Line 4004: warning: don't use underscores in Go names; method MustFill1_ should be MustFill1 (golint)
    • Line 4012: warning: exported method Tensor.MustFillDiagonal_ should have comment or be unexported (golint)
    • Line 4012: warning: don't use underscores in Go names; method MustFillDiagonal_ should be MustFillDiagonal (golint)
    • Line 4020: warning: exported method Tensor.MustFix should have comment or be unexported (golint)
    • Line 4028: warning: exported method Tensor.MustFix_ should have comment or be unexported (golint)
    • Line 4028: warning: don't use underscores in Go names; method MustFix_ should be MustFix (golint)
    • Line 4036: warning: exported method Tensor.MustFixOut should have comment or be unexported (golint)
    • Line 4044: warning: exported method Tensor.MustFlatten should have comment or be unexported (golint)
    • Line 4052: warning: exported method Tensor.MustFlip should have comment or be unexported (golint)
    • Line 4060: warning: exported method Tensor.MustFliplr should have comment or be unexported (golint)
    • Line 4068: warning: exported method Tensor.MustFlipud should have comment or be unexported (golint)
    • Line 4076: warning: exported method Tensor.MustFloor should have comment or be unexported (golint)
    • Line 4084: warning: exported method Tensor.MustFloor_ should have comment or be unexported (golint)
    • Line 4084: warning: don't use underscores in Go names; method MustFloor_ should be MustFloor (golint)
    • Line 4092: warning: exported method Tensor.MustFloorDivide should have comment or be unexported (golint)
    • Line 4100: warning: exported method Tensor.MustFloorDivide1 should have comment or be unexported (golint)
    • Line 4108: warning: exported method Tensor.MustFloorDivide_ should have comment or be unexported (golint)
    • Line 4108: warning: don't use underscores in Go names; method MustFloorDivide_ should be MustFloorDivide (golint)
    • Line 4116: warning: exported method Tensor.MustFloorDivide1_ should have comment or be unexported (golint)
    • Line 4116: warning: don't use underscores in Go names; method MustFloorDivide1_ should be MustFloorDivide1 (golint)
    • Line 4124: warning: exported method Tensor.MustFloorDivideOut should have comment or be unexported (golint)
    • Line 4132: warning: exported method Tensor.MustFloorOut should have comment or be unexported (golint)
    • Line 4140: warning: exported method Tensor.MustFmod should have comment or be unexported (golint)
    • Line 4148: warning: exported method Tensor.MustFmod1 should have comment or be unexported (golint)
    • Line 4156: warning: exported method Tensor.MustFmod_ should have comment or be unexported (golint)
    • Line 4156: warning: don't use underscores in Go names; method MustFmod_ should be MustFmod (golint)
    • Line 4164: warning: exported method Tensor.MustFmod1_ should have comment or be unexported (golint)
    • Line 4164: warning: don't use underscores in Go names; method MustFmod1_ should be MustFmod1 (golint)
    • Line 4172: warning: exported method Tensor.MustFmodOut should have comment or be unexported (golint)
    • Line 4180: warning: exported method Tensor.MustFmodOut1 should have comment or be unexported (golint)
    • Line 4188: warning: exported method Tensor.MustFrac should have comment or be unexported (golint)
    • Line 4196: warning: exported method Tensor.MustFrac_ should have comment or be unexported (golint)
    • Line 4196: warning: don't use underscores in Go names; method MustFrac_ should be MustFrac (golint)
    • Line 4204: warning: exported method Tensor.MustFracOut should have comment or be unexported (golint)
    • Line 4212: warning: exported method Tensor.MustFractionalMaxPool2dBackward should have comment or be unexported (golint)
    • Line 4220: warning: exported method Tensor.MustFractionalMaxPool2dBackwardOut should have comment or be unexported (golint)
    • Line 4228: warning: exported method Tensor.MustFractionalMaxPool3dBackward should have comment or be unexported (golint)
    • Line 4236: warning: exported method Tensor.MustFractionalMaxPool3dBackwardOut should have comment or be unexported (golint)
    • Line 4244: warning: exported method Tensor.MustFrobeniusNorm should have comment or be unexported (golint)
    • Line 4252: warning: exported method Tensor.MustFrobeniusNorm1 should have comment or be unexported (golint)
    • Line 4260: warning: exported method Tensor.MustFrobeniusNormOut should have comment or be unexported (golint)
    • Line 4268: warning: exported function MustFromFile should have comment or be unexported (golint)
    • Line 4276: warning: exported function MustFull should have comment or be unexported (golint)
    • Line 4284: warning: exported method Tensor.MustFullLike should have comment or be unexported (golint)
    • Line 4292: warning: exported function MustFullOut should have comment or be unexported (golint)
    • Line 4300: warning: exported method Tensor.MustGather should have comment or be unexported (golint)
    • Line 4308: warning: exported method Tensor.MustGatherBackward should have comment or be unexported (golint)
    • Line 4316: warning: exported method Tensor.MustGatherOut should have comment or be unexported (golint)
    • Line 4324: warning: exported method Tensor.MustGcd should have comment or be unexported (golint)
    • Line 4332: warning: exported method Tensor.MustGcd_ should have comment or be unexported (golint)
    • Line 4332: warning: don't use underscores in Go names; method MustGcd_ should be MustGcd (golint)
    • Line 4340: warning: exported method Tensor.MustGcdOut should have comment or be unexported (golint)
    • Line 4348: warning: exported method Tensor.MustGe should have comment or be unexported (golint)
    • Line 4356: warning: exported method Tensor.MustGe1 should have comment or be unexported (golint)
    • Line 4364: warning: exported method Tensor.MustGe_ should have comment or be unexported (golint)
    • Line 4364: warning: don't use underscores in Go names; method MustGe_ should be MustGe (golint)
    • Line 4372: warning: exported method Tensor.MustGe1_ should have comment or be unexported (golint)
    • Line 4372: warning: don't use underscores in Go names; method MustGe1_ should be MustGe1 (golint)
    • Line 4380: warning: exported method Tensor.MustGeOut should have comment or be unexported (golint)
    • Line 4388: warning: exported method Tensor.MustGeOut1 should have comment or be unexported (golint)
    • Line 4396: warning: exported method Tensor.MustGelu should have comment or be unexported (golint)
    • Line 4404: warning: exported method Tensor.MustGeluBackward should have comment or be unexported (golint)
    • Line 4412: warning: exported method Tensor.MustGeometric_ should have comment or be unexported (golint)
    • Line 4412: warning: don't use underscores in Go names; method MustGeometric_ should be MustGeometric (golint)
    • Line 4420: warning: exported method Tensor.MustGer should have comment or be unexported (golint)
    • Line 4428: warning: exported method Tensor.MustGerOut should have comment or be unexported (golint)
    • Line 4436: warning: exported method Tensor.MustGlu should have comment or be unexported (golint)
    • Line 4444: warning: exported method Tensor.MustGluBackward should have comment or be unexported (golint)
    • Line 4452: warning: exported method Tensor.MustGluBackwardOut should have comment or be unexported (golint)
    • Line 4460: warning: exported method Tensor.MustGluOut should have comment or be unexported (golint)
    • Line 4468: warning: exported method Tensor.MustGrad should have comment or be unexported (golint)
    • Line 4476: warning: exported method Tensor.MustGreater should have comment or be unexported (golint)
    • Line 4484: warning: exported method Tensor.MustGreater1 should have comment or be unexported (golint)
    • Line 4492: warning: exported method Tensor.MustGreater_ should have comment or be unexported (golint)
    • Line 4492: warning: don't use underscores in Go names; method MustGreater_ should be MustGreater (golint)
    • Line 4500: warning: exported method Tensor.MustGreater1_ should have comment or be unexported (golint)
    • Line 4500: warning: don't use underscores in Go names; method MustGreater1_ should be MustGreater1 (golint)
    • Line 4508: warning: exported method Tensor.MustGreaterEqual should have comment or be unexported (golint)
    • Line 4516: warning: exported method Tensor.MustGreaterEqual1 should have comment or be unexported (golint)
    • Line 4524: warning: exported method Tensor.MustGreaterEqual_ should have comment or be unexported (golint)
    • Line 4524: warning: don't use underscores in Go names; method MustGreaterEqual_ should be MustGreaterEqual (golint)
    • Line 4532: warning: exported method Tensor.MustGreaterEqual1_ should have comment or be unexported (golint)
    • Line 4532: warning: don't use underscores in Go names; method MustGreaterEqual1_ should be MustGreaterEqual1 (golint)
    • Line 4540: warning: exported method Tensor.MustGreaterEqualOut should have comment or be unexported (golint)
    • Line 4548: warning: exported method Tensor.MustGreaterEqualOut1 should have comment or be unexported (golint)
    • Line 4556: warning: exported method Tensor.MustGreaterOut should have comment or be unexported (golint)
    • Line 4564: warning: exported method Tensor.MustGreaterOut1 should have comment or be unexported (golint)
    • Line 4572: warning: exported function MustGridSampler should have comment or be unexported (golint)
    • Line 4580: warning: exported function MustGridSampler2d should have comment or be unexported (golint)
    • Line 4588: warning: exported function MustGridSampler3d should have comment or be unexported (golint)
    • Line 4596: warning: exported function MustGroupNorm should have comment or be unexported (golint)
    • Line 4604: warning: exported function MustGruCell should have comment or be unexported (golint)
    • Line 4612: warning: exported method Tensor.MustGt should have comment or be unexported (golint)
    • Line 4620: warning: exported method Tensor.MustGt1 should have comment or be unexported (golint)
    • Line 4628: warning: exported method Tensor.MustGt_ should have comment or be unexported (golint)
    • Line 4628: warning: don't use underscores in Go names; method MustGt_ should be MustGt (golint)
    • Line 4636: warning: exported method Tensor.MustGt1_ should have comment or be unexported (golint)
    • Line 4636: warning: don't use underscores in Go names; method MustGt1_ should be MustGt1 (golint)
    • Line 4644: warning: exported method Tensor.MustGtOut should have comment or be unexported (golint)
    • Line 4652: warning: exported method Tensor.MustGtOut1 should have comment or be unexported (golint)
    • Line 4660: warning: exported function MustHammingWindow should have comment or be unexported (golint)
    • Line 4668: warning: exported function MustHammingWindow1 should have comment or be unexported (golint)
    • Line 4676: warning: exported function MustHammingWindow2 should have comment or be unexported (golint)
    • Line 4684: warning: exported function MustHammingWindow3 should have comment or be unexported (golint)
    • Line 4692: warning: exported function MustHannWindow should have comment or be unexported (golint)
    • Line 4700: warning: exported function MustHannWindow1 should have comment or be unexported (golint)
    • Line 4708: warning: exported method Tensor.MustHardshrink should have comment or be unexported (golint)
    • Line 4716: warning: exported method Tensor.MustHardshrinkBackward should have comment or be unexported (golint)
    • Line 4724: warning: exported method Tensor.MustHardsigmoid should have comment or be unexported (golint)
    • Line 4732: warning: exported method Tensor.MustHardsigmoid_ should have comment or be unexported (golint)
    • Line 4732: warning: don't use underscores in Go names; method MustHardsigmoid_ should be MustHardsigmoid (golint)
    • Line 4740: warning: exported method Tensor.MustHardsigmoidBackward should have comment or be unexported (golint)
    • Line 4748: warning: exported method Tensor.MustHardsigmoidOut should have comment or be unexported (golint)
    • Line 4756: warning: exported method Tensor.MustHardswish should have comment or be unexported (golint)
    • Line 4764: warning: exported method Tensor.MustHardswish_ should have comment or be unexported (golint)
    • Line 4764: warning: don't use underscores in Go names; method MustHardswish_ should be MustHardswish (golint)
    • Line 4772: warning: exported method Tensor.MustHardswishBackward should have comment or be unexported (golint)
    • Line 4780: warning: exported method Tensor.MustHardswishOut should have comment or be unexported (golint)
    • Line 4788: warning: exported method Tensor.MustHardtanh should have comment or be unexported (golint)
    • Line 4796: warning: exported method Tensor.MustHardtanh_ should have comment or be unexported (golint)
    • Line 4796: warning: don't use underscores in Go names; method MustHardtanh_ should be MustHardtanh (golint)
    • Line 4804: warning: exported method Tensor.MustHardtanhBackward should have comment or be unexported (golint)
    • Line 4812: warning: exported method Tensor.MustHardtanhBackwardOut should have comment or be unexported (golint)
    • Line 4820: warning: exported method Tensor.MustHardtanhOut should have comment or be unexported (golint)
    • Line 4828: warning: exported method Tensor.MustHeaviside should have comment or be unexported (golint)
    • Line 4836: warning: exported method Tensor.MustHeaviside_ should have comment or be unexported (golint)
    • Line 4836: warning: don't use underscores in Go names; method MustHeaviside_ should be MustHeaviside (golint)
    • Line 4844: warning: exported method Tensor.MustHeavisideOut should have comment or be unexported (golint)
    • Line 4852: warning: exported method Tensor.MustHingeEmbeddingLoss should have comment or be unexported (golint)
    • Line 4860: warning: exported method Tensor.MustHistc should have comment or be unexported (golint)
    • Line 4868: warning: exported method Tensor.MustHistcOut should have comment or be unexported (golint)
    • Line 4876: warning: exported function MustHspmm should have comment or be unexported (golint)
    • Line 4884: warning: exported function MustHspmmOut should have comment or be unexported (golint)
    • Line 4892: warning: exported function MustHstack should have comment or be unexported (golint)
    • Line 4900: warning: exported function MustHstackOut should have comment or be unexported (golint)
    • Line 4908: warning: exported method Tensor.MustHypot should have comment or be unexported (golint)
    • Line 4916: warning: exported method Tensor.MustHypot_ should have comment or be unexported (golint)
    • Line 4916: warning: don't use underscores in Go names; method MustHypot_ should be MustHypot (golint)
    • Line 4924: warning: exported method Tensor.MustHypotOut should have comment or be unexported (golint)
    • Line 4932: warning: exported method Tensor.MustI0 should have comment or be unexported (golint)
    • Line 4940: warning: exported method Tensor.MustI0_ should have comment or be unexported (golint)
    • Line 4940: warning: don't use underscores in Go names; method MustI0_ should be MustI0 (golint)
    • Line 4948: warning: exported method Tensor.MustI0Out should have comment or be unexported (golint)
    • Line 4956: warning: exported method Tensor.MustIfft should have comment or be unexported (golint)
    • Line 4964: warning: exported method Tensor.MustIm2col should have comment or be unexported (golint)
    • Line 4972: warning: exported function MustIm2colBackward should have comment or be unexported (golint)
    • Line 4980: warning: exported function MustIm2colBackwardOut should have comment or be unexported (golint)
    • Line 4988: warning: exported method Tensor.MustIm2colOut should have comment or be unexported (golint)
    • Line 4996: warning: exported method Tensor.MustImag should have comment or be unexported (golint)
    • Line 5004: warning: exported method Tensor.MustIndex should have comment or be unexported (golint)
    • Line 5012: warning: exported method Tensor.MustIndexAdd should have comment or be unexported (golint)
    • Line 5020: warning: exported method Tensor.MustIndexAdd_ should have comment or be unexported (golint)
    • Line 5020: warning: don't use underscores in Go names; method MustIndexAdd_ should be MustIndexAdd (golint)
    • Line 5028: warning: exported method Tensor.MustIndexCopy should have comment or be unexported (golint)
    • Line 5036: warning: exported method Tensor.MustIndexCopy_ should have comment or be unexported (golint)
    • Line 5036: warning: don't use underscores in Go names; method MustIndexCopy_ should be MustIndexCopy (golint)
    • Line 5044: warning: exported method Tensor.MustIndexFill should have comment or be unexported (golint)
    • Line 5052: warning: exported method Tensor.MustIndexFill1 should have comment or be unexported (golint)
    • Line 5060: warning: exported method Tensor.MustIndexFill_ should have comment or be unexported (golint)
    • Line 5060: warning: don't use underscores in Go names; method MustIndexFill_ should be MustIndexFill (golint)
    • Line 5068: warning: exported method Tensor.MustIndexFill1_ should have comment or be unexported (golint)
    • Line 5068: warning: don't use underscores in Go names; method MustIndexFill1_ should be MustIndexFill1 (golint)
    • Line 5076: warning: exported method Tensor.MustIndexPut should have comment or be unexported (golint)
    • Line 5084: warning: exported method Tensor.MustIndexPut_ should have comment or be unexported (golint)
    • Line 5084: warning: don't use underscores in Go names; method MustIndexPut_ should be MustIndexPut (golint)
    • Line 5092: warning: exported method Tensor.MustIndexSelect should have comment or be unexported (golint)
    • Line 5100: warning: exported function MustIndexSelectBackward should have comment or be unexported (golint)
    • Line 5108: warning: exported method Tensor.MustIndexSelectOut should have comment or be unexported (golint)
    • Line 5116: warning: exported method Tensor.MustIndices should have comment or be unexported (golint)
    • Line 5124: warning: exported method Tensor.MustInfinitelyDifferentiableGeluBackward should have comment or be unexported (golint)
    • Line 5132: warning: exported function MustInstanceNorm should have comment or be unexported (golint)
    • Line 5140: warning: exported method Tensor.MustIntRepr should have comment or be unexported (golint)
    • Line 5148: warning: exported method Tensor.MustInverse should have comment or be unexported (golint)
    • Line 5156: warning: exported method Tensor.MustInverseOut should have comment or be unexported (golint)
    • Line 5164: warning: exported method Tensor.MustIrfft should have comment or be unexported (golint)
    • Line 5172: warning: exported method Tensor.MustIsclose should have comment or be unexported (golint)
    • Line 5180: warning: exported method Tensor.MustIsfinite should have comment or be unexported (golint)
    • Line 5188: warning: exported method Tensor.MustIsinf should have comment or be unexported (golint)
    • Line 5196: warning: exported method Tensor.MustIsnan should have comment or be unexported (golint)
    • Line 5204: warning: exported method Tensor.MustIsneginf should have comment or be unexported (golint)
    • Line 5212: warning: exported method Tensor.MustIsneginfOut should have comment or be unexported (golint)
    • Line 5220: warning: exported method Tensor.MustIsposinf should have comment or be unexported (golint)
    • Line 5228: warning: exported method Tensor.MustIsposinfOut should have comment or be unexported (golint)
    • Line 5236: warning: exported method Tensor.MustIsreal should have comment or be unexported (golint)
    • Line 5244: warning: exported method Tensor.MustIstft should have comment or be unexported (golint)
    • Line 5252: warning: exported function MustKaiserWindow should have comment or be unexported (golint)
    • Line 5260: warning: exported function MustKaiserWindow1 should have comment or be unexported (golint)
    • Line 5268: warning: exported function MustKaiserWindow2 should have comment or be unexported (golint)
    • Line 5276: warning: exported method Tensor.MustKlDiv should have comment or be unexported (golint)
    • Line 5284: warning: exported method Tensor.MustKlDivBackward should have comment or be unexported (golint)
    • Line 5292: warning: exported method Tensor.MustL1Loss should have comment or be unexported (golint)
    • Line 5300: warning: exported method Tensor.MustL1LossBackward should have comment or be unexported (golint)
    • Line 5308: warning: exported method Tensor.MustL1LossBackwardOut should have comment or be unexported (golint)
    • Line 5316: warning: exported method Tensor.MustL1LossOut should have comment or be unexported (golint)
    • Line 5324: warning: exported function MustLayerNorm should have comment or be unexported (golint)
    • Line 5332: warning: exported method Tensor.MustLcm should have comment or be unexported (golint)
    • Line 5340: warning: exported method Tensor.MustLcm_ should have comment or be unexported (golint)
    • Line 5340: warning: don't use underscores in Go names; method MustLcm_ should be MustLcm (golint)
    • Line 5348: warning: exported method Tensor.MustLcmOut should have comment or be unexported (golint)
    • Line 5356: warning: exported method Tensor.MustLe should have comment or be unexported (golint)
    • Line 5364: warning: exported method Tensor.MustLe1 should have comment or be unexported (golint)
    • Line 5372: warning: exported method Tensor.MustLe_ should have comment or be unexported (golint)
    • Line 5372: warning: don't use underscores in Go names; method MustLe_ should be MustLe (golint)
    • Line 5380: warning: exported method Tensor.MustLe1_ should have comment or be unexported (golint)
    • Line 5380: warning: don't use underscores in Go names; method MustLe1_ should be MustLe1 (golint)
    • Line 5388: warning: exported method Tensor.MustLeOut should have comment or be unexported (golint)
    • Line 5396: warning: exported method Tensor.MustLeOut1 should have comment or be unexported (golint)
    • Line 5404: warning: exported method Tensor.MustLeakyRelu should have comment or be unexported (golint)
    • Line 5412: warning: exported method Tensor.MustLeakyRelu_ should have comment or be unexported (golint)
    • Line 5412: warning: don't use underscores in Go names; method MustLeakyRelu_ should be MustLeakyRelu (golint)
    • Line 5420: warning: exported method Tensor.MustLeakyReluBackward should have comment or be unexported (golint)
    • Line 5428: warning: exported method Tensor.MustLeakyReluOut should have comment or be unexported (golint)
    • Line 5436: warning: exported method Tensor.MustLerp should have comment or be unexported (golint)
    • Line 5444: warning: exported method Tensor.MustLerp1 should have comment or be unexported (golint)
    • Line 5452: warning: exported method Tensor.MustLerp_ should have comment or be unexported (golint)
    • Line 5452: warning: don't use underscores in Go names; method MustLerp_ should be MustLerp (golint)
    • Line 5460: warning: exported method Tensor.MustLerp1_ should have comment or be unexported (golint)
    • Line 5460: warning: don't use underscores in Go names; method MustLerp1_ should be MustLerp1 (golint)
    • Line 5468: warning: exported method Tensor.MustLerpOut should have comment or be unexported (golint)
    • Line 5476: warning: exported method Tensor.MustLerpOut1 should have comment or be unexported (golint)
    • Line 5484: warning: exported method Tensor.MustLess should have comment or be unexported (golint)
    • Line 5492: warning: exported method Tensor.MustLess1 should have comment or be unexported (golint)
    • Line 5500: warning: exported method Tensor.MustLess_ should have comment or be unexported (golint)
    • Line 5500: warning: don't use underscores in Go names; method MustLess_ should be MustLess (golint)
    • Line 5508: warning: exported method Tensor.MustLess1_ should have comment or be unexported (golint)
    • Line 5508: warning: don't use underscores in Go names; method MustLess1_ should be MustLess1 (golint)
    • Line 5516: warning: exported method Tensor.MustLessEqual should have comment or be unexported (golint)
    • Line 5524: warning: exported method Tensor.MustLessEqual1 should have comment or be unexported (golint)
    • Line 5532: warning: exported method Tensor.MustLessEqual_ should have comment or be unexported (golint)
    • Line 5532: warning: don't use underscores in Go names; method MustLessEqual_ should be MustLessEqual (golint)
    • Line 5540: warning: exported method Tensor.MustLessEqual1_ should have comment or be unexported (golint)
    • Line 5540: warning: don't use underscores in Go names; method MustLessEqual1_ should be MustLessEqual1 (golint)
    • Line 5548: warning: exported method Tensor.MustLessEqualOut should have comment or be unexported (golint)
    • Line 5556: warning: exported method Tensor.MustLessEqualOut1 should have comment or be unexported (golint)
    • Line 5564: warning: exported method Tensor.MustLessOut should have comment or be unexported (golint)
    • Line 5572: warning: exported method Tensor.MustLessOut1 should have comment or be unexported (golint)
    • Line 5580: warning: exported method Tensor.MustLgamma should have comment or be unexported (golint)
    • Line 5588: warning: exported method Tensor.MustLgamma_ should have comment or be unexported (golint)
    • Line 5588: warning: don't use underscores in Go names; method MustLgamma_ should be MustLgamma (golint)
    • Line 5596: warning: exported method Tensor.MustLgammaOut should have comment or be unexported (golint)
    • Line 5604: warning: exported method Tensor.MustLinalgDet should have comment or be unexported (golint)
    • Line 5612: warning: exported method Tensor.MustLinalgNorm should have comment or be unexported (golint)
    • Line 5620: warning: exported method Tensor.MustLinalgNorm1 should have comment or be unexported (golint)
    • Line 5628: warning: exported method Tensor.MustLinalgNormOut should have comment or be unexported (golint)
    • Line 5636: warning: exported method Tensor.MustLinalgNormOut1 should have comment or be unexported (golint)
    • Line 5644: warning: exported function MustLinear should have comment or be unexported (golint)
    • Line 5652: warning: exported function MustLinspace should have comment or be unexported (golint)
    • Line 5660: warning: exported function MustLinspaceOut should have comment or be unexported (golint)
    • Line 5668: warning: exported method Tensor.MustLog should have comment or be unexported (golint)
    • Line 5676: warning: exported method Tensor.MustLog10 should have comment or be unexported (golint)
    • Line 5684: warning: exported method Tensor.MustLog10_ should have comment or be unexported (golint)
    • Line 5684: warning: don't use underscores in Go names; method MustLog10_ should be MustLog10 (golint)
    • Line 5692: warning: exported method Tensor.MustLog10Out should have comment or be unexported (golint)
    • Line 5700: warning: exported method Tensor.MustLog1p should have comment or be unexported (golint)
    • Line 5708: warning: exported method Tensor.MustLog1p_ should have comment or be unexported (golint)
    • Line 5708: warning: don't use underscores in Go names; method MustLog1p_ should be MustLog1p (golint)
    • Line 5716: warning: exported method Tensor.MustLog1pOut should have comment or be unexported (golint)
    • Line 5724: warning: exported method Tensor.MustLog2 should have comment or be unexported (golint)
    • Line 5732: warning: exported method Tensor.MustLog2_ should have comment or be unexported (golint)
    • Line 5732: warning: don't use underscores in Go names; method MustLog2_ should be MustLog2 (golint)
    • Line 5740: warning: exported method Tensor.MustLog2Out should have comment or be unexported (golint)
    • Line 5748: warning: exported method Tensor.MustLog_ should have comment or be unexported (golint)
    • Line 5748: warning: don't use underscores in Go names; method MustLog_ should be MustLog (golint)
    • Line 5756: warning: exported method Tensor.MustLogNormal_ should have comment or be unexported (golint)
    • Line 5756: warning: don't use underscores in Go names; method MustLogNormal_ should be MustLogNormal (golint)
    • Line 5764: warning: exported method Tensor.MustLogOut should have comment or be unexported (golint)
    • Line 5772: warning: exported method Tensor.MustLogSigmoid should have comment or be unexported (golint)
    • Line 5780: warning: exported method Tensor.MustLogSigmoidBackward should have comment or be unexported (golint)
    • Line 5788: warning: exported method Tensor.MustLogSigmoidBackwardOut should have comment or be unexported (golint)
    • Line 5796: warning: exported method Tensor.MustLogSigmoidOut should have comment or be unexported (golint)
    • Line 5804: warning: exported method Tensor.MustLogSoftmax should have comment or be unexported (golint)
    • Line 5812: warning: exported method Tensor.MustLogaddexp should have comment or be unexported (golint)
    • Line 5820: warning: exported method Tensor.MustLogaddexp2 should have comment or be unexported (golint)
    • Line 5828: warning: exported method Tensor.MustLogaddexp2Out should have comment or be unexported (golint)
    • Line 5836: warning: exported method Tensor.MustLogaddexpOut should have comment or be unexported (golint)
    • Line 5844: warning: exported method Tensor.MustLogcumsumexp should have comment or be unexported (golint)
    • Line 5852: warning: exported method Tensor.MustLogcumsumexpOut should have comment or be unexported (golint)
    • Line 5860: warning: exported method Tensor.MustLogdet should have comment or be unexported (golint)
    • Line 5868: warning: exported method Tensor.MustLogicalAnd should have comment or be unexported (golint)
    • Line 5876: warning: exported method Tensor.MustLogicalAnd_ should have comment or be unexported (golint)
    • Line 5876: warning: don't use underscores in Go names; method MustLogicalAnd_ should be MustLogicalAnd (golint)
    • Line 5884: warning: exported method Tensor.MustLogicalAndOut should have comment or be unexported (golint)
    • Line 5892: warning: exported method Tensor.MustLogicalNot should have comment or be unexported (golint)
    • Line 5900: warning: exported method Tensor.MustLogicalNot_ should have comment or be unexported (golint)
    • Line 5900: warning: don't use underscores in Go names; method MustLogicalNot_ should be MustLogicalNot (golint)
    • Line 5908: warning: exported method Tensor.MustLogicalNotOut should have comment or be unexported (golint)
    • Line 5916: warning: exported method Tensor.MustLogicalOr should have comment or be unexported (golint)
    • Line 5924: warning: exported method Tensor.MustLogicalOr_ should have comment or be unexported (golint)
    • Line 5924: warning: don't use underscores in Go names; method MustLogicalOr_ should be MustLogicalOr (golint)
    • Line 5932: warning: exported method Tensor.MustLogicalOrOut should have comment or be unexported (golint)
    • Line 5940: warning: exported method Tensor.MustLogicalXor should have comment or be unexported (golint)
    • Line 5948: warning: exported method Tensor.MustLogicalXor_ should have comment or be unexported (golint)
    • Line 5948: warning: don't use underscores in Go names; method MustLogicalXor_ should be MustLogicalXor (golint)
    • Line 5956: warning: exported method Tensor.MustLogicalXorOut should have comment or be unexported (golint)
    • Line 5964: warning: exported method Tensor.MustLogit should have comment or be unexported (golint)
    • Line 5972: warning: exported method Tensor.MustLogit_ should have comment or be unexported (golint)
    • Line 5972: warning: don't use underscores in Go names; method MustLogit_ should be MustLogit (golint)
    • Line 5980: warning: exported method Tensor.MustLogitBackward should have comment or be unexported (golint)
    • Line 5988: warning: exported method Tensor.MustLogitBackwardOut should have comment or be unexported (golint)
    • Line 5996: warning: exported method Tensor.MustLogitOut should have comment or be unexported (golint)
    • Line 6004: warning: exported function MustLogspace should have comment or be unexported (golint)
    • Line 6012: warning: exported function MustLogspaceOut should have comment or be unexported (golint)
    • Line 6020: warning: exported method Tensor.MustLogsumexp should have comment or be unexported (golint)
    • Line 6028: warning: exported method Tensor.MustLogsumexpOut should have comment or be unexported (golint)
    • Line 6036: warning: exported method Tensor.MustLt should have comment or be unexported (golint)
    • Line 6044: warning: exported method Tensor.MustLt1 should have comment or be unexported (golint)
    • Line 6052: warning: exported method Tensor.MustLt_ should have comment or be unexported (golint)
    • Line 6052: warning: don't use underscores in Go names; method MustLt_ should be MustLt (golint)
    • Line 6060: warning: exported method Tensor.MustLt1_ should have comment or be unexported (golint)
    • Line 6060: warning: don't use underscores in Go names; method MustLt1_ should be MustLt1 (golint)
    • Line 6068: warning: exported method Tensor.MustLtOut should have comment or be unexported (golint)
    • Line 6076: warning: exported method Tensor.MustLtOut1 should have comment or be unexported (golint)
    • Line 6084: warning: exported method Tensor.MustLuSolve should have comment or be unexported (golint)
    • Line 6092: warning: exported method Tensor.MustLuSolveOut should have comment or be unexported (golint)
    • Line 6100: warning: exported function MustMarginRankingLoss should have comment or be unexported (golint)
    • Line 6108: warning: exported method Tensor.MustMaskedFill should have comment or be unexported (golint)
    • Line 6116: warning: exported method Tensor.MustMaskedFill1 should have comment or be unexported (golint)
    • Line 6124: warning: exported method Tensor.MustMaskedFill_ should have comment or be unexported (golint)
    • Line 6124: warning: don't use underscores in Go names; method MustMaskedFill_ should be MustMaskedFill (golint)
    • Line 6132: warning: exported method Tensor.MustMaskedFill1_ should have comment or be unexported (golint)
    • Line 6132: warning: don't use underscores in Go names; method MustMaskedFill1_ should be MustMaskedFill1 (golint)
    • Line 6140: warning: exported method Tensor.MustMaskedScatter should have comment or be unexported (golint)
    • Line 6148: warning: exported method Tensor.MustMaskedScatter_ should have comment or be unexported (golint)
    • Line 6148: warning: don't use underscores in Go names; method MustMaskedScatter_ should be MustMaskedScatter (golint)
    • Line 6156: warning: exported method Tensor.MustMaskedSelect should have comment or be unexported (golint)
    • Line 6164: warning: exported function MustMaskedSelectBackward should have comment or be unexported (golint)
    • Line 6172: warning: exported method Tensor.MustMaskedSelectOut should have comment or be unexported (golint)
    • Line 6180: warning: exported method Tensor.MustMatmul should have comment or be unexported (golint)
    • Line 6188: warning: exported method Tensor.MustMatmulOut should have comment or be unexported (golint)
    • Line 6196: warning: exported method Tensor.MustMatrixExp should have comment or be unexported (golint)
    • Line 6204: warning: exported method Tensor.MustMatrixExpBackward should have comment or be unexported (golint)
    • Line 6212: warning: exported method Tensor.MustMatrixPower should have comment or be unexported (golint)
    • Line 6220: warning: exported method Tensor.MustMatrixRank should have comment or be unexported (golint)
    • Line 6228: warning: exported method Tensor.MustMatrixRank1 should have comment or be unexported (golint)
    • Line 6236: warning: exported method Tensor.MustMax should have comment or be unexported (golint)
    • Line 6244: warning: exported method Tensor.MustMax1 should have comment or be unexported (golint)
    • Line 6252: warning: exported method Tensor.MustMaxOut should have comment or be unexported (golint)
    • Line 6260: warning: exported method Tensor.MustMaxPool1d should have comment or be unexported (golint)
    • Line 6268: warning: exported method Tensor.MustMaxPool2d should have comment or be unexported (golint)
    • Line 6276: warning: exported method Tensor.MustMaxPool2dWithIndicesBackward should have comment or be unexported (golint)
    • Line 6284: warning: exported method Tensor.MustMaxPool2dWithIndicesBackwardOut should have comment or be unexported (golint)
    • Line 6292: warning: exported method Tensor.MustMaxPool3d should have comment or be unexported (golint)
    • Line 6300: warning: exported method Tensor.MustMaxPool3dWithIndicesBackward should have comment or be unexported (golint)
    • Line 6308: warning: exported method Tensor.MustMaxPool3dWithIndicesBackwardOut should have comment or be unexported (golint)
    • Line 6316: warning: exported method Tensor.MustMaxUnpool2d should have comment or be unexported (golint)
    • Line 6324: warning: exported method Tensor.MustMaxUnpool2dBackward should have comment or be unexported (golint)
    • Line 6332: warning: exported method Tensor.MustMaxUnpool2dBackwardOut should have comment or be unexported (golint)
    • Line 6340: warning: exported method Tensor.MustMaxUnpool2dOut should have comment or be unexported (golint)
    • Line 6348: warning: exported method Tensor.MustMaxUnpool3d should have comment or be unexported (golint)
    • Line 6356: warning: exported method Tensor.MustMaxUnpool3dBackward should have comment or be unexported (golint)
    • Line 6364: warning: exported method Tensor.MustMaxUnpool3dBackwardOut should have comment or be unexported (golint)
    • Line 6372: warning: exported method Tensor.MustMaxUnpool3dOut should have comment or be unexported (golint)
    • Line 6380: warning: exported method Tensor.MustMaximum should have comment or be unexported (golint)
    • Line 6388: warning: exported method Tensor.MustMaximumOut should have comment or be unexported (golint)
    • Line 6396: warning: exported method Tensor.MustMean should have comment or be unexported (golint)
    • Line 6404: warning: exported method Tensor.MustMean1 should have comment or be unexported (golint)
    • Line 6412: warning: exported method Tensor.MustMeanOut should have comment or be unexported (golint)
    • Line 6420: warning: exported method Tensor.MustMedian should have comment or be unexported (golint)
    • Line 6428: warning: exported method Tensor.MustMin should have comment or be unexported (golint)
    • Line 6436: warning: exported method Tensor.MustMin1 should have comment or be unexported (golint)
    • Line 6444: warning: exported method Tensor.MustMinOut should have comment or be unexported (golint)
    • Line 6452: warning: exported method Tensor.MustMinimum should have comment or be unexported (golint)
    • Line 6460: warning: exported method Tensor.MustMinimumOut should have comment or be unexported (golint)
    • Line 6468: warning: exported method Tensor.MustMiopenConvolution should have comment or be unexported (golint)
    • Line 6476: warning: exported function MustMiopenConvolutionBackwardBias should have comment or be unexported (golint)
    • Line 6484: warning: exported function MustMiopenConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 6492: warning: exported method Tensor.MustMiopenConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 6500: warning: exported method Tensor.MustMiopenConvolutionTranspose should have comment or be unexported (golint)
    • Line 6508: warning: exported function MustMiopenConvolutionTransposeBackwardInput should have comment or be unexported (golint)
    • Line 6516: warning: exported method Tensor.MustMiopenConvolutionTransposeBackwardWeight should have comment or be unexported (golint)
    • Line 6524: warning: exported method Tensor.MustMiopenDepthwiseConvolution should have comment or be unexported (golint)
    • Line 6532: warning: exported function MustMiopenDepthwiseConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 6540: warning: exported method Tensor.MustMiopenDepthwiseConvolutionBackwardWeight should have comment or be unexported (golint)
    • Line 6548: warning: exported method Tensor.MustMkldnnAdaptiveAvgPool2d should have comment or be unexported (golint)
    • Line 6556: warning: exported method Tensor.MustMkldnnConvolution should have comment or be unexported (golint)
    • Line 6564: warning: exported function MustMkldnnConvolutionBackwardInput should have comment or be unexported (golint)
    • Line 6572: warning: exported function MustMkldnnLinear should have comment or be unexported (golint)
    • Line 6580: warning: exported method Tensor.MustMkldnnMaxPool2d should have comment or be unexported (golint)
    • Line 6588: warning: exported method Tensor.MustMkldnnMaxPool3d should have comment or be unexported (golint)
    • Line 6596: warning: exported method Tensor.MustMkldnnReorderConv2dWeight should have comment or be unexported (golint)
    • Line 6604: warning: exported method Tensor.MustMkldnnReorderConv3dWeight should have comment or be unexported (golint)
    • Line 6612: warning: exported method Tensor.MustMm should have comment or be unexported (golint)
    • Line 6620: warning: exported method Tensor.MustMmOut should have comment or be unexported (golint)
    • Line 6628: warning: exported method Tensor.MustMovedim should have comment or be unexported (golint)
    • Line 6636: warning: exported method Tensor.MustMovedim1 should have comment or be unexported (golint)
    • Line 6644: warning: exported method Tensor.MustMseLoss should have comment or be unexported (golint)
    • Line 6652: warning: exported method Tensor.MustMseLossBackward should have comment or be unexported (golint)
    • Line 6660: warning: exported method Tensor.MustMseLossBackwardOut should have comment or be unexported (golint)
    • Line 6668: warning: exported method Tensor.MustMseLossOut should have comment or be unexported (golint)
    • Line 6676: warning: exported method Tensor.MustMul should have comment or be unexported (golint)
    • Line 6684: warning: exported method Tensor.MustMul1 should have comment or be unexported (golint)
    • Line 6692: warning: exported method Tensor.MustMul_ should have comment or be unexported (golint)
    • Line 6692: warning: don't use underscores in Go names; method MustMul_ should be MustMul (golint)
    • Line 6700: warning: exported method Tensor.MustMul1_ should have comment or be unexported (golint)
    • Line 6700: warning: don't use underscores in Go names; method MustMul1_ should be MustMul1 (golint)
    • Line 6708: warning: exported method Tensor.MustMulOut should have comment or be unexported (golint)
    • Line 6716: warning: exported method Tensor.MustMultiMarginLossBackward should have comment or be unexported (golint)
    • Line 6724: warning: exported method Tensor.MustMultiMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 6732: warning: exported method Tensor.MustMultilabelMarginLoss should have comment or be unexported (golint)
    • Line 6740: warning: exported method Tensor.MustMultilabelMarginLossBackward should have comment or be unexported (golint)
    • Line 6748: warning: exported method Tensor.MustMultilabelMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 6756: warning: exported method Tensor.MustMultilabelMarginLossOut should have comment or be unexported (golint)
    • Line 6764: warning: exported method Tensor.MustMultinomial should have comment or be unexported (golint)
    • Line 6772: warning: exported method Tensor.MustMultinomialOut should have comment or be unexported (golint)
    • Line 6780: warning: exported method Tensor.MustMultiply should have comment or be unexported (golint)
    • Line 6788: warning: exported method Tensor.MustMultiply1 should have comment or be unexported (golint)
    • Line 6796: warning: exported method Tensor.MustMultiply_ should have comment or be unexported (golint)
    • Line 6796: warning: don't use underscores in Go names; method MustMultiply_ should be MustMultiply (golint)
    • Line 6804: warning: exported method Tensor.MustMultiply1_ should have comment or be unexported (golint)
    • Line 6804: warning: don't use underscores in Go names; method MustMultiply1_ should be MustMultiply1 (golint)
    • Line 6812: warning: exported method Tensor.MustMultiplyOut should have comment or be unexported (golint)
    • Line 6820: warning: exported method Tensor.MustMv should have comment or be unexported (golint)
    • Line 6828: warning: exported method Tensor.MustMvOut should have comment or be unexported (golint)
    • Line 6836: warning: exported method Tensor.MustMvlgamma should have comment or be unexported (golint)
    • Line 6844: warning: exported method Tensor.MustMvlgamma_ should have comment or be unexported (golint)
    • Line 6844: warning: don't use underscores in Go names; method MustMvlgamma_ should be MustMvlgamma (golint)
    • Line 6852: warning: exported method Tensor.MustNanquantile should have comment or be unexported (golint)
    • Line 6860: warning: exported method Tensor.MustNanquantile1 should have comment or be unexported (golint)
    • Line 6868: warning: exported method Tensor.MustNanquantileOut should have comment or be unexported (golint)
    • Line 6876: warning: exported method Tensor.MustNanquantileOut1 should have comment or be unexported (golint)
    • Line 6884: warning: exported method Tensor.MustNansum should have comment or be unexported (golint)
    • Line 6892: warning: exported method Tensor.MustNansum1 should have comment or be unexported (golint)
    • Line 6900: warning: exported method Tensor.MustNansumOut should have comment or be unexported (golint)
    • Line 6908: warning: exported method Tensor.MustNarrow should have comment or be unexported (golint)
    • Line 6916: warning: exported method Tensor.MustNarrow1 should have comment or be unexported (golint)
    • Line 6924: warning: exported method Tensor.MustNarrowCopy should have comment or be unexported (golint)
    • Line 6932: warning: exported method Tensor.MustNativeNorm should have comment or be unexported (golint)
    • Line 6940: warning: exported method Tensor.MustNativeNorm1 should have comment or be unexported (golint)
    • Line 6948: warning: exported method Tensor.MustNe should have comment or be unexported (golint)
    • Line 6956: warning: exported method Tensor.MustNe1 should have comment or be unexported (golint)
    • Line 6964: warning: exported method Tensor.MustNe_ should have comment or be unexported (golint)
    • Line 6964: warning: don't use underscores in Go names; method MustNe_ should be MustNe (golint)
    • Line 6972: warning: exported method Tensor.MustNe1_ should have comment or be unexported (golint)
    • Line 6972: warning: don't use underscores in Go names; method MustNe1_ should be MustNe1 (golint)
    • Line 6980: warning: exported method Tensor.MustNeOut should have comment or be unexported (golint)
    • Line 6988: warning: exported method Tensor.MustNeOut1 should have comment or be unexported (golint)
    • Line 6996: warning: exported method Tensor.MustNeg should have comment or be unexported (golint)
    • Line 7004: warning: exported method Tensor.MustNeg_ should have comment or be unexported (golint)
    • Line 7004: warning: don't use underscores in Go names; method MustNeg_ should be MustNeg (golint)
    • Line 7012: warning: exported method Tensor.MustNegOut should have comment or be unexported (golint)
    • Line 7020: warning: exported method Tensor.MustNegative should have comment or be unexported (golint)
    • Line 7028: warning: exported method Tensor.MustNegative_ should have comment or be unexported (golint)
    • Line 7028: warning: don't use underscores in Go names; method MustNegative_ should be MustNegative (golint)
    • Line 7036: warning: exported method Tensor.MustNegativeOut should have comment or be unexported (golint)
    • Line 7044: warning: exported method Tensor.MustNewEmpty should have comment or be unexported (golint)
    • Line 7052: warning: exported method Tensor.MustNewFull should have comment or be unexported (golint)
    • Line 7060: warning: exported method Tensor.MustNewZeros should have comment or be unexported (golint)
    • Line 7068: warning: exported method Tensor.MustNextafter should have comment or be unexported (golint)
    • Line 7076: warning: exported method Tensor.MustNextafter_ should have comment or be unexported (golint)
    • Line 7076: warning: don't use underscores in Go names; method MustNextafter_ should be MustNextafter (golint)
    • Line 7084: warning: exported method Tensor.MustNextafterOut should have comment or be unexported (golint)
    • Line 7092: warning: exported method Tensor.MustNllLoss should have comment or be unexported (golint)
    • Line 7100: warning: exported method Tensor.MustNllLoss2d should have comment or be unexported (golint)
    • Line 7108: warning: exported method Tensor.MustNllLoss2dBackward should have comment or be unexported (golint)
    • Line 7116: warning: exported method Tensor.MustNllLoss2dBackwardOut should have comment or be unexported (golint)
    • Line 7124: warning: exported method Tensor.MustNllLoss2dOut should have comment or be unexported (golint)
    • Line 7132: warning: exported method Tensor.MustNllLossBackward should have comment or be unexported (golint)
    • Line 7140: warning: exported method Tensor.MustNllLossBackwardOut should have comment or be unexported (golint)
    • Line 7148: warning: exported method Tensor.MustNllLossOut should have comment or be unexported (golint)
    • Line 7156: warning: exported method Tensor.MustNonzero should have comment or be unexported (golint)
    • Line 7164: warning: exported method Tensor.MustNonzeroOut should have comment or be unexported (golint)
    • Line 7172: warning: exported method Tensor.MustNorm should have comment or be unexported (golint)
    • Line 7180: warning: exported method Tensor.MustNorm1 should have comment or be unexported (golint)
    • Line 7188: warning: exported method Tensor.MustNorm2 should have comment or be unexported (golint)
    • Line 7196: warning: exported method Tensor.MustNorm3 should have comment or be unexported (golint)
    • Line 7204: warning: exported function MustNormExceptDim should have comment or be unexported (golint)
    • Line 7212: warning: exported method Tensor.MustNormOut should have comment or be unexported (golint)
    • Line 7220: warning: exported method Tensor.MustNormOut1 should have comment or be unexported (golint)
    • Line 7228: warning: exported method Tensor.MustNormal_ should have comment or be unexported (golint)
    • Line 7228: warning: don't use underscores in Go names; method MustNormal_ should be MustNormal (golint)
    • Line 7236: warning: exported function MustNormalOut should have comment or be unexported (golint)
    • Line 7244: warning: exported function MustNormalOut1 should have comment or be unexported (golint)
    • Line 7252: warning: exported function MustNormalOut2 should have comment or be unexported (golint)
    • Line 7260: warning: exported function MustNormalOut3 should have comment or be unexported (golint)
    • Line 7268: warning: exported method Tensor.MustNotEqual should have comment or be unexported (golint)
    • Line 7276: warning: exported method Tensor.MustNotEqual1 should have comment or be unexported (golint)
    • Line 7284: warning: exported method Tensor.MustNotEqual_ should have comment or be unexported (golint)
    • Line 7284: warning: don't use underscores in Go names; method MustNotEqual_ should be MustNotEqual (golint)
    • Line 7292: warning: exported method Tensor.MustNotEqual1_ should have comment or be unexported (golint)
    • Line 7292: warning: don't use underscores in Go names; method MustNotEqual1_ should be MustNotEqual1 (golint)
    • Line 7300: warning: exported method Tensor.MustNotEqualOut should have comment or be unexported (golint)
    • Line 7308: warning: exported method Tensor.MustNotEqualOut1 should have comment or be unexported (golint)
    • Line 7316: warning: exported method Tensor.MustNuclearNorm should have comment or be unexported (golint)
    • Line 7324: warning: exported method Tensor.MustNuclearNorm1 should have comment or be unexported (golint)
    • Line 7332: warning: exported method Tensor.MustNuclearNormOut should have comment or be unexported (golint)
    • Line 7340: warning: exported method Tensor.MustNuclearNormOut1 should have comment or be unexported (golint)
    • Line 7348: warning: exported method Tensor.MustNumpyT should have comment or be unexported (golint)
    • Line 7356: warning: exported method Tensor.MustOneHot should have comment or be unexported (golint)
    • Line 7364: warning: exported function MustOnes should have comment or be unexported (golint)
    • Line 7372: warning: exported method Tensor.MustOnesLike should have comment or be unexported (golint)
    • Line 7380: warning: exported function MustOnesOut should have comment or be unexported (golint)
    • Line 7388: warning: exported method Tensor.MustOrgqr should have comment or be unexported (golint)
    • Line 7396: warning: exported method Tensor.MustOrgqrOut should have comment or be unexported (golint)
    • Line 7404: warning: exported method Tensor.MustOrmqr should have comment or be unexported (golint)
    • Line 7412: warning: exported method Tensor.MustOrmqrOut should have comment or be unexported (golint)
    • Line 7420: warning: exported method Tensor.MustOuter should have comment or be unexported (golint)
    • Line 7428: warning: exported method Tensor.MustOuterOut should have comment or be unexported (golint)
    • Line 7436: warning: exported function MustPairwiseDistance should have comment or be unexported (golint)
    • Line 7444: warning: exported method Tensor.MustPdist should have comment or be unexported (golint)
    • Line 7452: warning: exported method Tensor.MustPermute should have comment or be unexported (golint)
    • Line 7460: warning: exported method Tensor.MustPinMemory should have comment or be unexported (golint)
    • Line 7468: warning: exported method Tensor.MustPinverse should have comment or be unexported (golint)
    • Line 7476: warning: exported method Tensor.MustPixelShuffle should have comment or be unexported (golint)
    • Line 7484: warning: exported method Tensor.MustPoisson should have comment or be unexported (golint)
    • Line 7492: warning: exported function MustPoissonNllLoss should have comment or be unexported (golint)
    • Line 7500: warning: exported function MustPolar should have comment or be unexported (golint)
    • Line 7508: warning: exported function MustPolarOut should have comment or be unexported (golint)
    • Line 7516: warning: exported method Tensor.MustPolygamma should have comment or be unexported (golint)
    • Line 7524: warning: exported method Tensor.MustPolygamma_ should have comment or be unexported (golint)
    • Line 7524: warning: don't use underscores in Go names; method MustPolygamma_ should be MustPolygamma (golint)
    • Line 7532: warning: exported method Tensor.MustPolygammaOut should have comment or be unexported (golint)
    • Line 7540: warning: exported method Tensor.MustPow should have comment or be unexported (golint)
    • Line 7548: warning: exported method Tensor.MustPow1 should have comment or be unexported (golint)
    • Line 7556: warning: exported function MustPow2 should have comment or be unexported (golint)
    • Line 7564: warning: exported method Tensor.MustPow_ should have comment or be unexported (golint)
    • Line 7564: warning: don't use underscores in Go names; method MustPow_ should be MustPow (golint)
    • Line 7572: warning: exported method Tensor.MustPow1_ should have comment or be unexported (golint)
    • Line 7572: warning: don't use underscores in Go names; method MustPow1_ should be MustPow1 (golint)
    • Line 7580: warning: exported method Tensor.MustPowOut should have comment or be unexported (golint)
    • Line 7588: warning: exported method Tensor.MustPowOut1 should have comment or be unexported (golint)
    • Line 7596: warning: exported function MustPowOut2 should have comment or be unexported (golint)
    • Line 7604: warning: exported method Tensor.MustPrelu should have comment or be unexported (golint)
    • Line 7612: warning: exported method Tensor.MustProd should have comment or be unexported (golint)
    • Line 7620: warning: exported method Tensor.MustProd1 should have comment or be unexported (golint)
    • Line 7628: warning: exported method Tensor.MustProdOut should have comment or be unexported (golint)
    • Line 7636: warning: exported method Tensor.MustPut_ should have comment or be unexported (golint)
    • Line 7636: warning: don't use underscores in Go names; method MustPut_ should be MustPut (golint)
    • Line 7644: warning: exported method Tensor.MustQPerChannelScales should have comment or be unexported (golint)
    • Line 7652: warning: exported method Tensor.MustQPerChannelZeroPoints should have comment or be unexported (golint)
    • Line 7660: warning: exported method Tensor.MustQuantile should have comment or be unexported (golint)
    • Line 7668: warning: exported method Tensor.MustQuantile1 should have comment or be unexported (golint)
    • Line 7676: warning: exported method Tensor.MustQuantileOut should have comment or be unexported (golint)
    • Line 7684: warning: exported method Tensor.MustQuantileOut1 should have comment or be unexported (golint)
    • Line 7692: warning: exported method Tensor.MustQuantizePerChannel should have comment or be unexported (golint)
    • Line 7700: warning: exported method Tensor.MustQuantizePerTensor should have comment or be unexported (golint)
    • Line 7708: warning: exported function MustQuantizedBatchNorm should have comment or be unexported (golint)
    • Line 7716: warning: exported function MustQuantizedGruCell should have comment or be unexported (golint)
    • Line 7724: warning: exported method Tensor.MustQuantizedMaxPool1d should have comment or be unexported (golint)
    • Line 7732: warning: exported method Tensor.MustQuantizedMaxPool2d should have comment or be unexported (golint)
    • Line 7740: warning: exported function MustQuantizedRnnReluCell should have comment or be unexported (golint)
    • Line 7748: warning: exported function MustQuantizedRnnTanhCell should have comment or be unexported (golint)
    • Line 7756: warning: exported method Tensor.MustRad2deg should have comment or be unexported (golint)
    • Line 7764: warning: exported method Tensor.MustRad2deg_ should have comment or be unexported (golint)
    • Line 7764: warning: don't use underscores in Go names; method MustRad2deg_ should be MustRad2deg (golint)
    • Line 7772: warning: exported method Tensor.MustRad2degOut should have comment or be unexported (golint)
    • Line 7780: warning: exported function MustRand should have comment or be unexported (golint)
    • Line 7788: warning: exported method Tensor.MustRandLike should have comment or be unexported (golint)
    • Line 7796: warning: exported function MustRandOut should have comment or be unexported (golint)
    • Line 7804: warning: exported function MustRandint should have comment or be unexported (golint)
    • Line 7812: warning: exported function MustRandint1 should have comment or be unexported (golint)
    • Line 7820: warning: exported method Tensor.MustRandintLike should have comment or be unexported (golint)
    • Line 7828: warning: exported method Tensor.MustRandintLike1 should have comment or be unexported (golint)
    • Line 7836: warning: exported function MustRandintOut should have comment or be unexported (golint)
    • Line 7844: warning: exported function MustRandintOut1 should have comment or be unexported (golint)
    • Line 7852: warning: exported function MustRandn should have comment or be unexported (golint)
    • Line 7860: warning: exported method Tensor.MustRandnLike should have comment or be unexported (golint)
    • Line 7868: warning: exported function MustRandnOut should have comment or be unexported (golint)
    • Line 7876: warning: exported method Tensor.MustRandom_ should have comment or be unexported (golint)
    • Line 7876: warning: don't use underscores in Go names; method MustRandom_ should be MustRandom (golint)
    • Line 7884: warning: exported method Tensor.MustRandom1_ should have comment or be unexported (golint)
    • Line 7884: warning: don't use underscores in Go names; method MustRandom1_ should be MustRandom1 (golint)
    • Line 7892: warning: exported method Tensor.MustRandom2 should have comment or be unexported (golint)
    • Line 7900: warning: exported function MustRandperm should have comment or be unexported (golint)
    • Line 7908: warning: exported function MustRandpermOut should have comment or be unexported (golint)
    • Line 7916: warning: exported function MustRange should have comment or be unexported (golint)
    • Line 7924: warning: exported function MustRange1 should have comment or be unexported (golint)
    • Line 7932: warning: exported function MustRangeOut should have comment or be unexported (golint)
    • Line 7940: warning: exported method Tensor.MustReal should have comment or be unexported (golint)
    • Line 7948: warning: exported method Tensor.MustReciprocal should have comment or be unexported (golint)
    • Line 7956: warning: exported method Tensor.MustReciprocal_ should have comment or be unexported (golint)
    • Line 7956: warning: don't use underscores in Go names; method MustReciprocal_ should be MustReciprocal (golint)
    • Line 7964: warning: exported method Tensor.MustReciprocalOut should have comment or be unexported (golint)
    • Line 7972: warning: exported method Tensor.MustReflectionPad1d should have comment or be unexported (golint)
    • Line 7980: warning: exported method Tensor.MustReflectionPad1dBackward should have comment or be unexported (golint)
    • Line 7988: warning: exported method Tensor.MustReflectionPad1dBackwardOut should have comment or be unexported (golint)
    • Line 7996: warning: exported method Tensor.MustReflectionPad1dOut should have comment or be unexported (golint)
    • Line 8004: warning: exported method Tensor.MustReflectionPad2d should have comment or be unexported (golint)
    • Line 8012: warning: exported method Tensor.MustReflectionPad2dBackward should have comment or be unexported (golint)
    • Line 8020: warning: exported method Tensor.MustReflectionPad2dBackwardOut should have comment or be unexported (golint)
    • Line 8028: warning: exported method Tensor.MustReflectionPad2dOut should have comment or be unexported (golint)
    • Line 8036: warning: exported method Tensor.MustRelu should have comment or be unexported (golint)
    • Line 8044: warning: exported method Tensor.MustRelu_ should have comment or be unexported (golint)
    • Line 8044: warning: don't use underscores in Go names; method MustRelu_ should be MustRelu (golint)
    • Line 8052: warning: exported method Tensor.MustRemainder should have comment or be unexported (golint)
    • Line 8060: warning: exported method Tensor.MustRemainder1 should have comment or be unexported (golint)
    • Line 8068: warning: exported method Tensor.MustRemainder_ should have comment or be unexported (golint)
    • Line 8068: warning: don't use underscores in Go names; method MustRemainder_ should be MustRemainder (golint)
    • Line 8076: warning: exported method Tensor.MustRemainder1_ should have comment or be unexported (golint)
    • Line 8076: warning: don't use underscores in Go names; method MustRemainder1_ should be MustRemainder1 (golint)
    • Line 8084: warning: exported method Tensor.MustRemainderOut should have comment or be unexported (golint)
    • Line 8092: warning: exported method Tensor.MustRemainderOut1 should have comment or be unexported (golint)
    • Line 8100: warning: exported method Tensor.MustRenorm should have comment or be unexported (golint)
    • Line 8108: warning: exported method Tensor.MustRenorm_ should have comment or be unexported (golint)
    • Line 8108: warning: don't use underscores in Go names; method MustRenorm_ should be MustRenorm (golint)
    • Line 8116: warning: exported method Tensor.MustRenormOut should have comment or be unexported (golint)
    • Line 8124: warning: exported method Tensor.MustRepeat should have comment or be unexported (golint)
    • Line 8132: warning: exported function MustRepeatInterleave should have comment or be unexported (golint)
    • Line 8140: warning: exported method Tensor.MustRepeatInterleave1 should have comment or be unexported (golint)
    • Line 8148: warning: exported method Tensor.MustRepeatInterleave2 should have comment or be unexported (golint)
    • Line 8156: warning: exported method Tensor.MustReplicationPad1d should have comment or be unexported (golint)
    • Line 8164: warning: exported method Tensor.MustReplicationPad1dBackward should have comment or be unexported (golint)
    • Line 8172: warning: exported method Tensor.MustReplicationPad1dBackwardOut should have comment or be unexported (golint)
    • Line 8180: warning: exported method Tensor.MustReplicationPad1dOut should have comment or be unexported (golint)
    • Line 8188: warning: exported method Tensor.MustReplicationPad2d should have comment or be unexported (golint)
    • Line 8196: warning: exported method Tensor.MustReplicationPad2dBackward should have comment or be unexported (golint)
    • Line 8204: warning: exported method Tensor.MustReplicationPad2dBackwardOut should have comment or be unexported (golint)
    • Line 8212: warning: exported method Tensor.MustReplicationPad2dOut should have comment or be unexported (golint)
    • Line 8220: warning: exported method Tensor.MustReplicationPad3d should have comment or be unexported (golint)
    • Line 8228: warning: exported method Tensor.MustReplicationPad3dBackward should have comment or be unexported (golint)
    • Line 8236: warning: exported method Tensor.MustReplicationPad3dBackwardOut should have comment or be unexported (golint)
    • Line 8244: warning: exported method Tensor.MustReplicationPad3dOut should have comment or be unexported (golint)
    • Line 8252: warning: exported method Tensor.MustRequiresGrad_ should have comment or be unexported (golint)
    • Line 8252: warning: don't use underscores in Go names; method MustRequiresGrad_ should be MustRequiresGrad (golint)
    • Line 8260: warning: exported method Tensor.MustReshape should have comment or be unexported (golint)
    • Line 8268: warning: exported method Tensor.MustReshapeAs should have comment or be unexported (golint)
    • Line 8276: warning: exported method Tensor.MustResize_ should have comment or be unexported (golint)
    • Line 8276: warning: don't use underscores in Go names; method MustResize_ should be MustResize (golint)
    • Line 8284: warning: exported method Tensor.MustResizeAs_ should have comment or be unexported (golint)
    • Line 8284: warning: don't use underscores in Go names; method MustResizeAs_ should be MustResizeAs (golint)
    • Line 8292: warning: exported method Tensor.MustRfft should have comment or be unexported (golint)
    • Line 8300: warning: exported function MustRnnReluCell should have comment or be unexported (golint)
    • Line 8308: warning: exported function MustRnnTanhCell should have comment or be unexported (golint)
    • Line 8316: warning: exported method Tensor.MustRoll should have comment or be unexported (golint)
    • Line 8324: warning: exported method Tensor.MustRot90 should have comment or be unexported (golint)
    • Line 8332: warning: exported method Tensor.MustRound should have comment or be unexported (golint)
    • Line 8340: warning: exported method Tensor.MustRound_ should have comment or be unexported (golint)
    • Line 8340: warning: don't use underscores in Go names; method MustRound_ should be MustRound (golint)
    • Line 8348: warning: exported method Tensor.MustRoundOut should have comment or be unexported (golint)
    • Line 8356: warning: exported method Tensor.MustRrelu should have comment or be unexported (golint)
    • Line 8364: warning: exported method Tensor.MustRrelu_ should have comment or be unexported (golint)
    • Line 8364: warning: don't use underscores in Go names; method MustRrelu_ should be MustRrelu (golint)
    • Line 8372: warning: exported method Tensor.MustRreluWithNoise should have comment or be unexported (golint)
    • Line 8380: warning: exported method Tensor.MustRreluWithNoise_ should have comment or be unexported (golint)
    • Line 8380: warning: don't use underscores in Go names; method MustRreluWithNoise_ should be MustRreluWithNoise (golint)
    • Line 8388: warning: exported method Tensor.MustRreluWithNoiseBackward should have comment or be unexported (golint)
    • Line 8396: warning: exported method Tensor.MustRreluWithNoiseOut should have comment or be unexported (golint)
    • Line 8404: warning: exported method Tensor.MustRsqrt should have comment or be unexported (golint)
    • Line 8412: warning: exported method Tensor.MustRsqrt_ should have comment or be unexported (golint)
    • Line 8412: warning: don't use underscores in Go names; method MustRsqrt_ should be MustRsqrt (golint)
    • Line 8420: warning: exported method Tensor.MustRsqrtOut should have comment or be unexported (golint)
    • Line 8428: warning: exported method Tensor.MustRsub should have comment or be unexported (golint)
    • Line 8436: warning: exported method Tensor.MustRsub1 should have comment or be unexported (golint)
    • Line 8444: warning: exported function MustScalarTensor should have comment or be unexported (golint)
    • Line 8452: warning: exported method Tensor.MustScatter should have comment or be unexported (golint)
    • Line 8460: warning: exported method Tensor.MustScatter1 should have comment or be unexported (golint)
    • Line 8468: warning: exported method Tensor.MustScatter_ should have comment or be unexported (golint)
    • Line 8468: warning: don't use underscores in Go names; method MustScatter_ should be MustScatter (golint)
    • Line 8476: warning: exported method Tensor.MustScatter1_ should have comment or be unexported (golint)
    • Line 8476: warning: don't use underscores in Go names; method MustScatter1_ should be MustScatter1 (golint)
    • Line 8484: warning: exported method Tensor.MustScatter2 should have comment or be unexported (golint)
    • Line 8492: warning: exported method Tensor.MustScatter3 should have comment or be unexported (golint)
    • Line 8500: warning: exported method Tensor.MustScatterAdd should have comment or be unexported (golint)
    • Line 8508: warning: exported method Tensor.MustScatterAdd_ should have comment or be unexported (golint)
    • Line 8508: warning: don't use underscores in Go names; method MustScatterAdd_ should be MustScatterAdd (golint)
    • Line 8516: warning: exported method Tensor.MustSearchsorted should have comment or be unexported (golint)
    • Line 8524: warning: exported function MustSearchsorted1 should have comment or be unexported (golint)
    • Line 8532: warning: exported method Tensor.MustSearchsortedOut should have comment or be unexported (golint)
    • Line 8540: warning: exported method Tensor.MustSelect should have comment or be unexported (golint)
    • Line 8548: warning: exported function MustSelectBackward should have comment or be unexported (golint)
    • Line 8556: warning: exported method Tensor.MustSelu should have comment or be unexported (golint)
    • Line 8564: warning: exported method Tensor.MustSelu_ should have comment or be unexported (golint)
    • Line 8564: warning: don't use underscores in Go names; method MustSelu_ should be MustSelu (golint)
    • Line 8572: warning: exported method Tensor.MustSet_ should have comment or be unexported (golint)
    • Line 8572: warning: don't use underscores in Go names; method MustSet_ should be MustSet (golint)
    • Line 8580: warning: exported method Tensor.MustSet1_ should have comment or be unexported (golint)
    • Line 8580: warning: don't use underscores in Go names; method MustSet1_ should be MustSet1 (golint)
    • Line 8588: warning: exported method Tensor.MustSetRequiresGrad should have comment or be unexported (golint)
    • Line 8596: warning: exported method Tensor.MustSgn should have comment or be unexported (golint)
    • Line 8604: warning: exported method Tensor.MustSgn_ should have comment or be unexported (golint)
    • Line 8604: warning: don't use underscores in Go names; method MustSgn_ should be MustSgn (golint)
    • Line 8612: warning: exported method Tensor.MustSgnOut should have comment or be unexported (golint)
    • Line 8620: warning: exported method Tensor.MustSigmoid should have comment or be unexported (golint)
    • Line 8628: warning: exported method Tensor.MustSigmoid_ should have comment or be unexported (golint)
    • Line 8628: warning: don't use underscores in Go names; method MustSigmoid_ should be MustSigmoid (golint)
    • Line 8636: warning: exported function MustSigmoidBackward should have comment or be unexported (golint)
    • Line 8644: warning: exported function MustSigmoidBackwardOut should have comment or be unexported (golint)
    • Line 8652: warning: exported method Tensor.MustSigmoidOut should have comment or be unexported (golint)
    • Line 8660: warning: exported method Tensor.MustSign should have comment or be unexported (golint)
    • Line 8668: warning: exported method Tensor.MustSign_ should have comment or be unexported (golint)
    • Line 8668: warning: don't use underscores in Go names; method MustSign_ should be MustSign (golint)
    • Line 8676: warning: exported method Tensor.MustSignOut should have comment or be unexported (golint)
    • Line 8684: warning: exported method Tensor.MustSignbit should have comment or be unexported (golint)
    • Line 8692: warning: exported method Tensor.MustSignbitOut should have comment or be unexported (golint)
    • Line 8700: warning: exported method Tensor.MustSilu should have comment or be unexported (golint)
    • Line 8708: warning: exported method Tensor.MustSilu_ should have comment or be unexported (golint)
    • Line 8708: warning: don't use underscores in Go names; method MustSilu_ should be MustSilu (golint)
    • Line 8716: warning: exported method Tensor.MustSiluBackward should have comment or be unexported (golint)
    • Line 8724: warning: exported method Tensor.MustSiluOut should have comment or be unexported (golint)
    • Line 8732: warning: exported method Tensor.MustSin should have comment or be unexported (golint)
    • Line 8740: warning: exported method Tensor.MustSin_ should have comment or be unexported (golint)
    • Line 8740: warning: don't use underscores in Go names; method MustSin_ should be MustSin (golint)
    • Line 8748: warning: exported method Tensor.MustSinOut should have comment or be unexported (golint)
    • Line 8756: warning: exported method Tensor.MustSinh should have comment or be unexported (golint)
    • Line 8764: warning: exported method Tensor.MustSinh_ should have comment or be unexported (golint)
    • Line 8764: warning: don't use underscores in Go names; method MustSinh_ should be MustSinh (golint)
    • Line 8772: warning: exported method Tensor.MustSinhOut should have comment or be unexported (golint)
    • Line 8780: warning: exported method Tensor.MustSlice should have comment or be unexported (golint)
    • Line 8788: warning: exported function MustSliceBackward should have comment or be unexported (golint)
    • Line 8796: warning: exported method Tensor.MustSlowConv3d should have comment or be unexported (golint)
    • Line 8804: warning: exported method Tensor.MustSlowConv3dOut should have comment or be unexported (golint)
    • Line 8812: warning: exported method Tensor.MustSlowConvDilated2d should have comment or be unexported (golint)
    • Line 8820: warning: exported method Tensor.MustSlowConvDilated3d should have comment or be unexported (golint)
    • Line 8828: warning: exported method Tensor.MustSlowConvTranspose2d should have comment or be unexported (golint)
    • Line 8836: warning: exported method Tensor.MustSlowConvTranspose2dOut should have comment or be unexported (golint)
    • Line 8844: warning: exported method Tensor.MustSlowConvTranspose3d should have comment or be unexported (golint)
    • Line 8852: warning: exported method Tensor.MustSlowConvTranspose3dOut should have comment or be unexported (golint)
    • Line 8860: warning: exported method Tensor.MustSmm should have comment or be unexported (golint)
    • Line 8868: warning: exported method Tensor.MustSmoothL1Loss should have comment or be unexported (golint)
    • Line 8876: warning: exported method Tensor.MustSmoothL1LossBackward should have comment or be unexported (golint)
    • Line 8884: warning: exported method Tensor.MustSmoothL1LossBackwardOut should have comment or be unexported (golint)
    • Line 8892: warning: exported method Tensor.MustSmoothL1LossOut should have comment or be unexported (golint)
    • Line 8900: warning: exported method Tensor.MustSoftMarginLoss should have comment or be unexported (golint)
    • Line 8908: warning: exported method Tensor.MustSoftMarginLossBackward should have comment or be unexported (golint)
    • Line 8916: warning: exported method Tensor.MustSoftMarginLossBackwardOut should have comment or be unexported (golint)
    • Line 8924: warning: exported method Tensor.MustSoftMarginLossOut should have comment or be unexported (golint)
    • Line 8932: warning: exported method Tensor.MustSoftmax should have comment or be unexported (golint)
    • Line 8940: warning: exported method Tensor.MustSoftplus should have comment or be unexported (golint)
    • Line 8948: warning: exported method Tensor.MustSoftplusBackward should have comment or be unexported (golint)
    • Line 8956: warning: exported method Tensor.MustSoftplusBackwardOut should have comment or be unexported (golint)
    • Line 8964: warning: exported method Tensor.MustSoftplusOut should have comment or be unexported (golint)
    • Line 8972: warning: exported method Tensor.MustSoftshrink should have comment or be unexported (golint)
    • Line 8980: warning: exported method Tensor.MustSoftshrinkBackward should have comment or be unexported (golint)
    • Line 8988: warning: exported method Tensor.MustSoftshrinkBackwardOut should have comment or be unexported (golint)
    • Line 8996: warning: exported method Tensor.MustSoftshrinkOut should have comment or be unexported (golint)
    • Line 9004: warning: exported function MustSparseCooTensor should have comment or be unexported (golint)
    • Line 9012: warning: exported function MustSparseCooTensor1 should have comment or be unexported (golint)
    • Line 9020: warning: exported function MustSparseCooTensor2 should have comment or be unexported (golint)
    • Line 9028: warning: exported method Tensor.MustSparseMask should have comment or be unexported (golint)
    • Line 9036: warning: exported method Tensor.MustSparseResize_ should have comment or be unexported (golint)
    • Line 9036: warning: don't use underscores in Go names; method MustSparseResize_ should be MustSparseResize (golint)
    • Line 9044: warning: exported method Tensor.MustSparseResizeAndClear_ should have comment or be unexported (golint)
    • Line 9044: warning: don't use underscores in Go names; method MustSparseResizeAndClear_ should be MustSparseResizeAndClear (golint)
    • Line 9052: warning: exported method Tensor.MustSqrt should have comment or be unexported (golint)
    • Line 9060: warning: exported method Tensor.MustSqrt_ should have comment or be unexported (golint)
    • Line 9060: warning: don't use underscores in Go names; method MustSqrt_ should be MustSqrt (golint)
    • Line 9068: warning: exported method Tensor.MustSqrtOut should have comment or be unexported (golint)
    • Line 9076: warning: exported method Tensor.MustSquare should have comment or be unexported (golint)
    • Line 9084: warning: exported method Tensor.MustSquare_ should have comment or be unexported (golint)
    • Line 9084: warning: don't use underscores in Go names; method MustSquare_ should be MustSquare (golint)
    • Line 9092: warning: exported method Tensor.MustSqueeze should have comment or be unexported (golint)
    • Line 9100: warning: exported method Tensor.MustSqueeze1 should have comment or be unexported (golint)
    • Line 9108: warning: exported method Tensor.MustSqueeze_ should have comment or be unexported (golint)
    • Line 9108: warning: don't use underscores in Go names; method MustSqueeze_ should be MustSqueeze (golint)
    • Line 9116: warning: exported method Tensor.MustSqueeze1_ should have comment or be unexported (golint)
    • Line 9116: warning: don't use underscores in Go names; method MustSqueeze1_ should be MustSqueeze1 (golint)
    • Line 9124: warning: exported method Tensor.MustSspaddmm should have comment or be unexported (golint)
    • Line 9132: warning: exported method Tensor.MustSspaddmmOut should have comment or be unexported (golint)
    • Line 9140: warning: exported function MustStack should have comment or be unexported (golint)
    • Line 9148: warning: exported function MustStackOut should have comment or be unexported (golint)
    • Line 9156: warning: exported method Tensor.MustStd should have comment or be unexported (golint)
    • Line 9164: warning: exported method Tensor.MustStd1 should have comment or be unexported (golint)
    • Line 9172: warning: exported method Tensor.MustStdOut should have comment or be unexported (golint)
    • Line 9180: warning: exported method Tensor.MustStft should have comment or be unexported (golint)
    • Line 9188: warning: exported method Tensor.MustSub should have comment or be unexported (golint)
    • Line 9196: warning: exported method Tensor.MustSub1 should have comment or be unexported (golint)
    • Line 9204: warning: exported method Tensor.MustSub_ should have comment or be unexported (golint)
    • Line 9204: warning: don't use underscores in Go names; method MustSub_ should be MustSub (golint)
    • Line 9212: warning: exported method Tensor.MustSub1_ should have comment or be unexported (golint)
    • Line 9212: warning: don't use underscores in Go names; method MustSub1_ should be MustSub1 (golint)
    • Line 9220: warning: exported method Tensor.MustSubOut should have comment or be unexported (golint)
    • Line 9228: warning: exported method Tensor.MustSubtract should have comment or be unexported (golint)
    • Line 9236: warning: exported method Tensor.MustSubtract1 should have comment or be unexported (golint)
    • Line 9244: warning: exported method Tensor.MustSubtract_ should have comment or be unexported (golint)
    • Line 9244: warning: don't use underscores in Go names; method MustSubtract_ should be MustSubtract (golint)
    • Line 9252: warning: exported method Tensor.MustSubtract1_ should have comment or be unexported (golint)
    • Line 9252: warning: don't use underscores in Go names; method MustSubtract1_ should be MustSubtract1 (golint)
    • Line 9260: warning: exported method Tensor.MustSubtractOut should have comment or be unexported (golint)
    • Line 9268: warning: exported method Tensor.MustSum should have comment or be unexported (golint)
    • Line 9276: warning: exported method Tensor.MustSum1 should have comment or be unexported (golint)
    • Line 9284: warning: exported method Tensor.MustSumOut should have comment or be unexported (golint)
    • Line 9292: warning: exported method Tensor.MustSumToSize should have comment or be unexported (golint)
    • Line 9300: warning: exported method Tensor.MustT should have comment or be unexported (golint)
    • Line 9308: warning: exported method Tensor.MustT_ should have comment or be unexported (golint)
    • Line 9308: warning: don't use underscores in Go names; method MustT_ should be MustT (golint)
    • Line 9316: warning: exported method Tensor.MustTake should have comment or be unexported (golint)
    • Line 9324: warning: exported function MustTakeBackward should have comment or be unexported (golint)
    • Line 9332: warning: exported method Tensor.MustTakeOut should have comment or be unexported (golint)
    • Line 9340: warning: exported method Tensor.MustTan should have comment or be unexported (golint)
    • Line 9348: warning: exported method Tensor.MustTan_ should have comment or be unexported (golint)
    • Line 9348: warning: don't use underscores in Go names; method MustTan_ should be MustTan (golint)
    • Line 9356: warning: exported method Tensor.MustTanOut should have comment or be unexported (golint)
    • Line 9364: warning: exported method Tensor.MustTanh should have comment or be unexported (golint)
    • Line 9372: warning: exported method Tensor.MustTanh_ should have comment or be unexported (golint)
    • Line 9372: warning: don't use underscores in Go names; method MustTanh_ should be MustTanh (golint)
    • Line 9380: warning: exported function MustTanhBackward should have comment or be unexported (golint)
    • Line 9388: warning: exported function MustTanhBackwardOut should have comment or be unexported (golint)
    • Line 9396: warning: exported method Tensor.MustTanhOut should have comment or be unexported (golint)
    • Line 9404: warning: exported method Tensor.MustTensordot should have comment or be unexported (golint)
    • Line 9412: warning: exported method Tensor.MustThreshold should have comment or be unexported (golint)
    • Line 9420: warning: exported method Tensor.MustThreshold_ should have comment or be unexported (golint)
    • Line 9420: warning: don't use underscores in Go names; method MustThreshold_ should be MustThreshold (golint)
    • Line 9428: warning: exported method Tensor.MustThresholdBackward should have comment or be unexported (golint)
    • Line 9436: warning: exported method Tensor.MustThresholdOut should have comment or be unexported (golint)
    • Line 9444: warning: exported method Tensor.MustTo should have comment or be unexported (golint)
    • Line 9452: warning: exported method Tensor.MustTo1 should have comment or be unexported (golint)
    • Line 9460: warning: exported method Tensor.MustTo2 should have comment or be unexported (golint)
    • Line 9468: warning: exported method Tensor.MustTo3 should have comment or be unexported (golint)
    • Line 9476: warning: exported method Tensor.MustTo4 should have comment or be unexported (golint)
    • Line 9484: warning: exported method Tensor.MustToDense should have comment or be unexported (golint)
    • Line 9492: warning: exported function MustToDenseBackward should have comment or be unexported (golint)
    • Line 9500: warning: exported method Tensor.MustToMkldnn should have comment or be unexported (golint)
    • Line 9508: warning: exported function MustToMkldnnBackward should have comment or be unexported (golint)
    • Line 9516: warning: exported method Tensor.MustToSparse should have comment or be unexported (golint)
    • Line 9524: warning: exported method Tensor.MustToSparse1 should have comment or be unexported (golint)
    • Line 9532: warning: exported method Tensor.MustTotype should have comment or be unexported (golint)
    • Line 9540: warning: exported method Tensor.MustTrace should have comment or be unexported (golint)
    • Line 9548: warning: exported function MustTraceBackward should have comment or be unexported (golint)
    • Line 9556: warning: exported method Tensor.MustTranspose should have comment or be unexported (golint)
    • Line 9564: warning: exported method Tensor.MustTranspose_ should have comment or be unexported (golint)
    • Line 9564: warning: don't use underscores in Go names; method MustTranspose_ should be MustTranspose (golint)
    • Line 9572: warning: exported function MustTrapz should have comment or be unexported (golint)
    • Line 9580: warning: exported function MustTrapz1 should have comment or be unexported (golint)
    • Line 9588: warning: exported method Tensor.MustTril should have comment or be unexported (golint)
    • Line 9596: warning: exported method Tensor.MustTril_ should have comment or be unexported (golint)
    • Line 9596: warning: don't use underscores in Go names; method MustTril_ should be MustTril (golint)
    • Line 9604: warning: exported function MustTrilIndices should have comment or be unexported (golint)
    • Line 9612: warning: exported method Tensor.MustTrilOut should have comment or be unexported (golint)
    • Line 9620: warning: exported function MustTripletMarginLoss should have comment or be unexported (golint)
    • Line 9628: warning: exported method Tensor.MustTriu should have comment or be unexported (golint)
    • Line 9636: warning: exported method Tensor.MustTriu_ should have comment or be unexported (golint)
    • Line 9636: warning: don't use underscores in Go names; method MustTriu_ should be MustTriu (golint)
    • Line 9644: warning: exported function MustTriuIndices should have comment or be unexported (golint)
    • Line 9652: warning: exported method Tensor.MustTriuOut should have comment or be unexported (golint)
    • Line 9660: warning: exported method Tensor.MustTrueDivide should have comment or be unexported (golint)
    • Line 9668: warning: exported method Tensor.MustTrueDivide1 should have comment or be unexported (golint)
    • Line 9676: warning: exported method Tensor.MustTrueDivide_ should have comment or be unexported (golint)
    • Line 9676: warning: don't use underscores in Go names; method MustTrueDivide_ should be MustTrueDivide (golint)
    • Line 9684: warning: exported method Tensor.MustTrueDivide1_ should have comment or be unexported (golint)
    • Line 9684: warning: don't use underscores in Go names; method MustTrueDivide1_ should be MustTrueDivide1 (golint)
    • Line 9692: warning: exported method Tensor.MustTrueDivideOut should have comment or be unexported (golint)
    • Line 9700: warning: exported method Tensor.MustTrunc should have comment or be unexported (golint)
    • Line 9708: warning: exported method Tensor.MustTrunc_ should have comment or be unexported (golint)
    • Line 9708: warning: don't use underscores in Go names; method MustTrunc_ should be MustTrunc (golint)
    • Line 9716: warning: exported method Tensor.MustTruncOut should have comment or be unexported (golint)
    • Line 9724: warning: exported method Tensor.MustTypeAs should have comment or be unexported (golint)
    • Line 9732: warning: exported method Tensor.MustUnflatten should have comment or be unexported (golint)
    • Line 9740: warning: exported method Tensor.MustUnfold should have comment or be unexported (golint)
    • Line 9748: warning: exported function MustUnfoldBackward should have comment or be unexported (golint)
    • Line 9756: warning: exported method Tensor.MustUniform_ should have comment or be unexported (golint)
    • Line 9756: warning: don't use underscores in Go names; method MustUniform_ should be MustUniform (golint)
    • Line 9764: warning: exported method Tensor.MustUnsqueeze should have comment or be unexported (golint)
    • Line 9772: warning: exported method Tensor.MustUnsqueeze_ should have comment or be unexported (golint)
    • Line 9772: warning: don't use underscores in Go names; method MustUnsqueeze_ should be MustUnsqueeze (golint)
    • Line 9780: warning: exported method Tensor.MustUpsampleBicubic2d should have comment or be unexported (golint)
    • Line 9788: warning: exported function MustUpsampleBicubic2dBackward should have comment or be unexported (golint)
    • Line 9796: warning: exported function MustUpsampleBicubic2dBackwardOut should have comment or be unexported (golint)
    • Line 9804: warning: exported method Tensor.MustUpsampleBicubic2dOut should have comment or be unexported (golint)
    • Line 9812: warning: exported method Tensor.MustUpsampleBilinear2d should have comment or be unexported (golint)
    • Line 9820: warning: exported function MustUpsampleBilinear2dBackward should have comment or be unexported (golint)
    • Line 9828: warning: exported function MustUpsampleBilinear2dBackwardOut should have comment or be unexported (golint)
    • Line 9836: warning: exported method Tensor.MustUpsampleBilinear2dOut should have comment or be unexported (golint)
    • Line 9844: warning: exported method Tensor.MustUpsampleLinear1d should have comment or be unexported (golint)
    • Line 9852: warning: exported function MustUpsampleLinear1dBackward should have comment or be unexported (golint)
    • Line 9860: warning: exported function MustUpsampleLinear1dBackwardOut should have comment or be unexported (golint)
    • Line 9868: warning: exported method Tensor.MustUpsampleLinear1dOut should have comment or be unexported (golint)
    • Line 9876: warning: exported method Tensor.MustUpsampleNearest1d should have comment or be unexported (golint)
    • Line 9884: warning: exported function MustUpsampleNearest1dBackward should have comment or be unexported (golint)
    • Line 9892: warning: exported function MustUpsampleNearest1dBackwardOut should have comment or be unexported (golint)
    • Line 9900: warning: exported method Tensor.MustUpsampleNearest1dOut should have comment or be unexported (golint)
    • Line 9908: warning: exported method Tensor.MustUpsampleNearest2d should have comment or be unexported (golint)
    • Line 9916: warning: exported function MustUpsampleNearest2dBackward should have comment or be unexported (golint)
    • Line 9924: warning: exported function MustUpsampleNearest2dBackwardOut should have comment or be unexported (golint)
    • Line 9932: warning: exported method Tensor.MustUpsampleNearest2dOut should have comment or be unexported (golint)
    • Line 9940: warning: exported method Tensor.MustUpsampleNearest3d should have comment or be unexported (golint)
    • Line 9948: warning: exported function MustUpsampleNearest3dBackward should have comment or be unexported (golint)
    • Line 9956: warning: exported function MustUpsampleNearest3dBackwardOut should have comment or be unexported (golint)
    • Line 9964: warning: exported method Tensor.MustUpsampleNearest3dOut should have comment or be unexported (golint)
    • Line 9972: warning: exported method Tensor.MustUpsampleTrilinear3d should have comment or be unexported (golint)
    • Line 9980: warning: exported function MustUpsampleTrilinear3dBackward should have comment or be unexported (golint)
    • Line 9988: warning: exported function MustUpsampleTrilinear3dBackwardOut should have comment or be unexported (golint)
    • Line 9996: warning: exported method Tensor.MustUpsampleTrilinear3dOut should have comment or be unexported (golint)
    • Line 10004: warning: exported function MustValueSelectingReductionBackward should have comment or be unexported (golint)
    • Line 10012: warning: exported method Tensor.MustValues should have comment or be unexported (golint)
    • Line 10020: warning: exported function MustVander should have comment or be unexported (golint)
    • Line 10028: warning: exported method Tensor.MustVar should have comment or be unexported (golint)
    • Line 10036: warning: exported method Tensor.MustVar1 should have comment or be unexported (golint)
    • Line 10044: warning: exported method Tensor.MustVarOut should have comment or be unexported (golint)
    • Line 10052: warning: exported method Tensor.MustVdot should have comment or be unexported (golint)
    • Line 10060: warning: exported method Tensor.MustVdotOut should have comment or be unexported (golint)
    • Line 10068: warning: exported method Tensor.MustView should have comment or be unexported (golint)
    • Line 10076: warning: exported method Tensor.MustViewAs should have comment or be unexported (golint)
    • Line 10084: warning: exported method Tensor.MustViewAsComplex should have comment or be unexported (golint)
    • Line 10092: warning: exported method Tensor.MustViewAsReal should have comment or be unexported (golint)
    • Line 10100: warning: exported function MustVstack should have comment or be unexported (golint)
    • Line 10108: warning: exported function MustVstackOut should have comment or be unexported (golint)
    • Line 10116: warning: exported method Tensor.MustWhere1 should have comment or be unexported (golint)
    • Line 10124: warning: exported function MustWhere2 should have comment or be unexported (golint)
    • Line 10132: warning: exported method Tensor.MustWhere3 should have comment or be unexported (golint)
    • Line 10140: warning: exported function MustWhere4 should have comment or be unexported (golint)
    • Line 10148: warning: exported method Tensor.MustZero_ should have comment or be unexported (golint)
    • Line 10148: warning: don't use underscores in Go names; method MustZero_ should be MustZero (golint)
    • Line 10156: warning: exported function MustZeros should have comment or be unexported (golint)
    • Line 10164: warning: exported method Tensor.MustZerosLike should have comment or be unexported (golint)
    • Line 10172: warning: exported function MustZerosOut should have comment or be unexported (golint)
    • gotch/tensor/tensor.go
    • Line 20: warning: exported type Tensor should have comment or be unexported (golint)
    • Line 35: warning: exported method Tensor.Dim should have comment or be unexported (golint)
    • Line 67: warning: exported method Tensor.MustSize should have comment or be unexported (golint)
    • Line 323: warning: exported method Tensor.DType should have comment or be unexported (golint)
    • Line 334: warning: exported method Tensor.Device should have comment or be unexported (golint)
    • Line 350: warning: exported method Tensor.MustDevice should have comment or be unexported (golint)
    • Line 359: warning: comment on exported method Tensor.Float64Value should be of the form "Float64Value ..." (golint)
    • Line 406: warning: exported method Tensor.MustFloat64Value should have comment or be unexported (golint)
    • Line 436: warning: exported method Tensor.MustInt64Value should have comment or be unexported (golint)
    • Line 455: warning: exported method Tensor.MustRequiresGrad should have comment or be unexported (golint)
    • Line 487: warning: exported method Tensor.MustDefined should have comment or be unexported (golint)
    • Line 529: warning: exported method Tensor.MustBackward should have comment or be unexported (golint)
    • Line 599: warning: don't use underscores in Go names; var elt_size_in_bytes should be eltSizeInBytes (golint)
    • Line 611: warning: exported method Tensor.MustCopyDataUint8 should have comment or be unexported (golint)
    • Line 670: warning: don't use underscores in Go names; var elt_size_in_bytes should be eltSizeInBytes (golint)
    • Line 746: warning: don't use underscores in Go names; func Copy_ should be Copy (golint)
    • Line 755: warning: don't use underscores in Go names; method Copy_ should be Copy (golint)
    • Line 899: warning: comment on exported function MustLoadMultiWithDevice should be of the form "MustLoadMultiWithDevice ..." (golint)
    • Line 1030: warning: exported function NoGrad1 should have comment or be unexported (golint)
    • Line 1057: warning: comment on exported function NewNoGradGuard should be of the form "NewNoGradGuard ..." (golint)
    • Line 1074: warning: exported method NoGradGuard.Enable should have comment or be unexported (golint)
    • Line 1083: warning: comment on exported const ReductionNone should be of the form "ReductionNone ..." (golint)
    • Line 1085: warning: comment on exported const ReductionMean should be of the form "ReductionMean ..." (golint)
    • Line 1087: warning: comment on exported const ReductionSum should be of the form "ReductionSum ..." (golint)
    • Line 1089: warning: comment on exported const ReductionOther should be of the form "ReductionOther ..." (golint)
    • Line 1093: warning: exported method Reduction.ToInt should have comment or be unexported (golint)
    • Line 1178: warning: exported method Tensor.ZeroPad2d should have comment or be unexported (golint)
    • Line 1187: warning: exported method Tensor.MustZeroPad2d should have comment or be unexported (golint)
    • Line 1216: warning: exported method Tensor.Swish should have comment or be unexported (golint)
    • Line 1223: warning: exported method Tensor.AvgPool2DDefault should have comment or be unexported (golint)
    • gotch/vision/resnet.go
    • Line 112: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 139: warning: comment on exported function ResNet18 should be of the form "ResNet18 ..." (golint)
    • Line 144: warning: exported function ResNet18NoFinalLayer should have comment or be unexported (golint)
    • Line 148: warning: exported function ResNet34 should have comment or be unexported (golint)
    • Line 152: warning: exported function ResNet34NoFinalLayer should have comment or be unexported (golint)
    • Line 234: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 260: warning: exported function ResNet50 should have comment or be unexported (golint)
    • Line 264: warning: exported function ResNet50NoFinalLayer should have comment or be unexported (golint)
    • Line 268: warning: exported function ResNet101 should have comment or be unexported (golint)
    • Line 272: warning: exported function ResNet101NoFinalLayer should have comment or be unexported (golint)
    • Line 276: warning: exported function ResNet152 should have comment or be unexported (golint)
    • Line 280: warning: exported function ResNet150NoFinalLayer should have comment or be unexported (golint)
    • gotch/tensor/iter.go
    • Line 10: warning: exported type Iterator should have comment or be unexported (golint)
    • Line 14: warning: exported type Iterable should have comment or be unexported (golint)
    • gotch/tensor/module.go
    • Line 106: warning: comment on exported method Tensor.ApplyT should be of the form "ApplyT ..." (golint)
    • Line 124: warning: exported type ModuleOption should have comment or be unexported (golint)
    • Line 126: warning: exported function WithModule should have comment or be unexported (golint)
    • Line 145: warning: exported type ModuleTOption should have comment or be unexported (golint)
    • Line 147: warning: exported function WithModuleT should have comment or be unexported (golint)
    • gotch/dtype.go
    • Line 95: warning: exported function DType2CInt should have comment or be unexported (golint)
    • Line 105: warning: exported method DType.CInt should have comment or be unexported (golint)
    • Line 114: warning: exported function CInt2DType should have comment or be unexported (golint)
    • Line 157: warning: exported type DTypeDevice should have comment or be unexported (golint)
    • Line 163: warning: exported var FloatCPU should have comment or be unexported (golint)
    • gotch/example/translation/main.go
    • Line 26: warning: exported var MaxLength should have comment or be unexported (golint)
    • Line 32: warning: exported type Encoder should have comment or be unexported (golint)
    • Line 54: warning: exported type Decoder should have comment or be unexported (golint)
    • Line 128: warning: exported type Model should have comment or be unexported (golint)
    • Line 247: warning: exported type LossStats should have comment or be unexported (golint)
    • gotch/nn/func.go
    • Line 9: warning: exported type Func should have comment or be unexported (golint)
    • Line 13: warning: exported function NewFunc should have comment or be unexported (golint)
    • Line 17: warning: comment on exported method Func.Forward should be of the form "Forward ..." (golint)
    • Line 30: warning: exported type FuncT should have comment or be unexported (golint)
    • Line 34: warning: exported function NewFuncT should have comment or be unexported (golint)
    • Line 38: warning: comment on exported method FuncT.ForwardT should be of the form "ForwardT ..." (golint)
    • gotch/vision/imagenet.go
    • Line 18: warning: exported type ImageNet should have comment or be unexported (golint)
    • Line 24: warning: exported function NewImageNet should have comment or be unexported (golint)
    • Line 32: warning: exported method ImageNet.Normalize should have comment or be unexported (golint)
    • Line 59: warning: exported method ImageNet.UnNormalize should have comment or be unexported (golint)
    • Line 109: warning: comment on exported method ImageNet.LoadImage should be of the form "LoadImage ..." (golint)
    • Line 308: warning: exported method ImageNet.ClassCount should have comment or be unexported (golint)
    • Line 1315: warning: exported method ImageNet.Classes should have comment or be unexported (golint)
    • Line 1319: warning: exported type TopItem should have comment or be unexported (golint)
    • Line 1324: warning: comment on exported method ImageNet.Top should be of the form "Top ..." (golint)

gocyclo90%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

    • gotch/tensor/jit.go
    • Line 439: warning: cyclomatic complexity 85 of function IValueFromC() is high (> 15) (gocyclo)
    • Line 169: warning: cyclomatic complexity 66 of function (*IValue).ToCIValue() is high (> 15) (gocyclo)
    • Line 53: warning: cyclomatic complexity 33 of function NewIValue() is high (> 15) (gocyclo)

ineffassign94%

IneffAssign detects ineffectual assignments in Go code.

    • gotch/dtype.go
    • Line 241: warning: ineffectual assignment to err (ineffassign)
    • Line 255: warning: ineffectual assignment to retVal (ineffassign)
    • Line 255: warning: ineffectual assignment to err (ineffassign)
    • Line 285: warning: ineffectual assignment to err (ineffassign)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell91%

Misspell Finds commonly misspelled English words

    • gotch/nn/rnn_test.go
    • Line 42: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 54: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 109: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 115: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 128: warning: "ouput" is a misspelling of "output" (misspell)
    • gotch/vision/imagenet.go
    • Line 325: warning: "mexicanus" is a misspelling of "mexicans" (misspell)
    • Line 435: warning: "americanus" is a misspelling of "americans" (misspell)
    • Line 608: warning: "americanus" is a misspelling of "americans" (misspell)
    • Line 608: warning: "americanus" is a misspelling of "americans" (misspell)