Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,131 for convertOp (1.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert-tf-control-flow-to-scf.mlir

    // RUN: tf-opt -convert-tf-control-flow-to-scf %s | FileCheck %s
    
    // `tf.IfRegion` which returns values gets converted to `scf.if`.
    func.func private @test_if_then1(tensor<4xf32>) -> tensor<4xf32>
    func.func private @test_if_else1(tensor<4xf32>) -> tensor<4xf32>
    // CHECK-LABEL: func @test_supported_lowering_of_tf_if_region1
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<i1>, %[[ARG1:.*]]: tensor<4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/internal/typeconversion/NotationConverterToNotationParserAdapter.java

        private final NotationConverter<? super N, ? extends T> converter;
    
        public NotationConverterToNotationParserAdapter(NotationConverter<? super N, ? extends T> converter) {
            this.converter = converter;
        }
    
        @Override
        public T parseNotation(N notation) throws TypeConversionException {
            ResultImpl<T> result = new ResultImpl<>();
            converter.convert(notation, result);
            if (!result.hasResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 27 20:34:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. test/interface/convert.go

    Rob Pike <******@****.***> 1329633221 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/conversion/queryparams/convert.go

    	for i := 0; i < list.Len(); i++ {
    		addParam(values, tag, omitempty, list.Index(i))
    	}
    }
    
    // Convert takes an object and converts it to a url.Values object using JSON tags as
    // parameter names. Only top-level simple values, arrays, and slices are serialized.
    // Embedded structs, maps, etc. will not be serialized.
    func Convert(obj interface{}) (url.Values, error) {
    	result := url.Values{}
    	if obj == nil {
    		return result, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactory.java

                .converter(mavenArtifactMapNotationConverter)
                .converter(fileNotationConverter)
                .toComposite();
        }
    
        private class ArchiveTaskNotationConverter implements NotationConverter<AbstractArchiveTask, MavenArtifact> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/IvyArtifactNotationParserFactory.java

                    .toType(IvyArtifact.class)
                    .converter(archiveTaskNotationConverter)
                    .converter(publishArtifactNotationConverter)
                    .fromType(Provider.class, Cast.uncheckedCast(providerNotationConverter))
                    .converter(ivyArtifactMapNotationConverter)
                    .converter(fileNotationConverter)
                    .toComposite();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/reflect/type.go

    }
    
    func (t *rtype) ConvertibleTo(u Type) bool {
    	if u == nil {
    		panic("reflect: nil type passed to Type.ConvertibleTo")
    	}
    	return convertOp(u.common(), t.common()) != nil
    }
    
    func (t *rtype) Comparable() bool {
    	return t.t.Equal != nil
    }
    
    // implements reports whether the type V implements the interface type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	}
    	s.converter = conversion.NewConverter(nil)
    
    	// Enable couple default conversions by default.
    	utilruntime.Must(RegisterEmbeddedConversions(s))
    	utilruntime.Must(RegisterStringConversions(s))
    	return s
    }
    
    // Converter allows access to the converter for the scheme
    func (s *Scheme) Converter() *conversion.Converter {
    	return s.converter
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/resources/org/gradle/initialization/converted-types.txt

    Jendrik Johannes <******@****.***> 1610026931 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 08 10:41:04 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/stablehlo_quantizer_odml_oss.ipynb

            "    }\n",
            "converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir)\n",
            "converter.target_spec.supported_ops = [\n",
            "    tf.lite.OpsSet.SELECT_TF_OPS,  # enable TensorFlow ops.\n",
            "    tf.lite.OpsSet.TFLITE_BUILTINS,  # enable TFL ops.\n",
            "]\n",
            "converter.representative_dataset = calibration_dataset\n",
            "converter.optimizations = [tf.lite.Optimize.DEFAULT]\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 12 03:40:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top