Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for convertIP (0.32 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %3 : tensor<1x2x!quant.uniform<i8:f32, 4.000000e+00:7>>
    }
    // Checks that the `stablehlo.dot_general` is not converted to
    // `tfl.fully_connected`. Also notice that the `stablehlo.transpose` and
    // `stablehlo.uniform_quantize` are converted separately.
    
    // CHECK: tfl.transpose
    // CHECK: stablehlo.dot_general
    // CHECK-NOT: tfl.fully_connected
    // CHECK: tfl.quantize
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        )
        converted_signature_map = save_model.get_signatures_from_saved_model(
            self._output_saved_model_path,
            signature_keys=signatures.keys(),
            tags=tags,
        )
    
        # The original and converted model should have the same signature map.
        self.assertAllInSet(
            list(original_signature_map.keys()), set(signatures.keys())
        )
        self.assertDictEqual(original_signature_map, converted_signature_map)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // an MLIR Module.
    //
    // The nodes defined in the graph are converted to a function called
    // 'func_name'. All library function definitions are converted to MLIR functions
    // in the module.
    class GraphDefImporter : public ImporterBase {
     public:
      // Main entry point: converts the given graph to an MLIR Module.
      static absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> Convert(
          mlir::MLIRContext* context, const Graph& graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <pre>
    *Point(p)        // same as *(Point(p))
    (*Point)(p)      // p is converted to *Point
    &lt;-chan int(c)    // same as &lt;-(chan int(c))
    (&lt;-chan int)(c)  // c is converted to &lt;-chan int
    func()(x)        // function signature func() x
    (func())(x)      // x is converted to func()
    (func() int)(x)  // x is converted to func() int
    func() int(x)    // x is converted to func() int (unambiguous)
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def NameAnonymousIteratorsPass : Pass<"tf-name-anonymous-iterators", "ModuleOp"> {
      let summary = "Converts anonymous iterators to named iterators";
      let description = [{
          This converts AnonymousIterator ops to Iterator, thus giving them a name.
          For example, this will convert
            %0 = "tf.AnonymousIteratorV3"() {...}
          to
            %0 = "tf.Iterator"() {shared_name = "_iterator1", ...}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        ConversionPatternRewriter& rewriter) {
      return failure();
    }
    
    // Converts a mhlo.reduce op with a mlho binary operation into a tensorflow
    // reduction operation. If the initial value can be ignored, then convert it
    // into a single TfReduceOp. Otherwise, convert it into a TfReduceOp followed by
    // a TfBinaryOp.
    // For example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      if (!status.ok()) {
        inst->emitError(
            Twine("failed to convert value attribute to tensor with error: " +
                  status.ToString()));
        return std::nullopt;
      }
    
      // TensorFlow and TensorFlow Lite use different string encoding formats.
      // Convert to TensorFlow Lite format is it's a constant string tensor.
      if (tensor.dtype() == tensorflow::DT_STRING) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	container := restful.NewContainer()
    	container.Router(restful.CurlyRouter{})
    	mux := container.ServeMux
    
    	template := APIGroupVersion{
    		Storage: storage,
    
    		Creater:         scheme,
    		Convertor:       scheme,
    		TypeConverter:   managedfields.NewDeducedTypeConverter(),
    		UnsafeConvertor: runtime.UnsafeObjectConvertor(scheme),
    		Defaulter:       scheme,
    		Typer:           scheme,
    		Namer:           namer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public int hashCode() {
          return Sets.hashCodeImpl(this);
        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
       * inverse view converts values using {@link BiMap#inverse bimap.inverse()}{@code .get()}.
       *
       * <p>To use a plain {@link Map} as a {@link Function}, see {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        public int hashCode() {
          return Sets.hashCodeImpl(this);
        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
       * inverse view converts values using {@link BiMap#inverse bimap.inverse()}{@code .get()}.
       *
       * <p>To use a plain {@link Map} as a {@link Function}, see {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top