Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for pass2 (0.07 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

      options.graph = &graph;
      options.flib_def = &flib_def;
      options.session_options = &sess_options;
    
      for (auto pass : passes_) {
        assert(pass != nullptr);
        Status status = pass->Run(options);
        if (!status.ok()) {
          mlir::emitError(mlir::UnknownLoc::get(&ctx))
              << pass->name() << ": " << status.message();
          return signalPassFailure();
        }
      }
    
      // Convert Graph to MLIR
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

    @SuppressWarnings("all")
    public class Execution implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * Configuration to pass to the goals.
         */
        private Object configuration;
    
        /**
         * Field goals.
         */
        private java.util.List<String> goals;
    
        // -----------/
        // - Methods -/
        // -----------/
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

         */
        private String id;
    
        /**
         * Field executions.
         */
        private java.util.List<Execution> executions;
    
        /**
         * Configuration to pass to all goals run in this phase.
         */
        private Object configuration;
    
        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method addExecution.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_export.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

      mlir::stablehlo::registerPasses();
      mlir::mhlo::registerAllMhloPasses();
      // These passes are only used for testing purposes.
      mlir::quant::stablehlo::testing::registerTestPasses();
    
      // Register StableHLO Quantizer pass pipelines.
      mlir::quant::stablehlo::RegisterPassPipelines();
    
      mlir::DialectRegistry registry;
      registry.insert<mlir::scf::SCFDialect, mlir::TF::TensorFlowDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.ImageRepository = "baz"
    	obj.CIImageRepository = "" // This fields doesn't exists in public API >> using default to get the roundtrip test pass
    	obj.KubernetesVersion = "qux"
    	obj.CIKubernetesVersion = "" // This fields doesn't exists in public API >> using default to get the roundtrip test pass
    	obj.APIServer.TimeoutForControlPlane = &metav1.Duration{
    		Duration: 0,
    	}
    	obj.ControllerManager.ExtraEnvs = []kubeadm.EnvVar{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    	if err != nil {
    		return err
    	}
    	err = Convert_v1beta3_ClusterConfiguration_To_kubeadm_ClusterConfiguration(&ClusterConfiguration{}, &out.ClusterConfiguration, s)
    	// Required to pass fuzzer tests. This ClusterConfiguration is empty and is never defaulted.
    	// If we call Convert_v1beta3_ClusterConfiguration_To_kubeadm_ClusterConfiguration() these fields will receive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/os/exec_test.go

    	}
    	defer r.Close()
    	defer w.Close()
    
    	p, err := os.StartProcess(testenv.GoToolPath(t), []string{"go"}, &os.ProcAttr{
    		// N.B. On Windows, StartProcess requires exactly 3 Files. Pass
    		// in a dummy pipe to avoid irrelevant output on the test stdout.
    		Files: []*os.File{r, w, w},
    	})
    	if err != nil {
    		t.Fatalf("starting test process: %v", err)
    	}
    	if err := p.Release(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. common/scripts/setup_env.sh

    SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
    REPO_ROOT="$(dirname "$(dirname "${SCRIPT_DIR}")")"
    
    LOCAL_ARCH=$(uname -m)
    
    # Pass environment set target architecture to build system
    if [[ ${TARGET_ARCH} ]]; then
        # Target explicitly set
        :
    elif [[ ${LOCAL_ARCH} == x86_64 ]]; then
        TARGET_ARCH=amd64
    elif [[ ${LOCAL_ARCH} == armv8* ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/Location.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/common/tfl_pass_config.h"
    #include "tensorflow/compiler/mlir/lite/debug/debug.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top