Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for Auto (0.06 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    using ::tensorflow::tpu::ShardingAndIndex;
    
    auto* phase2_bridge_compilation_status =
        tensorflow::monitoring::Counter<1>::New(
            "/tensorflow/core/tf2xla/api/v1/"
            "phase2_compilation_status", /*metric_name*/
            "Tracks the compilation status of the non-mlir bridge",
            /* metric description */ "status" /* metric label */);
    
    auto* phase2_bridge_compilation_time = tsl::monitoring::Sampler<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      mlir_to_hlo_args.rollout_state = rollout_state;
      mlir_to_hlo_args.mlir_module = mlir_module_str;
    
      se::Platform* platform =
          se::PlatformManager::PlatformWithName("Host").value();
      auto client =
          xla::ClientLibrary::GetOrCreateCompileOnlyClient(platform).value();
    
      std::vector<TensorShape> arg_shapes;
      TPUCompileMetadataProto metadata_proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. prow/release-commit.sh

    directory: ${WORK_DIR}
    ignoreVulnerability: true
    dependencies:
    ${DEPENDENCIES:-$(cat <<EOD
      istio:
        localpath: ${ROOT}
      api:
        git: https://github.com/istio/api
        auto: modules
      proxy:
        git: https://github.com/istio/proxy
        auto: deps
      client-go:
        git: https://github.com/istio/client-go
        branch: master
      test-infra:
        git: https://github.com/istio/test-infra
        branch: master
      tools:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

    // OperationName.
    void TfLiteBuiltinOpToMlir(const BuiltinOperatorSet& tflite_builtin_codes,
                               absl::flat_hash_set<std::string>& mlir_op_names) {
      for (const auto& entry : tflite_builtin_codes) {
        StringRef tflite_op_name = EnumNameBuiltinOperator(entry);
        std::string mlir_name = llvm::Twine("tfl.", tflite_op_name.lower()).str();
        mlir_op_names.insert(std::move(mlir_name));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/deployment.yaml

          volumes:
            {{ toYaml . | nindent 8 }}
          {{- end }}
          containers:
            - name: istio-proxy
              # "auto" will be populated at runtime by the mutating webhook. See https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection
              image: auto
              {{- with .Values.imagePullPolicy }}
              imagePullPolicy: {{ . }}
              {{- end }}
              securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    				Result: simulation.Result{
    					RouteMatched:   "default",
    					ClusterMatched: "outbound|80||concrete.default.svc.cluster.local",
    				},
    			},
    			// Auto
    			{
    				// No opaque host match for auto
    				Name: "Auto virtual service applies to alias fqdn",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 81, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local", Path: "/one"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * If the module-path contains at least one filename-based auto-module, prepares a warning message.
         * The module path is the collection of dependencies associated to {@link JavaPathType#MODULES}.
         * It is caller's responsibility to send the message to a logger.
         *
         * @return warning message if at least one filename-based auto-module was found
         */
        Optional<String> warningForFilenameBasedAutomodules();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

      options.toco_flags.set_allow_custom_ops(true);
    
      // Copy metadata for Reduced Precision Support from input model if it exists
      for (const auto& metadata : input_model.metadata) {
        if (metadata->name != tflite::optimize::kTfLiteReducedPrecisionKey) {
          continue;
        }
    
        const auto& data = input_model.buffers[metadata->buffer]->data;
        options.metadata[metadata->name] = std::string(data.begin(), data.end());
        break;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. docs/en/docs/fastapi-cli.md

    ## `fastapi dev`
    
    When you run `fastapi dev`, it will run on development mode.
    
    By default, it will have **auto-reload** enabled, so it will automatically reload the server when you make changes to your code. This is resource intensive and could be less stable than without it, you should only use it for development.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/stream_executor/stream_executor.cc

        auto c_event = std::make_unique<CEvent>(&device_, stream_executor_);
        TF_RETURN_IF_ERROR(c_event->Create());
        return std::move(c_event);
      }
    
      absl::StatusOr<std::unique_ptr<Stream>> CreateStream(
          std::optional<std::variant<StreamPriority, int>> priority =
              std::nullopt) override {
        auto stream = std::make_unique<CStream>(&device_, stream_executor_, this);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top