Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 371 for hilite (0.14 sec)

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

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -emit-select-tf-ops -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main(tensor<4xcomplex<f64>>, tensor<4xcomplex<f64>>) -> tensor<4xcomplex<f64>> {
    ^bb0(%arg0: tensor<4xcomplex<f64>>, %arg1: tensor<4xcomplex<f64>>):
    // CHECK:  {
    // CHECK-NEXT:  version: 3,
    // CHECK-NEXT:  operator_codes: [ {
    // CHECK-NEXT:    deprecated_builtin_code: 32,
    // CHECK-NEXT:    custom_code: "FlexAdd",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/simple_hardware.cc

    #include "tensorflow/compiler/mlir/lite/experimental/tac/hardwares/simple_hardware.h"
    
    #include "tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h"
    #include "tensorflow/compiler/mlir/lite/experimental/tac/common/utils.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/utils/arithmetic_count_util.h"
    
    namespace mlir {
    namespace TFL {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }  // namespace TFL
    }  // namespace mlir
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_dialect.cc.inc"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_enums.cc.inc"
    #define GET_ATTRDEF_CLASSES
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_attrdefs.cc.inc"
    #define GET_OP_CLASSES
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.cc.inc"
    
    namespace mlir {
    namespace TFL {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2exec/tfl_while_op.mlir

    // Test to verify translation & export work as intended with runtime.
    
    // RUN: tf-opt --mlir-print-debuginfo --canonicalize --tfl-while-loop-outline %s | mlir-tflite-runner --dump-interpreter-state 2>&1 | FileCheck %s
    
    // Verify value computed:
    // ----------------------
    // CHECK: result: Tensor<type: FLOAT32, shape: 1, values: 96>
    // CHECK: pconst: Tensor<type: INT32, shape: , values: 1>
    
    // Verify tensors in interpreter state:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 19 17:11:31 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/bucketize.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main(tensor<3x2xf32>) -> tensor<3x2xi32> {
    ^bb0(%arg0: tensor<3x2xf32>):
      // CHECK:      {
      // CHECK-NEXT:     version: 3,
      // CHECK-NEXT:     operator_codes: [ {
      // CHECK-NEXT:       deprecated_builtin_code: 127,
      // CHECK-NEXT:       version: 1,
      // CHECK-NEXT:       builtin_code: BUCKETIZE
      // CHECK-NEXT:     } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. src/math/bits.go

    	return sign >= 0 && f > MaxFloat64 || sign <= 0 && f < -MaxFloat64
    }
    
    // normalize returns a normal number y and exponent exp
    // satisfying x == y × 2**exp. It assumes x is finite and non-zero.
    func normalize(x float64) (y float64, exp int) {
    	const SmallestNormal = 2.2250738585072014e-308 // 2**-1022
    	if Abs(x) < SmallestNormal {
    		return x * (1 << 52), -52
    	}
    	return x, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unsorted_segment_prod.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main(tensor<8xi32>, tensor<8xi32>, tensor<i32>) -> tensor<8xi32> {
    ^bb0(%arg0: tensor<8xi32>, %arg1: tensor<8xi32>, %arg2: tensor<i32>):
    // CHECK: {
    // CHECK-NEXT:   version: 3,
    // CHECK-NEXT:   operator_codes: [ {
    // CHECK-NEXT:     deprecated_builtin_code: 127,
    // CHECK-NEXT:     version: 1,
    // CHECK-NEXT:     builtin_code: UNSORTED_SEGMENT_PROD
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema.fbs

    //             Flatbuffers. Has backward compatibility with version 3, 3a and
    //             3b.
    
    namespace tflite;
    
    // This corresponds to the version.
    file_identifier "TFL3";
    // File extension of any written files.
    file_extension "tflite";
    
    // IMPORTANT: All new members of tables, enums and unions must be added at the
    // end to ensure backwards compatibility.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        } catch (UnsupportedOperationException expected) {
        }
      }
    
      /**
       * Verifies that an Iterator is unmodifiable.
       *
       * <p>This test only works with iterators that iterate over a finite set.
       */
      public static void assertIteratorIsUnmodifiable(Iterator<?> iterator) {
        while (iterator.hasNext()) {
          iterator.next();
          try {
            iterator.remove();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

      return TFL::ConstBytesAttr::get(builder->getContext(),
                                      StringRef(content.data(), content.size()));
    }
    
    // Fallbacks ops that are not supported by TF Quantization to TFLite Flex ops.
    class FallbackToFlexOps
        : public PassWrapper<FallbackToFlexOps, OperationPass<func::FuncOp>> {
     public:
      FallbackToFlexOps() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top