Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 681 for identity1 (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-scalar-input.pbtxt

    # CHECK-SAME:  control_outputs = ""
    # CHECK-SAME:  inputs = "input"
    # CHECK-SAME:  outputs = "out:1,out"
    
    # CHECK:           tf.Relu
    # CHECK:           %[[IDENTITY:[a-z_0-9]+]]:2, {{.*}} = tf_executor.island wraps "tf.IdentityN"
    # CHECK:           etch %[[IDENTITY]]#1, %[[IDENTITY]]#0
    
    node {
      name: "input"
      op: "Placeholder"
      device: "/device:CPU:0"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/convert_tpu_model_to_cpu.mlir

    // CHECK: %[[conv:.*]] = "tf.Conv2D"(%[[ARG0]], %[[cast]])
    // CHECK: %[[identity:.*]] = "tf.IdentityN"(%[[conv]]) {device = ""} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xf32>
    // CHECK: return %[[identity]] : tensor<1x3x2x2xf32>
    
    // -----
    
    // Tests that `tf.BatchFunction` is inlined.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. docs/sts/web-identity.py

    Harshavardhana <******@****.***> 1627436271 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. docs/sts/web-identity.go

    jiuker <******@****.***> 1684487613 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf-while.mlir

    func.func @while_main(%arg0: tensor<?x256x256xf32>) -> (tensor<i32>, tensor<256x256xf32>, tensor<?x256x256xf32>) attributes {tf.entry_function = {inputs = "input", outputs = "Identity,Identity_1,Identity_2"}} {
      %cst = arith.constant dense<1.000000e+00> : tensor<256x256xf32>
      %cst_0 = arith.constant dense<0> : tensor<i32>
      %cst_1 = arith.constant dense<-1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.h

    // By removing identity ops, constant operands with dynamic shapes have static
    // shape information which is necessary for correct pattern matching in this
    // pass.
    struct RemoveIdentity : public OpRewritePattern<TF::IdentityOp> {
      using OpRewritePattern<TF::IdentityOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::IdentityOp identity,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/device-arg-retval-attr.pbtxt

        key: "index"
        value {
          i: 1
        }
      }
    }
    node {
      name: "identity"
      op: "IdentityN"
      input: "args_0"
      input: "args_1"
      attr: {
        key: "T"
        value: {
          list: {
            type: DT_FLOAT
            type: DT_INT32
          }
        }
      }
    }
    node {
      name: "rets_0"
      op: "_Retval"
      input: "identity:0"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 07 17:45:22 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

        // H2D transfer kernels. So fold the tf.Identity op if:
        // * the identity op is placed on TPU, and
        // * the arg to the identity op is produced by a TPUExecuteOp.
        if (op_device && op_device.getValue().contains("TPU")) {
          return true;
        }
    
        Operation *def_op = arg.getDefiningOp();
        // If the arg to this identity op is the arg of a function, there's no
        // defining op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

                    IdentityContext identityContext = createIdentityContextInternal(work, context);
                    Identity identity = identityContext.getIdentity();
                    operationContext.setResult(new Operation.Result() {
                        @Override
                        public Identity getIdentity() {
                            return identity;
                        }
                    });
                    return identityContext;
                },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. security/pkg/pki/util/san_test.go

    	"net/netip"
    	"reflect"
    	"testing"
    )
    
    func getSANExtension(identites []Identity, t *testing.T) *pkix.Extension {
    	ext, err := BuildSANExtension(identites)
    	if err != nil {
    		t.Errorf("A unexpected error has been encountered (error: %v)", err)
    	}
    	return ext
    }
    
    func TestBuildSubjectAltNameExtension(t *testing.T) {
    	uriIdentity := Identity{Type: TypeURI, Value: []byte("spiffe://test.domain.com/ns/default/sa/default")}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top