Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,643 for options_ (0.25 sec)

  1. tensorflow/cc/experimental/base/public/runtime_builder.h

        }
      };
      std::unique_ptr<TFE_ContextOptions, TFEContextOptionsDeleter> options_;
    };
    
    inline RuntimeBuilder& RuntimeBuilder::SetUseTFRT(bool use_tfrt) {
      TFE_ContextOptionsSetTfrt(options_.get(), use_tfrt);
      return *this;
    }
    
    inline std::unique_ptr<Runtime> RuntimeBuilder::Build(Status* status) {
      TFE_Context* result = TFE_NewContext(options_.get(), status->GetTFStatus());
      if (!status->ok()) {
        return nullptr;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.h

     public:
      // Options for configuring the importer.
      struct Options {
        std::string file_name;
        // Whether the input file is an MLIR not tflite file.
        bool input_mlir = false;
      };
    
      explicit TfLiteImporter(const Options& options) : options_(options) {}
    
      absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> Import() override;
    
     private:
      Options options_;
      mlir::MLIRContext context_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.cc

          source_mgr_, &context_);
      return ImportFlatbufferOrMlir(
          options_.file_name, options_.input_mlir,
          /*experimental_prune_unreachable_nodes_unconditionally=*/true,
          &source_mgr_, &context_);
    }
    
    //////////// Exporter ////////////
    absl::Status TfLiteExporter::Export(mlir::ModuleOp module) {
      // return absl::OkStatus();
      if (options_.export_runtime_metadata) {
        // Run the cost model for each device/op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.cc

      mlir::PassManager pm((*module)->getName(),
                           mlir::OpPassManager::Nesting::Implicit);
      AddTACPass(&pm, options_.hardware_backends);
      if (!debug_mode) {
        AddExportTFLPass(&pm, options_.enable_inliner);
      }
    
      mlir::StatusScopedDiagnosticHandler statusHandler(module->getContext(),
                                                        /*propagate=*/true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

      virtual ~TacModule() = default;
    
      explicit TacModule(const Options& options) : options_(options) {}
    
      void SetImporter(std::unique_ptr<TacImporter> importer) {
        importer_ = std::move(importer);
      }
    
      void SetExporter(std::unique_ptr<TacExporter> exporter) {
        exporter_ = std::move(exporter);
      }
    
      // Returns pointer to the TargetHardware that is identified by 'hardware_name'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    image::ci-systems/teamcity-step-added.png[]
    
    Click _Edit_, on the page that opens click _Advanced options_.
    Using the Wrapper to execute the build is considered good practice with Gradle,
    and on automatic detection this option is selected by default.
    We’ll want to generate a build scan,
    so we’ll enter the `--scan` option in _Additional Gradle command line parameters_ field.
    
    image::ci-systems/teamcity-scan.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/options.go

    	Revision           string
    	MeshConfigFile     string
    	NetworksConfigFile string
    	RegistryOptions    RegistryOptions
    	CtrlZOptions       *ctrlz.Options
    	KeepaliveOptions   *keepalive.Options
    	ShutdownDuration   time.Duration
    	JwtRule            string
    }
    
    // DiscoveryServerOptions contains options for create a new discovery server instance.
    type DiscoveryServerOptions struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pkg/log/options.go

    func (o *Options) WithStackdriverLoggingFormat() *Options {
    	o.useStackdriverFormat = true
    	return o
    }
    
    // WithTeeToUDS configures a parallel logging pipeline that writes logs to a server over UDS.
    // addr is the socket that the server listens on, and path is the HTTP path that process the log message.
    func (o *Options) WithTeeToUDS(addr, path string) *Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/options/options.go

    	// Flags hold the parsed CLI flags.
    	Flags *cliflag.NamedFlagSets
    }
    
    // NewOptions returns default scheduler app options.
    func NewOptions() *Options {
    	o := &Options{
    		SecureServing:  apiserveroptions.NewSecureServingOptions().WithLoopback(),
    		Authentication: apiserveroptions.NewDelegatingAuthenticationOptions(),
    		Authorization:  apiserveroptions.NewDelegatingAuthorizationOptions(),
    		Deprecated: &DeprecatedOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. istioctl/cmd/options.go

    	retval := &cobra.Command{
    		Use:   "options",
    		Short: "Displays istioctl global options",
    		Args:  cobra.ExactArgs(0),
    	}
    
    	retval.SetHelpFunc(func(c *cobra.Command, args []string) {
    		c.Printf("The following options can be passed to any command:\n")
    		// (Currently the only global options we show are help options)
    		rootCmd.PersistentFlags().VisitAll(func(flag *pflag.Flag) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top