Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 227 for hilite (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      line-height: 18px;
      cursor: default;
      font-family: "Google Sans", Arial, sans-serif;
      font-size: 12pt;
      z-index: 2;
    }
    /* Box highlighting via shadows to avoid size changes */
    .hilite { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    .hilite2 { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    /* Gap left between callers and callees */
    .separator {
      position: absolute;
      text-align: center;
      font-size: 12pt;
      font-weight: bold;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    #top table tr td:nth-child(6) {
      width: 100%;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
    }
    #flathdr1, #flathdr2, #cumhdr1, #cumhdr2, #namehdr {
      cursor: ns-resize;
    }
    .hilite {
      background-color: #ebf5fb;
      font-weight: bold;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/tflite-converter-issue.md

    2)  Reference [TensorFlow Lite Model Colab](https://colab.research.google.com/gist/ymodak/0dfeb28255e189c5c48d9093f296e9a8/tensorflow-lite-debugger-colab.ipynb): Demonstrate how to convert your TF model to a TF Lite model (with quantization, if used) and run TFLite Inference (if possible).
    
    ```
    (You can paste links or attach files by dragging & dropping them below)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/tflite-other.md

    name: TensorFlow Lite Other Issue description: Use this template to report any
    issue in TensorFlow Lite that is not about Converters, Play Services or Ops
    body: - type: dropdown id: issue-type attributes: label: Issue Type description:
    What type of issue would you like to report? multiple: false options: - Bug -
    Build/Install - Performance - Support - Feature Request - Documentation Feature
    Request - Documentation Bug - Others validations: required: true - type:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 29 22:28:29 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/debug/debug.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/tf_tfl_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/lite/core/model_builder.h"
    #include "tensorflow/lite/tools/optimize/reduced_precision_support.h"
    
    namespace mlir {
    namespace lite {
    namespace {
    
    
    TEST(SparsifyModelTest, MetadataIsAddedToOutputModel) {
      std::string expected_key = tflite::optimize::kTfLiteReducedPrecisionKey;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.h

    #include "absl/container/flat_hash_set.h"
    #include "flatbuffers/flatbuffer_builder.h"  // from @flatbuffers
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/lite/c/c_api_types.h"
    #include "tensorflow/lite/model.h"
    
    namespace mlir {
    namespace lite {
    
    // Supported resulting types from quantization process.
    enum class BufferType { QUANTIZED_INT8, QUANTIZED_FLOAT16 };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/FileUtilities.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    
    absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> ImportFlatbufferOrMlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.h

    #include "tensorflow/compiler/mlir/lite/metrics/error_collector.h"
    #include "tensorflow/compiler/mlir/lite/metrics/types_util.h"
    #include "tensorflow/lite/python/metrics/converter_error_data.pb.h"
    
    namespace mlir {
    namespace TFL {
    
    // Collects errors when running the pass manager.
    class ErrorCollectorInstrumentation : public PassInstrumentation {
      using ConverterErrorData = tflite::metrics::ConverterErrorData;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_tfl_passes.h

    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/lite/toco/toco_flags.pb.h"
    
    namespace tensorflow {
    
    // Add the TF to TFLite passes, specified in the pass_config, into a
    // pass_manager. The session object will be provided when the TF MLIR is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 06:14:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top