Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,608 for Passes (0.28 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    // license that can be found in the LICENSE file.
    
    package unmarshal
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/go/types/typeutil"
    	"golang.org/x/tools/internal/typesinternal"
    )
    
    //go:embed doc.go
    var doc string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/remove_sharding_custom_call.cc

    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_REMOVESHARDINGCUSTOMCALLPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    // Include patterns generated from `remove_sharding_custom_call.td`.
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/remove_sharding_custom_call.inc"
    
    class RemoveShardingCustomCallPass
        : public impl::RemoveShardingCustomCallPassBase<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 07:04:47 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/quantize_passes.cc

    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.pb.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h"
    
    namespace stablehlo {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_json_panic_exit.txt

    # Verifies golang.org/issue/37555.
    
    [short] skip
    
    # 'go test -json' should say a test passes if it says it passes.
    go test -json ./pass
    stdout '"Action":"pass","Package":"[^"]*","Elapsed":[^"]*}\n\z'
    ! stdout '"Test":.*\n\z'
    
    # 'go test -json' should say a test passes if it exits 0 and prints nothing.
    # TODO(golang.org/issue/29062): this should fail in the future.
    go test -json ./exit0main
    stdout '"Action":"pass".*\n\z'
    ! stdout '"Test":.*\n\z'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/mlprogram.cc

    #include <string>
    #include <utility>
    
    #include "llvm/ADT/STLFunctionalExtras.h"
    #include "llvm/ADT/Twine.h"
    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/transforms/bridge.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:39:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    // traditional control flow structure (Switch/Merge/etc.) into functional
    // control flow structure (XlaIf/XlaWhile). Following passes must
    // handle those FunctionDef correctly.
    
    // POST_REWRITE_FOR_EXEC passes that support auto-clustering to enable XLA:
    
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 5,
                          CloneConstantsForBetterClusteringPass);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/cluster_tf.cc

    void CreateReplicatedClusteringPipeline(OpPassManager &pm,
                                            llvm::StringRef module_name) {
      // Since the internal bridge clustering passes are shared among TF1/TF2
      // TF2-only passes should go here. However, this should be very rare and
      // new passes generally should go into the internal
      // AddReplicatedBridgeClusteringPipelinePasses.
      pm.addPass(mlir::TFTPU::CreateTPUValidateInputsPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/tflite_legalize_hlo.cc

    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"  // IWYU pragma: keep
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"  // IWYU pragma: keep
    #include "xla/mlir_hlo/mhlo/IR/hlo_ops.h"
    
    namespace mlir {
    namespace odml {
    namespace {
    
    // This file is generated from `passes.td` and provides the implementation base
    // class.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_post_calibration_component.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/post_calibration.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h"  // IWYU pragma: keep
    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"  // IWYU pragma: keep
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/xla_call_module_to_call.cc

    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    #include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir::quant::stablehlo {
    
    #define GEN_PASS_DEF_XLACALLMODULETOCALLPASS
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    namespace {
    
    // Converts XlaCallModuleOps to func.call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 20:02:00 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top