Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 642 for TD (0.06 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    #ifndef TF_DEVICE_DIALECT
    #define TF_DEVICE_DIALECT
    
    include "mlir/IR/OpBase.td"
    include "mlir/Interfaces/CallInterfaces.td"
    include "mlir/Interfaces/ControlFlowInterfaces.td"
    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "mlir/IR/SymbolInterfaces.td"
    
    //===----------------------------------------------------------------------===//
    // TensorFlow Device Dialect definitions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_passes.td

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    // Internal TF2XLA Bridge Passes used during interence only.
    def InferenceMetricsPass : Pass<"tf2xla-inference-metrics-pass", "ModuleOp"> {
      let summary = "A pass to go over a Module and collect various metrics";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 05 21:24:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_op_interfaces.td

    ==============================================================================*/
    
    // This is the operation interface definition file for TensorFlow Lite.
    
    #ifndef TFL_OP_INTERFACES
    #define TFL_OP_INTERFACES
    
    include "mlir/IR/OpBase.td"
    
    def TFL_Dialect : Dialect {
      let name = "tfl";
    
      let description = [{
        The TensorFlow Lite dialect.
    
        This dialect maps to TensorFlow Lite operations.
    
        Invariants:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/lowering_passes.td

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    include "mlir/Pass/PassBase.td"
    
    def InputLoweringMetricsPass : Pass<"input-lowering-metrics-pass", "mlir::func::FuncOp"> {
    
      let summary = "Collects various metrics about the input to the lowering "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 19:49:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/mlir_to_graph_passes.td

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    include "mlir/Pass/PassBase.td"
    
    def VerifyInputDialectToExecutorPass : Pass<"verify-input-dialect-to-executor-pass", "mlir::func::FuncOp"> {
      let summary = "Verify that TF dialect to executor converter receives the correct input.";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 16:32:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

    // This is the definition file for the TensorFlow SavedModel dialect.
    
    #ifndef SAVED_MODEL_DIALECT
    #define SAVED_MODEL_DIALECT
    
    include "mlir/IR/OpBase.td"
    include "mlir/IR/SymbolInterfaces.td"
    
    //===----------------------------------------------------------------------===//
    // Dialect definition
    //===----------------------------------------------------------------------===//
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td

    limitations under the License.
    ==============================================================================*/
    #ifdef MLRT_DIALECT
    #else
    #define MLRT_DIALECT
    
    include "mlir/IR/OpBase.td"
    
    def Mlrt_Dialect : Dialect {
      let name = "mlrt";
    
      let description = [{
        The MLRT Dialect.
      }];
    
      let cppNamespace = "::mlrt::compiler";
    }
    
    def MlrtFutureType : DialectType<Mlrt_Dialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    limitations under the License.
    ==============================================================================*/
    include "mlir/IR/OpBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.td"
    
    class GetScalarOfFloatType<string value> : NativeCodeCall<
      "GetScalarOfType(getElementTypeOrSelf($0)," # value # ")">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.td

    limitations under the License.
    ==============================================================================*/
    
    // Declare passes used in xla_legalize_tf.
    
    include "mlir/Pass/PassBase.td"
    
    def LegalizeTF : Pass<"xla-legalize-tf", "ModuleOp"> {
      let summary = "Legalize from TF dialect's or HLO dialect's control flow.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

    // This is the operation definition file for TensorFlow operations with
    // implementation available only in TFRT.
    
    #ifndef TFRT_OPS
    #define TFRT_OPS
    
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "mlir/IR/OpBase.td"
    
    def TF__TfrtSetResourceOp : TF_Op<"_TfrtSetResource", []> {
      let summary = "Set values as TFRT runtime's static resource.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top