Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 552 for tile (0.06 sec)

  1. tensorflow/cc/gradients/math_grad.cc

      auto tile_scaling = SafeDivHelper(scope, input_shape, output_shape_kept_dims);
    
      // grad = [[g1], [g2]]
      auto grad = Reshape(scope, grad_inputs[0], output_shape_kept_dims);
    
      // tile(grad, tile_scaling) = [[g1, g1, g1], [g2, g2, g2]]
      return Tile(scope, grad, tile_scaling);
    }
    
    Status SumGrad(const Scope& scope, const Operation& op,
                   const std::vector<Output>& grad_inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "TFL::HasOneUseOrUsedByOnlyBinaryOps($0)">>;
    
    // Pattern for skipping Tile if it is mainly for broadcasting and the
    // Op is already supporting broadcasting.
    multiclass FuseTileBroadcastIntoFollowingBinary<Op BinaryOp> {
      def FuseTileBroadcastToBinaryOp1#BinaryOp : Pat<
        (BinaryOp:$result (TFL_TileOp $input, (Arith_ConstantOp $tile)),
         $operand, $act_func),
        (BinaryOp $input, $operand, $act_func),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/time/time.go

    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    			// for more discussion.
    			if err == nil {
    				tick := time.NewTimer(time.Duration(tim) * time.Second)
    				done := make(chan error)
    				go func() {
    					done <- cmd.Wait()
    				}()
    				select {
    				case err = <-done:
    					// ok
    				case <-tick.C:
    					cmd.Process.Signal(os.Interrupt)
    					time.Sleep(1 * time.Second)
    					cmd.Process.Kill()
    					<-done
    					err = errTimeout
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

    # Decodes the base64 $Data string and writes it as binary to $File. Does
    # nothing if $File already exists and $REDO_STEPS is not set.
    function Write_PkiData {
      param (
        [parameter(Mandatory=$true)] [string] $Data,
        [parameter(Mandatory=$true)] [string] $File
      )
    
      if (-not (ShouldWrite-File $File)) {
        return
      }
    
      # This command writes out a PEM certificate file, analogous to "base64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `File`*
    | A single output file (not directory)
    
    | `@link:{javadocPath}/org/gradle/api/tasks/OutputDirectory.html[OutputDirectory]`
    | `File`*
    | A single output directory (not file)
    
    | `@link:{javadocPath}/org/gradle/api/tasks/OutputFiles.html[OutputFiles]`
    | `Map&lt;String, File&gt;`+++**+++ or `Iterable&lt;File&gt;`+++*+++
    | An iterable or map of output files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls_test.go

    			expectTransportSocket:      true,
    			expectTransportSocketMatch: false,
    			validateTLSContext: func(t *testing.T, ctx *tls.UpstreamTlsContext) {
    				rootName := "file-root:" + mutualTLSSettingsWithCerts.CaCertificates
    				certName := fmt.Sprintf("file-cert:%s~%s", mutualTLSSettingsWithCerts.ClientCertificate, mutualTLSSettingsWithCerts.PrivateKey)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix_test.go

    	return conf.writeAndUpdateWithLastCheckedTime(lines, time.Now().Add(time.Hour))
    }
    
    func (conf *resolvConfTest) writeAndUpdateWithLastCheckedTime(lines []string, lastChecked time.Time) error {
    	if err := conf.write(lines); err != nil {
    		return err
    	}
    	return conf.forceUpdate(conf.path, lastChecked)
    }
    
    func (conf *resolvConfTest) forceUpdate(name string, lastChecked time.Time) error {
    	dnsConf := dnsReadConfig(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	for _, file := range files {
    		if file.IsDir() {
    			continue
    		}
    		matches := restartCountLogFileRegex.FindStringSubmatch(file.Name())
    		if len(matches) == 0 {
    			continue
    		}
    		count, err := strconv.Atoi(matches[1])
    		if err != nil {
    			// unlikely kubelet created this file,
    			// likely custom file with random numbers as a name
    			continue
    		}
    		count++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top