Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for bef_executor (0.14 sec)

  1. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.h

    #include "llvm/ADT/StringRef.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/platform/threadpool_interface.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    #include "tfrt/bef_executor/bef_file.h"  // from @tf_runtime
    #include "tfrt/host_context/execution_context.h"  // from @tf_runtime
    #include "tfrt/host_context/host_context.h"  // from @tf_runtime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 14 22:40:40 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    #include "tensorflow/core/runtime_fallback/util/fallback_test_util.h"
    #include "tensorflow/core/tfrt/utils/fallback_tensor.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    #include "tfrt/bef_executor/bef_file.h"  // from @tf_runtime
    #include "tfrt/core_runtime/core_runtime.h"  // from @tf_runtime
    #include "tfrt/host_context/async_value.h"  // from @tf_runtime
    #include "tfrt/host_context/async_value_ref.h"  // from @tf_runtime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

    #include "tensorflow/core/tfrt/utils/fallback_tensor.h"
    #include "tfrt/bef/bef_buffer.h"  // from @tf_runtime
    #include "tfrt/bef_converter/mlir_to_bef.h"  // from @tf_runtime
    #include "tfrt/bef_executor/bef_file.h"  // from @tf_runtime
    #include "tfrt/host_context/async_value.h"  // from @tf_runtime
    #include "tfrt/host_context/chain.h"  // from @tf_runtime
    #include "tfrt/host_context/execution_context.h"  // from @tf_runtime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/BUILD

            [
                "//third_party/tf_runtime_llvm:tfrt_translate_main",
            ],
            ["@tf_runtime//third_party/llvm_derived:tfrt_translate_main"],
        ),
    )
    
    tf_cc_binary(
        name = "bef_executor",
        testonly = True,
        visibility = [":friends"],
        deps = [
            "@tf_runtime//:dtype",
            "@tf_runtime//:simple_tracing_sink",
            "@tf_runtime//tools:bef_executor_expensive_kernels",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

     public:
      using Base::Base;
      static constexpr ::mlir::StringLiteral name = "tf_executor.control";
    };
    
    class TokenType : public Type::TypeBase<TokenType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr ::mlir::StringLiteral name = "tf_executor.token";
    };
    
    }  // namespace tf_executor
    }  // namespace mlir
    
    // Declares the operations for this dialect using the generated header.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        return isa<tf_executor::IslandOp>(region->getParentOp());
      }
    };
    
    }  // namespace
    
    TensorFlowExecutorDialect::TensorFlowExecutorDialect(MLIRContext *context)
        : Dialect(/*name=*/"tf_executor", context,
                  TypeID::get<TensorFlowExecutorDialect>()) {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc.inc"
          >();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

      %1, %ctl1 = tf_executor.opB : tensor<*xf32>
      %2, %ctl2 = tf_executor.opC %1, %ctl0 : tensor<*xf32>
      %3, %ctl3 = tf_executor.opD %2 : tensor<*xf32>
      tf_executor.fetch %3 : tensor<*xf32>
    } // end of the “tf_executor.graph" operation/region
    ```
    
    ### ‘tf_executor.island’ Operation
    
    The `tf_executor.graph` operation does not allow `tf` dialect operations to be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/parallel_execute_to_islands.mlir

    func.func @testEmptyRegions() {
      tf_executor.graph {
        tf_executor.island() {
          "tf_device.parallel_execute"() ({
            tf_device.return
          }, {
            tf_device.return
          }) {} : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK:      [[ISLAND_0_CTRL:%.+]] = tf_executor.island {
    // CHECK:        tf_executor.yield {_parallel_execution_ids = "p0:0"}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          tf_executor.yield %const : tensor<*xi1>
        }
        %loop_cond:2 = tf_executor.LoopCond %island#0 : tensor<*xi1>
        tf_executor.fetch %loop_cond#0 : tensor<*xi1>
      }
      func.return
    }
    
    // CHECK: %[[CONTROL:[^ ,]*]] = tf_executor.island wraps "tf.Print"
    // CHECK: tf_executor.Enter {{.*}}, %[[CONTROL]]
    func.func @enter_control_input() {
      tf_executor.graph {
        %island:2 = tf_executor.island {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/switchn.mlir

            "tf_executor.yield"(%0) : (tensor<f32>) -> ()
          }) : (!tf_executor.control) -> (tensor<f32>, !tf_executor.control)
          %outputs_6, %control_7 = "tf_executor.island"() ({
            %0 = "tf.Identity"(%outputs_0#1) {device = ""} : (tensor<*xi32>) -> tensor<*xi32>
            "tf_executor.yield"(%0) : (tensor<*xi32>) -> ()
          }) : () -> (tensor<*xi32>, !tf_executor.control)
          %outputs_8, %control_9 = "tf_executor.island"(%control_7) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top