deeplearning4j/deeplearning4j

View on GitHub
nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/autodiff/samediff/ControlFlow.java

Summary

Maintainability
D
2 days
Test Coverage

File ControlFlow.java has 315 lines of code (exceeds 250 allowed). Consider refactoring.
Open

/*
 *  ******************************************************************************
 *  *
 *  *
 *  * This program and the accompanying materials are made available under the

    Method whileLoop has 65 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public static SDVariable[] whileLoop(SameDiff sameDiff, String[] outputNames, final String loopName, @NonNull SDVariable[] loopVars,
                                             @NonNull SameDiffSingleLambda cond, @NonNull SameDiffLambda body) {
    
            final String frameName = sameDiff.newBlockName(loopName == null ? "while" : loopName);
    
    

      Method ifCond has 61 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static SDVariable ifCond(SameDiff sameDiff,String outputName, String ifName, @NonNull SameDiffNoArgSingleLambda cond,
                                          @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody){
      
              ifName = sameDiff.newBlockName(ifName == null ? "if" : ifName);
      
      

        Method ifCond has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

            public static SDVariable ifCond(SameDiff sameDiff,String outputName, String ifName, @NonNull SameDiffNoArgSingleLambda cond,
                                            @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody){
        
                ifName = sameDiff.newBlockName(ifName == null ? "if" : ifName);
        
        

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method loopWithConditions has 8 arguments (exceeds 4 allowed). Consider refactoring.
        Open

                    String[] outputVarNames,
                    String loopName,
                    SameDiff parent,
                    SameDiff functionBody,
                    String functionName,

          Method whileLoop has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              public static SDVariable[] whileLoop(SameDiff sameDiff, String[] outputNames, final String loopName, @NonNull SDVariable[] loopVars,
                                                   @NonNull SameDiffSingleLambda cond, @NonNull SameDiffLambda body) {

            Method ifCond has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public static SDVariable ifCond(SameDiff sameDiff,String outputName, String ifName, @NonNull SameDiffNoArgSingleLambda cond,
                                                @NonNull SameDiffNoArgSingleLambda trueBody, @NonNull SameDiffNoArgSingleLambda falseBody){

              Method loopBody has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  public static SameDiffLambda loopBody(SameDiff parent,
                                                        SameDiff functionBody,
                                                        String functionName,
                                                        String[] subGraphInputNames,
                                                        String[] subGraphOutputNames) {

                Avoid too many return statements within this method.
                Open

                            return e;

                  Avoid too many return statements within this method.
                  Open

                          return sameDiff.updateVariableNameAndReference(output, outputName);

                    Avoid too many return statements within this method.
                    Open

                                    return switches.get(argument.name())[0];

                      Avoid too many return statements within this method.
                      Open

                                      return argument;

                        Avoid too many return statements within this method.
                        Open

                                return sameDiff.updateVariableNamesAndReferences(exits, outputNames);

                          Avoid too many return statements within this method.
                          Open

                                      return s[0];

                            Method whileLoop has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                            Open

                                public static SDVariable[] whileLoop(SameDiff sameDiff, String[] outputNames, final String loopName, @NonNull SDVariable[] loopVars,
                                                                     @NonNull SameDiffSingleLambda cond, @NonNull SameDiffLambda body) {
                            
                                    final String frameName = sameDiff.newBlockName(loopName == null ? "while" : loopName);
                            
                            

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Similar blocks of code found in 2 locations. Consider refactoring.
                            Open

                                    if(declared2.contains(falseOut.name())) {
                                        SDVariable[] s = sameDiff.switchOp(falseOut, pred);
                                        switches.put(falseOut.name(), s);
                                        falseOut = s[0];
                                    }
                            nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/autodiff/samediff/ControlFlow.java on lines 192..196

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 50.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

                            Similar blocks of code found in 2 locations. Consider refactoring.
                            Open

                                    if(declared.contains(trueOut.name())) {
                                        SDVariable[] s = sameDiff.switchOp(trueOut, pred);
                                        switches.put(trueOut.name(), s);
                                        trueOut = s[1];
                                    }
                            nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/autodiff/samediff/ControlFlow.java on lines 219..223

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 50.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

                            Similar blocks of code found in 3 locations. Consider refactoring.
                            Open

                                        for(int i = 0; i < extraArgs.length; i++) {
                                            ret[i + 3] = extraArgs[i];
                                        }
                            python4j/python4j-core/src/main/java/org/nd4j/python4j/PythonProcess.java on lines 34..36
                            python4j/python4j-core/src/main/java/org/nd4j/python4j/PythonProcess.java on lines 48..50

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 42.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

                            Similar blocks of code found in 2 locations. Consider refactoring.
                            Open

                                        for(int i = 0; i < extraArgs.length; i++) {
                                            extraArgs[i] = inputs[i + 3];
                                        }
                            deeplearning4j/deeplearning4j-nn/src/main/java/org/deeplearning4j/preprocessors/ReshapePreprocessor.java on lines 93..95

                            Duplicated Code

                            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                            Tuning

                            This issue has a mass of 42.

                            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                            Refactorings

                            Further Reading

                            There are no issues that match your filters.

                            Category
                            Status