Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for VerifierT (0.65 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests for TensorFlow ops with custom verifiers.
    
    // TODO(hinsu): Remove tests for ops without custom verifiers. These tests were
    // added along with manual op definition and are obsolete now that the op
    // definitions are auto-generated.
    
    // TODO(hinsu): Move attribute and type tests to types.mlir file.
    //===--------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      auto output_element_type = output_type.getElementType();
    
      // We only handle float and int element type in the verifier currently
      // TODO(hanxiongwang): we can plan to handle more element type checks besides
      // int and float in the verifier
      if (input_type.hasStaticShape() && output_type.hasStaticShape() &&
          input_element_type.isIntOrFloat() && output_element_type.isIntOrFloat()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. src/crypto/x509/verify_test.go

    			}
    		}
    		return true
    	}
    
    	// Every expected chain should match one (or more) returned chain. We tolerate multiple
    	// matches, as due to root store semantics it is plausible that (at least on the system
    	// verifiers) multiple identical (looking) chains may be returned when two roots with the
    	// same subject are present.
    	for _, expectedChain := range test.expectedChains {
    		var match bool
    		for _, chain := range chains {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL)
    		return
    	}
    
    	switch rAuthType {
    	case authTypeStreamingSigned, authTypeStreamingSignedTrailer:
    		// Initialize stream signature verifier.
    		rd, s3Err = newSignV4ChunkedReader(r, rAuthType == authTypeStreamingSignedTrailer)
    		if s3Err != ErrNone {
    			writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL)
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    		c.claimToResponseMap[claim] = replace(response, &v)
    	}
    	c.wantErr = replace(c.wantErr, &v)
    	c.wantInitErr = replace(c.wantInitErr, &v)
    
    	if !c.fetchKeysFromRemote {
    		// Set the verifier to use the public key set instead of reading from a remote.
    		c.options.KeySet = &staticKeySet{keys: c.pubKeys}
    	}
    
    	if c.optsFunc != nil {
    		c.optsFunc(&c.options)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      return false;
    }
    
    bool ShapeInference::InferShapeForXlaHostComputeMlir(
        _XlaHostComputeMlirOp host_compute_op) {
      // Extract the module and function.
      // The '_XlaHostComputeMlir` verifier verifies that `host_mlir_module`
      // attribute is well formed, so we just return in case of an error in
      // extracting the host function since it should never occur.
      StringAttr host_module =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }
    
    //===----------------------------------------------------------------------===//
    // BatchMatMulOp
    //===----------------------------------------------------------------------===//
    
    // Verifier to check if following is true. Will perform the verification only if
    // the BatchMatMulOp inputs and output are RankedTensors
    // 1. The operands of a BatchMatMulOp are broadcast compatible
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OpDefinition.h"  // from @llvm-project
    #include "mlir/IR/SymbolTable.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "mlir/IR/Verifier.h"  // from @llvm-project
    #include "mlir/IR/Visitors.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top