Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for inversion (4.02 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

    // legalization in the ODML conversion pipeline.
    void PopulateLegalizeTfQuantizationPatterns(MLIRContext* context,
                                                RewritePatternSet* patterns);
    
    /// Converts the provided Operation as well as all nested operations into HLO
    /// dialect using the conversion patterns registered by the HLO dialect. When
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. hack/golangci-strict.yaml

      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
            - ineffassign
    
        # SSA Extract calls are allowed in tests.
        - linters:
            - forbidigo
          text: should not be used because managedFields was removed
          path: _test.go$
    
        # The Kubernetes naming convention for conversion functions uses underscores
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/composite_op_round_trip.mlir

    // RUN: tf_tfl_translate --enable-hlo-to-tf-conversion --input-mlir %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s --check-prefix=CHECK-ROUNDTRIP
    
    
    module {
      func.func public @main( %arg0: tensor<i64>) ->  tensor<i64> {
        %0 = func.call @test_add_roundtrip(%arg0) : (tensor<i64>) -> tensor<i64>
    
        return %0 : tensor<i64>
      }
    
    
      // CHECK-LABEL: func.func private @test_add_roundtrip
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:40:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/InterpretationSequenceStepWithConversion.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.conversion
    
    import org.gradle.declarative.dsl.evaluation.EvaluationSchema
    import org.gradle.declarative.dsl.evaluation.InterpretationSequenceStep
    import org.gradle.internal.declarativedsl.mappingToJvm.RuntimeCustomAccessors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/webhook.go

    		istiolog.Infof("HTTPS port is disabled, multiplexing webhooks on the httpAddr %v", args.ServerOptions.HTTPAddr)
    		return
    	}
    
    	tlsConfig := &tls.Config{
    		GetCertificate: s.getIstiodCertificate,
    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/ProjectSchema.kt

    import org.gradle.internal.declarativedsl.evaluationSchema.DefaultInterpretationSequence
    import org.gradle.internal.declarativedsl.evaluationSchema.buildEvaluationAndConversionSchema
    import org.gradle.internal.declarativedsl.evaluator.conversion.EvaluationAndConversionSchema
    import org.gradle.internal.declarativedsl.software.softwareTypesWithPluginApplication
    import org.gradle.plugin.software.internal.SoftwareTypeRegistry
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1/types.go

    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration.cc

    limitations under the License.
    ==============================================================================*/
    
    // This file wraps TensorFlow Graph(Def) to MLIR module conversion into passes
    // to satisfy the API of MLIR pass registration. In order to do this, the
    // command-line option header is pulled in.
    
    #include <memory>
    #include <utility>
    
    #include "absl/container/flat_hash_set.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/conversion/DefaultEvaluationAndConversionSchema.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.declarativedsl.evaluator.conversion
    
    import org.gradle.declarative.dsl.evaluation.AnalysisStatementFilter
    import org.gradle.declarative.dsl.evaluation.OperationGenerationId
    import org.gradle.declarative.dsl.schema.AnalysisSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/strconv/atoi.go

    var ErrSyntax = errors.New("invalid syntax")
    
    // A NumError records a failed conversion.
    type NumError struct {
    	Func string // the failing function (ParseBool, ParseInt, ParseUint, ParseFloat, ParseComplex)
    	Num  string // the input
    	Err  error  // the reason the conversion failed (e.g. ErrRange, ErrSyntax, etc.)
    }
    
    func (e *NumError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top