Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for Bridge (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                        }
                    }
                    MethodVisitorScope bridge = new MethodVisitorScopeImpl(
                        clazz.visitor.visitMethod(methodData.access, methodData.name, methodData.descriptor, methodData.signature, methodData.exceptions)
                    );
                    bridge.visitCode();
                    bridge.visitEnd();
                }
                return original;
            }),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    }
    
    // Adds the list of ops that are only supported in the old bridge.
    // TODO(b/168036682): Remove bounded dynamism ops now that MLIR bridge supports
    // bounded dynamism.
    // TODO(b/257574556): Remove the need for this manual list by making use of old
    // bridge phase 2 op list.
    void AddOldBridgeOnlyOps(MLIRContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/cc/run_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      if (lower_to_xla_hlo) {
        // Legalize any StableHLO ops to MHLO. Bridge still doesn't use StableHLO
        // but such ops might be present in the input from upstream like TFRT
        // compilation. Later on, this could be merged in the legalization pass when
        // we migrate bridge to StableHLO.
    
        // TODO(b/259459405): Avoid this peculiar use through some refactoring in
        // the caller.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "@llvm-project//mlir:Pass",
            "@llvm-project//mlir:Support",
            "@llvm-project//mlir:TransformUtils",
        ],
    )
    
    cc_library(
        name = "bridge",
        srcs = ["bridge.cc"],
        hdrs = ["bridge.h"],
        deps = [
            ":tensorflow_passes",
            "//tensorflow/compiler/mlir/tensorflow:dump_mlir_util",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

          return failure();
    
        // Populate set_is_same_data_across_replicas
        // Note: this information is duplicated and can be removed from the proto
        // and here once MLIR bridge phase 2 doesn't fallback to the old bridge.
        auto attr = op.getFuncOp().getArgAttrOfType<mlir::BoolAttr>(
            index, replication_attr_name);
        arg->set_is_same_data_across_replicas(attr != nullptr && attr.getValue());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

        bool use_tuple_args, bool use_resource_updates_for_aliases,
        const XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns,
        XlaCompilationResult* compilation_result);
    
    // Runs MLIR Bridge on a MLIR module.
    //
    // If lower_to_xla_hlo is true then compiles down into XLA HLO, generates all
    // accompanying metadata and stores them in CompilationResult.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

          TypeID::get<TF::ModOp>(),
    
          // MatrixDiagPartV3 should use the MLIR implementation due to performance.
          TypeID::get<TF::MatrixDiagPartV3Op>(),
    
          // Ops that are legalized in the old bridge using MlirXlaOpKernel
          TypeID::get<TF::AbsOp>(),
          TypeID::get<TF::AtanOp>(),
          TypeID::get<TF::AvgPool3DOp>(),
          TypeID::get<TF::BiasAddGradOp>(),
          TypeID::get<TF::CeilOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. src/log/slog/logger.go

    	"log/slog/internal"
    	"runtime"
    	"sync/atomic"
    	"time"
    )
    
    var defaultLogger atomic.Pointer[Logger]
    
    var logLoggerLevel LevelVar
    
    // SetLogLoggerLevel controls the level for the bridge to the [log] package.
    //
    // Before [SetDefault] is called, slog top-level logging functions call the default [log.Logger].
    // In that mode, SetLogLoggerLevel sets the minimum level for those calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

    }
    
    def XlaValidateInputsPass : Pass<"tf-xla-validate-inputs", "ModuleOp"> {
      let summary = "Validtes inputs to the TF CPU/GPU bridge";
      let description = [{
        This pass checks that the IR has valid input to CPU/GPU TF/XLA bridge.
      }];
      let constructor = "TFDevice::CreateXlaValidateInputsPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top