Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,200 for options_ (0.4 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. 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)
  9. pkg/monitoring/options.go

    	return func(opts *options) {
    		opts.unit = unit
    	}
    }
    
    // WithEnabled allows a metric to be condition enabled if the provided function returns true.
    // If disabled, metric operations will do nothing.
    func WithEnabled(enabled func() bool) Options {
    	return func(o *options) {
    		o.enabledCondition = enabled
    	}
    }
    
    func createOptions(name, description string, opts ...Options) (options, Metric) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/keepalive/options.go

    )
    
    // Options defines the set of options used for grpc keepalive.
    // The Time and Timeout options are used for both client and server connections,
    // whereas MaxServerConnectionAge* options are applicable on the server side only
    // (as implied by the options' name...)
    type Options struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top