Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 371 for hilite (0.14 sec)

  1. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/disable_builtin.mlir

    // RUN: not flatbuffer_translate -mlir-to-tflite-flatbuffer -emit-builtin-tflite-ops=false %s 2>&1 | FileCheck %s
    
    // CHECK: 'tfl.add' op is a TFLite builtin op but builtin emission is not enabled
    
    func.func @main(tensor<3x2xi32>) -> tensor<3x2xi32> {
    ^bb0(%arg0: tensor<3x2xi32>):
      %0 = "arith.constant"() {name = "Const2", value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 547 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/analyze_variables.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace TFL {
    namespace {
    
    #define GEN_PASS_DEF_ANALYZEVARIABLESPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // Attribute name to be added on the module to identify whether
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    #include "tensorflow/compiler/mlir/lite/flatbuffer_operator.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/offset_buffer.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/lite/schema/mutable/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

            .isWithin(ALLOWED_ERROR)
            .of(MANY_VALUES_MEAN);
        // For datasets of many double values created from an iterable, we test many combinations of
        // finite and non-finite values:
        for (ManyValues values : ALL_MANY_VALUES) {
          StatsAccumulator accumulator = new StatsAccumulator();
          StatsAccumulator accumulatorByAddAllStats = new StatsAccumulator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. src/math/big/ftoa.go

    // (The caller handles Inf before invoking fmtB.)
    func (x *Float) fmtB(buf []byte) []byte {
    	if x.form == zero {
    		return append(buf, '0')
    	}
    
    	if debugFloat && x.form != finite {
    		panic("non-finite float")
    	}
    	// x != 0
    
    	// adjust mantissa to use exactly x.prec bits
    	m := x.mant
    	switch w := uint32(len(x.mant)) * _W; {
    	case w < x.prec:
    		m = nat(nil).shl(m, uint(x.prec-w))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/sql-databases.md

    If you want to explore the SQLite database (file) directly, independently of FastAPI, to debug its contents, add tables, columns, records, modify data, etc. you can use <a href="https://sqlitebrowser.org/" class="external-link" target="_blank">DB Browser for SQLite</a>.
    
    It will look like this:
    
    <img src="/img/tutorial/sql-databases/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/Stats.java

       * is not guaranteed to return zero when the dataset consists of the same value multiple times,
       * due to numerical errors. However, it is guaranteed never to return a negative result.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/runtime_metadata_generated.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      bool outline_tf_while = false;
      // Whether to do shape inference.
      bool shape_inference = true;
      // Whether to do TFLite runtime verification.
      bool runtime_verification = true;
      // Whether to enable TFLite variables or not, this will allow
      // mutable variables and produce ReadVariable/AssignVariable ops in TFLite.
      bool enable_tflite_variables = false;
      // Whether to disable the variable freezing pass or not.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    bool IsStablehloOp(const tflite::OperatorCodeT &op_code);
    
    // Returns the MLIR op name for the flatbuffer operator corresponding to
    // `op_code`.
    std::string GetMlirOpNameFromOpCode(const ::tflite::OperatorCodeT &op_code);
    
    // Returns the builtin op code for the given MLIR operation on success; emits
    // error and returns std::nullopt on failure.
    std::optional<tflite::BuiltinOperator> GetBuiltinOpCode(Operation *mlir_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top