Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for tfsplits (0.51 sec)

  1. cmd/test-utils_test.go

    	encodedResource := req.URL.RawPath
    	encodedQuery := req.URL.RawQuery
    	if encodedResource == "" {
    		splits := strings.SplitN(req.URL.Path, "?", 2)
    		encodedResource = splits[0]
    		if len(splits) == 2 {
    			encodedQuery = splits[1]
    		}
    	}
    
    	unescapedQueries, err := unescapeQueries(encodedQuery)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %1 = "tf.AddV2"(%arg1, %cst_1) {device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<i32>, tensor<i32>) -> tensor<i32>
      %3 = "tf.RaggedTensorToVariant"(%arg7) {RAGGED_RANK = 0 : i64, Tsplits = i64, Tvalues = i32, batched_input = false, device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<*xi32>) -> tensor<!tf_type.variant>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "";
    
      let arguments = (ins
        TF_StrTensor:$program_key,
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
        TF_Float32Tensor:$gains,
        TF_Int64Tensor:$splits,
        TF_Int32Tensor:$id_counts,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$num_replica,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

          tf_executor.fetch %outputs : tensor<f32>
        }
        return %0 : tensor<f32>
      }
    ```
    ### `-tf-executor-split-into-island-per-op`
    
    _Transform from TF control dialect to TF executor dialect._
    
    Splits an island with multiple ops into multiple islands (one per op). Does
    not create any control dependencies between new islands, and does not
    propagate control dependencies that potentially existed between the old
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    
    	// SplitPathList splits the path list into a slice of individual paths.
    	// If SplitPathList is nil, Import uses filepath.SplitList.
    	SplitPathList func(list string) []string
    
    	// IsAbsPath reports whether path is an absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    			}
    		}
    	}
    
    	if routeCache != nil {
    		routeCache.DestinationRules = dependentDestinationRules
    	}
    
    	return out
    }
    
    // separateVSHostsAndServices splits the virtual service hosts into Services (if they are found in the registry) and
    // plain non-registry hostnames
    func separateVSHostsAndServices(virtualService config.Config,
    	serviceRegistry map[host.Name]*model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	// module's selected version changes, we assume that it remains direct if the
    	// previous version was a direct dependency. That assumption might not hold in
    	// rare cases (such as if a dependency splits out a nested module, or merges a
    	// nested module back into a parent module).
    	direct map[string]bool
    
    	graphOnce sync.Once // guards writes to (but not reads from) graph
    	graph     atomic.Pointer[cachedGraph]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    // non-live pieces of partially live params.
    func PopulateABIInRegArgOps(f *Func) {
    	pri := f.ABISelf.ABIAnalyzeFuncType(f.Type)
    
    	// When manufacturing new slots that correspond to splits of
    	// composite parameters, we want to avoid creating a new sub-slot
    	// that differs from some existing sub-slot only by type, since
    	// the debug location analysis will treat that slot as a separate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    		d.Type = p.typeOrNil()
    	}
    
    	if d.Type == nil {
    		d.Type = p.badExpr()
    		p.syntaxError("in type declaration")
    		p.advance(_Semi, _Rparen)
    	}
    
    	return d
    }
    
    // extractName splits the expression x into (name, expr) if syntactically
    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    )
    
    func setOf(keys ...string) map[string]bool {
    	m := make(map[string]bool, len(keys))
    	for _, key := range keys {
    		m[key] = true
    	}
    	return m
    }
    
    // splitQuoted splits the string s around each instance of one or more consecutive
    // white space characters while taking into account quotes and escaping, and
    // returns an array of substrings of s or an empty list if s contains only white space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top