Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for no_oss (0.45 sec)

  1. .bazelrc

    # will work properly. These are usually run Nightly or upon Release.
    # CPU WHEEL
    test:linux_cpu_wheel_test_filters --test_tag_filters=-no_oss,-oss_excluded,-oss_serial,-gpu,-tpu,-benchmark-test,-v1only,-no_oss_py38,-no_oss_py39,-no_oss_py310
    test:linux_cpu_wheel_test_filters --build_tag_filters=-no_oss,-oss_excluded,-oss_serial,-gpu,-tpu,-benchmark-test,-v1only,-no_oss_py38,-no_oss_py39,-no_oss_py310
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

            "@local_xla//xla/pjrt:pjrt_client",
        ],
    )
    
    tf_cuda_cc_test(
        name = "pjrt_compile_util_test",
        srcs = ["pjrt_compile_util_test.cc"],
        tags = [
            "config-cuda-only",
            "no_oss",  # This test only runs with GPU.
            "requires-gpu-nvidia",
            "xla",
        ],
        deps = [
            ":pjrt_compile_util",
            ":test_util",
            ":xla_gpu_jit",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. configure.py

      # single list of filters for the .bazelrc file.
    
      # Filters to use with both --test_tag_filters and --build_tag_filters
      test_and_build_filters = ['-benchmark-test', '-no_oss', '-oss_excluded']
      # Additional filters for --test_tag_filters beyond those in
      # test_and_build_filters
      test_only_filters = ['-oss_serial']
      if is_windows():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    from tensorflow.python.ops import array_ops_stack  # pylint: disable=g-direct-tensorflow-import
    from tensorflow.python.ops import io_ops
    from tensorflow.python.ops import lookup_ops
    from tensorflow.python.ops import math_ops
    from tensorflow.python.ops import nn_ops
    from tensorflow.python.ops import random_ops
    from tensorflow.python.ops import string_ops
    from tensorflow.python.ops import variables
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. tensorflow/BUILD

            [],
        ),
        values = if_oss(
            {"crosstool_top": "//external:android/crosstool"},
            {},
        ),
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "android_x86",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:android"],
            [],
        ),
        values = dict(
            if_oss(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

      @parameterized.parameters(
          testing.parameter_combinations([{
              'bias_fn': (
                  None,
                  nn_ops.bias_add,
              ),
              'activation_fn': (
                  None,
                  nn_ops.relu,
                  nn_ops.relu6,
              ),
              'dim_sizes': (
                  # tf.MatMul cases.
                  ([None, 1024], [1024, 3]),  # dynamic batch dim.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    			if p.indentList(s.Results) {
    				p.print(indent)
    				// Use NoPos so that a newline never goes before
    				// the results (see issue #32854).
    				p.exprList(token.NoPos, s.Results, 1, noIndent, token.NoPos, false)
    				p.print(unindent)
    			} else {
    				p.exprList(token.NoPos, s.Results, 1, 0, token.NoPos, false)
    			}
    		}
    
    	case *ast.BranchStmt:
    		p.print(s.Tok)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          .containsExactly("a", "\ufffdx", "c")
      }
    
      @Test
      fun incompleteUrlComposition() {
        val noHost =
          assertFailsWith<IllegalStateException> {
            HttpUrl.Builder().scheme("http").build()
          }
        assertThat(noHost.message).isEqualTo("host == null")
        val noScheme =
          assertFailsWith<IllegalStateException> {
            HttpUrl.Builder().host("host").build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            // cluster, after which it will fail to put any of the
            // ApplyWeightUpdates_* nodes into this cluster. To avoid this fate we
            // instead run a pass that avoids contracting edges _into_ NoOps like
            // the above, and avoid clustering edges _from_ "iteration++" like the
            // above.  Then we run a second pass that contracts the edges we could
            // not contract the first time around.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top