Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 170 for nilcheck (0.13 sec)

  1. tensorflow/compiler/mlir/tfr/tests/end2end.mlir

    // RUN: tfr-opt %s -tfr-decompose -tfr-raise-to-tf -canonicalize -verify-diagnostics -split-input-file | FileCheck %s
    
    //=================> User models, from GraphDef <====================
    
    // CHECK-LABEL: my_identity
    func.func @my_identity(%arg0: tensor<2x3xf32>) -> tensor<2x3xf32> {
      %0 = "tf.MyIdentity"(%arg0) : (tensor<2x3xf32>) -> tensor<2x3xf32>
      func.return %0 : tensor<2x3xf32>
    
    // CHECK-NEXT: return %arg0 : tensor<2x3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    		values.Exp.Mod(priv.D, values.Exp)
    
    		values.R = new(big.Int).Set(r)
    		values.Coeff = new(big.Int).ModInverse(r, prime)
    
    		r.Mul(r, prime)
    	}
    }
    
    const withCheck = true
    const noCheck = false
    
    // decrypt performs an RSA decryption of ciphertext into out. If check is true,
    // m^e is calculated and compared with ciphertext, in order to defend against
    // errors in the CRT computation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-insert-quantized-functions -quant-quantize-composite-functions | FileCheck %s
    
    module {
      func.func @conv(%arg0: tensor<1x2x2x3xf32>) -> (tensor<*xf32>, tensor<*xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/hoist_loop_invariant.mlir

    // RUN: tf-opt %s --tf-hoist-loop-invariant | FileCheck %s --dump-input=fail
    
    // CHECK-LABEL: hoist_loop_invariant
    // CHECK:       [[CST_0:%.*]] = "tf.Const"
    // CHECK-NEXT:  [[CST_1:%.*]] = "tf.Const"
    // CHECK:       [[RES_1:%.*]] = "tf.Add"([[CST_1]], [[CST_0]])
    // CHECK:       [[RES_2:%.*]] = "tf.Mul"([[RES_1]], [[CST_1]])
    // CHECK:       tf.WhileRegion
    // CHECK:       ^bb0
    // CHECK:       tf.OpA
    // CHECK:       ^bb0([[ARG_2:%[a-zA-Z0-9_]+]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 17:12:02 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/defer_activation_transpose.mlir

    // RUN: stablehlo-quant-opt %s -stablehlo-defer-activation-transpose \
    // RUN:   -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests that an `add(transpose(arg0), arg1)` pattern is converted to
    // `transpose(add(arg0, transpose(arg1)))`. The transpose in the activation is
    // deferred to the output of `stablehlo.add` and an extra transpose op is
    // inserted to the RHS to match the shape of the operand.
    
    // CHECK-LABEL: add_with_activation_transpose
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-embedding-program-key | FILECHECK_OPTS="" FileCheck %s
    
    // CHECK-LABEL: func @single_op_program_key
    func.func @single_op_program_key() {
      // CHECK: %[[COMPILE_LAUNCH:[0-9]*]]:2 = "tf_device.launch"
      // CHECK: TPUCompileMlir
      // CHECK: "tf.OpA"(%[[COMPILE_LAUNCH]]#1
      %0:2 = "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore.go

    		// Ignore Args since they can't be autos.
    		if v.Op.SymEffect() != SymNone && v.Op != OpArg {
    			panic("unhandled op with sym effect")
    		}
    
    		if v.Uses == 0 && v.Op != OpNilCheck && !v.Op.IsCall() && !v.Op.HasSideEffects() || len(args) == 0 {
    			// We need to keep nil checks even if they have no use.
    			// Also keep calls and values that have side effects.
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_resource_partitioning.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-tpu-resource-partition | FileCheck %s
    
    func.func private @computation(%arg0: tensor<i32>) -> tensor<i32>
    
    // CHECK-LABEL: func @read_write_resource
    // CHECK-SAME: ([[ARG0:%.+]]: tensor<!tf_type.resource<tensor<i32>>>, [[ARG1:%.+]]: tensor<!tf_type.resource<tensor<i32>>>)
    func.func @read_write_resource(%arg0: tensor<!tf_type.resource<tensor<i32>>>, %arg1: tensor<!tf_type.resource<tensor<i32>>>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt

    # CHECK: fake/user/code/file_C.py:27:1: error: 'tf.Conv2D' op attribute 'data_format' failed to satisfy constraint: 'NHWC' or 'NCHW' convnet data format
    # CHECK: fake/user/code/file_D.py:28:1: note: called from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 27 18:59:05 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/decompose-hybrid-quantization.mlir

    // RUN: tf-opt --tfl-decompose-hybrid-quantization --verify-each %s | FileCheck %s
    
    // CHECK-LABEL: @test_conv2d_float
    func.func @test_conv2d_float(%arg0: tensor<1x32x32x8xf32>) -> tensor<1x32x32x16xf32> {
      // CHECK-DAG: %[[VAL0:.+]] = "tfl.pseudo_const"() <{value = dense<42> : tensor<16x1x1x8xi8>}>
      // CHECK-DAG: %[[VAL1:.+]] = "tfl.pseudo_const"() <{value = dense<1> : tensor<16x1x1x8xi8>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top