Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tfd (0.02 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

          %out_c, %out_tensor = "tfd.delegate_kernel"(
            %in_c, %in1_tensor, %in2_tensor) {
            _name = "MatMul",
            attr1_name = "transpose_a", attr1_value = "bool$false",
            attr2_name = "transpose_b", attr2_value = "bool$false"
          } : (!tfrt.chain, !tfd.tf_tensor, !tfd.tf_tensor) -> (
            !tfrt.chain, !tfd.tf_tensor)
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

    #include "tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.h"
    
    // This optimizes the following scenario:
    // %tft0, %c2 = "tfd.move_dht_to_tft"(%dht0, %c1)
    //     : (!dht.host_tensor, !tfrt.chain) -> (!tfd.tf_tensor, !tfrt.chain)
    // %dht1, %c3 = "tfd.convert_tft_to_dht"(%tft0, %c2)
    //     : (!tfd.tf_tensor, !tfrt.chain) -> (!dht.host_tensor, !tfrt.chain)
    // some_op %dht1, %c3
    //
    // becomes
    // some_op %dht0, %c1
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.cc

    namespace mlir {
    namespace tfd {
    
    //===----------------------------------------------------------------------===//
    // TfrtDelegate Dialect
    //===----------------------------------------------------------------------===//
    
    RuntimeFallbackDialect::RuntimeFallbackDialect(MLIRContext *context)
        : Dialect(/*name=*/"tfd", context, TypeID::get<RuntimeFallbackDialect>()) {
      allowUnknownTypes();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.h

    #include "tfrt/tensor/opdefs/tensor.h"  // from @tf_runtime
    
    namespace mlir {
    namespace tfd {
    
    // Dialect for TFRT delegate operations.
    class RuntimeFallbackDialect : public Dialect {
     public:
      explicit RuntimeFallbackDialect(MLIRContext* context);
      static StringRef getDialectNamespace() { return "tfd"; }
    };
    
    }  // namespace tfd
    }  // namespace mlir
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 20:56:11 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

                                  diag) { LOG(ERROR) << diag.message(); },
          tfrt::CreateMallocAllocator(),
          tfrt::CreateMultiThreadedWorkQueue(16, 16));
      CHECK(corert);
      auto fallback_op_handler = tensorflow::tfd::CreateKernelFallbackOpHandler(
          corert->get(), corert->get()->GetHostContext()->GetHostDeviceRef());
      CHECK(fallback_op_handler);
      corert.get()->RegisterOpHandler("tfkernel", fallback_op_handler.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

          resource_context_
              .GetOrCreateResource<tensorflow::tfd::EagerContextResource>(
                  tensorflow::tfd::kEagerContextResourceName);
      auto expected_eager_context = eager_context_resource->GetTFEagerContext();
      auto* eager_context = expected_eager_context.get();
    
      // Initialize fallback kernels state with a custom intra-op thread pool.
      auto status = tensorflow::tfd::SetUpKernelFallbackCompatRequestContext(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^HW_MACHINE$/ ||
    		$2 ~ /^SYSCTL_VERS/ ||
    		$2 !~ "MNT_BITS" &&
    		$2 ~ /^(MS|MNT|MOUNT|UMOUNT)_/ ||
    		$2 ~ /^NS_GET_/ ||
    		$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
    		$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT|PIOD|TFD)_/ ||
    		$2 ~ /^KEXEC_/ ||
    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 ~ /^MODULE_INIT_/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. RELEASE.md

            to clarify that the input domain is squared magnitude spectra and the
            weighting is done on linear magnitude spectra (sqrt of inputs).
        *   Change `tf.contrib.distributions` docstring examples to use `tfd` alias
            rather than `ds`, `bs`.
        *   Fix docstring typos in `tf.distributions.bijectors.Bijector`.
        *   `tf.assert_equal` no longer raises `ValueError.` It now raises
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top