Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for statistics (0.49 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    When using your CI servers built in functions, you can use https://confluence.jetbrains.com/display/TCD10/Statistic+Charts[statistic charts] if you use Teamcity for your CI builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_custom_aggregation_op_to_quant_stats.cc

            {static_cast<float>(min.getValueAsDouble()),
             static_cast<float>(max.getValueAsDouble())});
        ElementsAttr axis_stats;
        IntegerAttr axis;
    
        quantfork::StatisticsOp stats_op = rewriter.create<quantfork::StatisticsOp>(
            op->getLoc(), op.getInput(), layer_stats, axis_stats, axis);
        op.getOutput().replaceAllUsesWith(stats_op.getResult());
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

      if (IsConst(op)) return std::nullopt;
    
      // The model may contain quant stats op which is unrelevant to the
      // execution.
      if (llvm::isa<mlir::func::ReturnOp, mlir::quantfork::StatisticsOp>(op))
        return std::nullopt;
    
      if (!HasValidHardwareTarget(op)) return std::nullopt;
    
      auto device = op->getAttrOfType<mlir::StringAttr>(mlir::TFL::tac::kDevice);
      if (device == nullptr) return std::nullopt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.cc

          return emitOpError() << "has incompatible specification " << outputSpec
                               << " and output type " << outputType;
        }
      }
      return success();
    }
    
    LogicalResult StatisticsOp::verify() {
      auto tensorArg = mlir::dyn_cast<TensorType>(getArg().getType());
      if (!tensorArg) return emitOpError("arg needs to be tensor type.");
    
      // Verify layerStats attribute.
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

          return emitOpError() << "has incompatible specification " << outputSpec
                               << " and output type " << outputType;
        }
      }
      return success();
    }
    
    LogicalResult StatisticsOp::verify() {
      auto tensorArg = mlir::dyn_cast<TensorType>(getArg().getType());
      if (!tensorArg) return emitOpError("arg needs to be tensor type.");
    
      // Verify layerStats attribute.
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/net/main_test.go

    		fmt.Fprintf(os.Stderr, "%v: %v\n", s, so)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    }
    
    func printSocketStats() {
    	sts := sw.Stats()
    	if len(sts) == 0 {
    		return
    	}
    	fmt.Fprintf(os.Stderr, "Socket statistical information:\n")
    	for _, st := range sts {
    		fmt.Fprintf(os.Stderr, "%v\n", st)
    	}
    	fmt.Fprintf(os.Stderr, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc_64bit.go

    	logPallocChunkPages,
    }
    
    // sysInit performs architecture-dependent initialization of fields
    // in pageAlloc. pageAlloc should be uninitialized except for sysStat
    // if any runtime statistic should be updated.
    func (p *pageAlloc) sysInit(test bool) {
    	// Reserve memory for each level. This will get mapped in
    	// as R/W by setArenas.
    	for l, shift := range levelShift {
    		entries := 1 << (heapAddrBits - shift)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top