Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,632 for identity1 (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

      func.return
    }
    // CHECK-LABEL: empty_island_multiple_data_results
    // CHECK-SAME: (%[[ARG_0:.*]]: tensor<*xf32>, %[[ARG_1:.*]]: tensor<*xi32>)
    // CHECK: %[[IDENTITY_N:.*]]:2 = "tf.IdentityN"
    // CHECK-SAME: (%[[ARG_0]], %[[ARG_1]])
    // CHECK: tf_executor.yield %[[IDENTITY_N]]#0, %[[IDENTITY_N]]#1
    
    func.func @single_op_island_forward_block_arg(%arg0: tensor<?x?x?x?xbf16>) -> (tensor<2048xf32>, tensor<?x?x?x?xbf16>) {
      %0:2 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/jit/build_xla_ops_pass.cc

        return absl::OkStatus();
      }
    
      // Create a single IdentityN that is dead if and only if
      // `predicate_as_control` is dead.
      //
      // IdentityN is also special in that, unlike `Identity`, it does not place
      // int32 inputs in host memory.  Placing int32 inputs in host memory would
      // defeat the purpose of adding this indirection.
      ops::IdentityN identity_n(root.WithOpName("int32_id_n"), int32_inputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        auto identity = builder.create<TF::IdentityOp>(island.getLoc(),
                                                       operand.getType(), operand);
        yield.setOperand(0, identity.getOutput());
      } else {
        auto identity_n = builder.create<TF::IdentityNOp>(
            island.getLoc(), yield.getOperandTypes(), yield.getOperands());
        for (auto it : llvm::enumerate(identity_n.getResults()))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

        if (!all_of(variable_v2_op.getResult().getUsers(), [&variable_v2_op](
                                                               Operation *user) {
              if (!isa<IdentityOp>(user)) {
                variable_v2_op.emitOpError()
                    << "expects all users to be 'tf.Identity', but got user "
                    << user->getName();
                return false;
              }
              return true;
            })) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K 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