Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nogpu (0.09 sec)

  1. tensorflow/BUILD

    # )
    #
    # copybara_config_test(
    #     name = "copybara_config_test",
    #     config = "copy.bara.sky",
    #     tags = [
    #         "noasan",
    #         "nodfsan",
    #         "nogotsan",
    #         "nogpu",
    #         "nomsan",
    #         "nosan",
    #         "notsan",
    #         "noubsan",
    #     ],
    #     deps = [":copybara_config"],
    # )
    #
    # action_config_test(
    #     name = "build_cleaner_spec_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/examples/mnist/BUILD

            "no_oss",  # Avoid downloading mnist data set in oss.
            "nomultivm",  # Not needed. Save some resources and test time.
            "notap",  # The test is too long to run as part of llvm presubmits (b/173661843).
            "notpu",  # Takes too long (b/192305423)
            "notsan",  # Not needed, and there were issues with timeouts.
            "requires-net:external",
        ],
    
        # TODO(b/175056184): Re-enable xla_enable_strict_auto_jit once the issues
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 11:50:40 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/BUILD

    #     data = ["batch_function_fallback.mlir.bef"],
    #     enable_xprof = True,
    #     includes = ["third_party/tf_runtime/include"],
    #     owners = ["tf-runtime-testing"],
    #     tags = [
    #         "need_main",
    #         "no_gpu",
    #     ],
    #     deps = [
    #         "//base",
    #         "//devtools/build/runtime:get_runfiles_dir",
    #         "@com_google_absl//absl/log:check",
    #         "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. .bazelrc

    # CUDA WHEEL
    test:linux_cuda_wheel_test_filters --test_tag_filters=gpu,requires-gpu,-no_gpu,-no_oss,-oss_excluded,-oss_serial,-benchmark-test,-no_cuda11,-no_oss_py38,-no_oss_py39,-no_oss_py310
    test:linux_cuda_wheel_test_filters --build_tag_filters=gpu,requires-gpu,-no_gpu,-no_oss,-oss_excluded,-oss_serial,-benchmark-test,-no_cuda11,-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)
  5. configure.py

          test_and_build_filters += ['-no_windows_gpu', '-no_gpu']
        else:
          test_and_build_filters.append('-gpu')
      elif is_macos():
        test_and_build_filters += ['-gpu', '-nomac', '-no_mac', '-mac_excluded']
      elif is_linux():
        if ((environ_cp.get('TF_NEED_CUDA', None) == '1') or
            (environ_cp.get('TF_NEED_ROCM', None) == '1')):
          test_and_build_filters.append('-no_gpu')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_test.cc

      std::string gpu_device_name;
      if (GetDeviceName(ctx, &gpu_device_name, "GPU")) {
        TFE_TensorHandle* n_gpu =
            TFE_TensorHandleCopyToDevice(n, ctx, gpu_device_name.c_str(), status);
        EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_DeleteTensorHandle(n);
        n = n_gpu;
      }
    
      TFE_TensorHandle* m = TestMatrixTensorHandle100x100(ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top