tensorflow/tensorflow

View on GitHub
tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java

Summary

Maintainability
C
1 day
Test Coverage

Method benchmarkSession has 51 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  private void benchmarkSession(boolean benchmarkClassification) throws IOException {
    try {
      initializeTest(benchmarkClassification);
    } catch (IOException e) {
      Log.e(TAG, "Can't initialize benchmarker.", e);
Severity: Major
Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 2 hrs to fix

    Method benchmarkSession has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

      private void benchmarkSession(boolean benchmarkClassification) throws IOException {
        try {
          initializeTest(benchmarkClassification);
        } catch (IOException e) {
          Log.e(TAG, "Can't initialize benchmarker.", e);
    Severity: Minor
    Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 1 hr to fix

    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 doTestIteration has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      public Boolean doTestIteration() throws IOException, InterruptedException {
        if (benchmarker == null) {
          throw new RuntimeException("Benchmarker has not been initialized.");
        }
        if (benchmarker.shouldStop()) {
    Severity: Minor
    Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 1 hr to fix

      Method readCpusAllowedMask has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        public static int readCpusAllowedMask() throws IOException {
          // Determine how many CPUs there are total
          final String pathname = "/proc/self/status";
          final String resultPrefix = "Cpus_allowed:";
          File file = new File(pathname);
      Severity: Minor
      Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 1 hr to fix

        Method setProcessorAffinity has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          @SuppressWarnings("RuntimeExec")
          private static void setProcessorAffinity(int mask) throws IOException {
            int myPid = Process.myPid();
            Log.i(TAG, String.format("Setting processor affinity to 0x%02x", mask));
        
        
        Severity: Minor
        Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 1 hr to fix

          Method setProcessorAffinity has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

            @SuppressWarnings("RuntimeExec")
            private static void setProcessorAffinity(int mask) throws IOException {
              int myPid = Process.myPid();
              Log.i(TAG, String.format("Setting processor affinity to 0x%02x", mask));
          
          
          Severity: Minor
          Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 45 mins to fix

          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 doTestIteration has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

            public Boolean doTestIteration() throws IOException, InterruptedException {
              if (benchmarker == null) {
                throw new RuntimeException("Benchmarker has not been initialized.");
              }
              if (benchmarker.shouldStop()) {
          Severity: Minor
          Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 45 mins to fix

          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 readCpusAllowedMask has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

            public static int readCpusAllowedMask() throws IOException {
              // Determine how many CPUs there are total
              final String pathname = "/proc/self/status";
              final String resultPrefix = "Cpus_allowed:";
              File file = new File(pathname);
          Severity: Minor
          Found in tensorflow/lite/java/ovic/demo/app/OvicBenchmarkerActivity.java - About 25 mins to fix

          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

          There are no issues that match your filters.

          Category
          Status