Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for Decomposes (0.13 sec)

  1. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

                                        IsolatedFromAbove, Symbol]> {
      let summary = "TFR Function defines a composition of other ops";
    
      let description = [{
        Defines a function that can be used to decompose an TF function call to
        the invocation of a set of other TF ops.
    
        Syntax:
    
        ```
        op ::= `tfr.func` visibility? symbol-ref-id `(` argument-list `)` (`->`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        This pass is conservative in that it will mark all ops for outside compilation
        that can not be compiled for the device.  Exceptions for this are added for ops
        that will be rewritten or decomposed before compiling on device.
    
    
        For example, tf_device.cluster op with an unsupported op, tf.UnsupportedOp:
    
        ```mlir
        func @unsupported_op() -> tensor<i32> {
          %0 = "tf_device.cluster"() ( {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	ToRESTMapper() (meta.RESTMapper, error)
    	// ToRawKubeConfigLoader return kubeconfig loader as-is
    	ToRawKubeConfigLoader() clientcmd.ClientConfig
    }
    
    var _ RESTClientGetter = &ConfigFlags{}
    
    // ConfigFlags composes the set of values necessary
    // for obtaining a REST client config
    type ConfigFlags struct {
    	CacheDir   *string
    	KubeConfig *string
    
    	// config flags
    	ClusterName        *string
    	AuthInfoName       *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    		return i.returnSlice(inCopyStart, i.p)
    	} else if inCopyStart < i.p {
    		i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	}
    	return i.buf[:outp]
    doNorm:
    	// Insert what we have decomposed so far in the reorderBuffer.
    	// As we will only reorder, there will always be enough room.
    	i.rb.src.copySlice(i.buf[outCopyStart:], inCopyStart, i.p)
    	i.rb.insertDecomposed(i.buf[0:outp])
    	return doNormDecomposed(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    Composite builds allow you to:
    
    * Combine builds that are usually developed independently, for instance, when trying out a bug fix in a library that your application uses.
    * Decompose a large multi-project build into smaller, more isolated chunks that can be worked on independently or together as needed.
    
    A build that is included in a composite build is referred to as an *included build*.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/math/big/nat.go

    		// If the exponent is large, we use the Montgomery method for odd values,
    		// and a 4-bit, windowed exponentiation for powers of two,
    		// and a CRT-decomposed Montgomery method for the remaining values
    		// (even values times non-trivial odd values, which decompose into one
    		// instance of each of the first two cases).
    		if len(y) > 1 && !slow {
    			if m[0]&1 == 1 {
    				return z.expNNMontgomery(x, y, m)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          val ADAPTER =
            Adapters.sequence(
              "Point",
              Adapters.INTEGER_AS_LONG.withTag(tag = 0L).optional(),
              Adapters.INTEGER_AS_LONG.withTag(tag = 1L).optional(),
              decompose = { listOf(it.x, it.y) },
              construct = { Point(it[0] as Long?, it[1] as Long?) },
            )
        }
      }
    
      private fun date(s: String): Date {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/assign.go

    	var nodes ir.Nodes
    
    	// var s []T
    	s := typecheck.TempAt(base.Pos, ir.CurFunc, l1.Type())
    	nodes.Append(ir.NewAssignStmt(base.Pos, s, l1)) // s = l1
    
    	elemtype := s.Type().Elem()
    
    	// Decompose slice.
    	oldPtr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, s)
    	oldLen := ir.NewUnaryExpr(base.Pos, ir.OLEN, s)
    	oldCap := ir.NewUnaryExpr(base.Pos, ir.OCAP, s)
    
    	// Number of elements we are adding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/flag/flag.go

    // caller could create a flag that turns a comma-separated string into a slice
    // of strings by giving the slice the methods of [Value]; in particular, [Set] would
    // decompose the comma-separated string into the slice.
    func (f *FlagSet) Var(value Value, name string, usage string) {
    	// Flag must not begin "-" or contain "=".
    	if strings.HasPrefix(name, "-") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        for (auto v : return_op.getOperands()) {
          if (absl::c_count(return_value_from_host, v) == 0) {
            return_value_from_device.push_back(v);
          }
        }
      }
    }
    
    // Decompose control flow in `device_cluster` into device computation and host
    // (outside compiled) computation into two separate control flow ops with
    // communication between the device/host for data dependencies.  Both device and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top