Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for tfsplits (0.16 sec)

  1. build-logic/cleanup/src/main/kotlin/gradlebuild/testing/services/BuildBucketProvider.kt

                val content = parameters.repoRoot.file("test-splits/include-test-classes.properties").get().asFile.readText()
                println("Tests to be included:\n$content")
                IncludeTestClassProvider(readTestClasses(content))
            }
            parameters.excludeTestClasses.get().isNotBlank() -> {
                val content = parameters.repoRoot.file("test-splits/exclude-test-classes.properties").get().asFile.readText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 06:28:57 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/linalg_grad.cc

      std::vector<absl::string_view> splits = absl::StrSplit(subscripts, kEllipsis);
      auto index = splits[0].find(label);
      if (index != splits[0].npos) {
        return index;
      }
      if (splits.size() < 2) {
        return absl::nullopt;
      }
      index = splits[1].find(label);
      if (index != splits[1].npos) {
        return index - splits[1].length();
      }
      return absl::nullopt;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // Splits the weights into 4: i, f, c, o.
      const int splits = 4;
    
      Operation* weights_array;
      if (failed(CreateEqualSizeSplitVOp(transposed_weight_kernel, 0, splits,
                                         func_op.getLoc(), builder,
                                         &weights_array)))
        return failure();
    
      // Splits the recurrent_weights into 4:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/encoding/json/tags.go

    package json
    
    import (
    	"strings"
    )
    
    // tagOptions is the string following a comma in a struct field's "json"
    // tag, or the empty string. It does not include the leading comma.
    type tagOptions string
    
    // parseTag splits a struct field's json tag into its name and
    // comma-separated options.
    func parseTag(tag string) (string, tagOptions) {
    	tag, opt, _ := strings.Cut(tag, ",")
    	return tag, tagOptions(opt)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 972 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_pgo_issue66218.txt

    # Test that pgo properly splits off the Imports field so that list doesn't alias
    # the non-pgo variant's slice when it modifies the pgo variant's Imports field to
    # add the [.ForMain] suffix.
    
    go list -f 'ImportPath: "{{.ImportPath}}", Imports: "{{.Imports}}", ImportMap: "{{.ImportMap}}"' m/a m/b
    cmp stdout want
    
    -- want --
    ImportPath: "m/a", Imports: "[m/b [m/a]]", ImportMap: "map[m/b:m/b [m/a]]"
    ImportPath: "m/b", Imports: "[m/c]", ImportMap: "map[]"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 615 bytes
    - Viewed (0)
  6. src/os/exec_windows.go

    }
    
    // appendBSBytes appends n '\\' bytes to b and returns the resulting slice.
    func appendBSBytes(b []byte, n int) []byte {
    	for ; n > 0; n-- {
    		b = append(b, '\\')
    	}
    	return b
    }
    
    // readNextArg splits command line string cmd into next
    // argument and command line remainder.
    func readNextArg(cmd string) (arg []byte, rest string) {
    	var b []byte
    	var inquote bool
    	var nslash int
    	for ; len(cmd) > 0; cmd = cmd[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. .gitignore

    # Gradle
    # ------
    .gradle
    /build
    /*/build
    /*/*/build
    /*/*/*/build
    /*/*/*/*/build
    /*/docs/src/samples/**/build
    /*/docs/src/snippets/**/build
    /*/internal-android-performance-testing/build-android-libs
    test-splits/
    /gradle/verification-keyring.gpg
    
    # IDEA
    # ----
    !/.idea
    /.idea/*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_splits.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-tpu-colocate-splits | FileCheck %s
    
    // CHECK-LABEL: func @colocate_split_with_pred
    func.func @colocate_split_with_pred() {
      // CHECK: Split
      // CHECK-SAME: _class = ["loc:@class"]
      tf_executor.graph {
        %c, %control0 = tf_executor.island wraps "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %35:2 = "tf.RaggedGather"(%32, %34, %0) {OUTPUT_RAGGED_RANK = 1 : i64, PARAMS_RAGGED_RANK = 1 : i64, Tindices = i64, Tsplits = i64, Tvalues = i64, device = ""} : (tensor<3xi64>, tensor<?xi64>, tensor<2xi64>) -> (tensor<?xi64>, tensor<?xi64>)
      %36:5 = "tf.WhitespaceTokenizeWithOffsets"(%24#1, %24#0) {Tsplits = i64, device = ""} : (tensor<?xi32>, tensor<2xi64>) -> (tensor<?xi32>, tensor<?xi64>, tensor<?xi64>, tensor<?xi64>, tensor<?xi64>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/rangefunc_test.go

    import (
    	"runtime"
    	"sync/atomic"
    	"testing"
    )
    
    type Seq2[T1, T2 any] func(yield func(T1, T2) bool)
    
    // ofSliceIndex returns a Seq over the elements of s. It is equivalent
    // to range s, except that it splits s into two halves and iterates
    // in two separate goroutines.  This is racy if yield is racy, and yield
    // will be racy if it contains an early exit.
    func ofSliceIndex[T any, S ~[]T](s S) Seq2[int, T] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top