Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for asSet (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // Check that the initializers list is empty.
    // CHECK: "tf_saved_model.session_initializer"()
    // CHECK-SAME: initializers = []
    
      "tf_saved_model.asset"() {filename = "assets/file.txt", sym_name = "__tf_saved_model_asset0_file.txt"} : () -> ()
    
      func.func @NoOp(%arg: tensor<!tf_type.string> {tf_saved_model.bound_input = @__tf_saved_model_asset0_file.txt})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

            /*allow_mutable_tensors=*/pass_config.enable_tflite_variables));
      }
    
      if (!saved_model_dir.empty()) {
        // This pass 'freezes' tf saved model asset ops and inlines as string values
        // in a format of the tf constant op.
        pass_manager->addPass(
            mlir::tf_saved_model::CreateFreezeAssetsPass(saved_model_dir.str()));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                        });
    
      struct NamedAsset {
        llvm::StringRef name;
        AssetOp asset;
      };
      llvm::SmallVector<NamedAsset, 4> assets;
      for (auto asset : module.getOps<AssetOp>()) {
        assets.push_back({asset.getName(), asset});
      }
      llvm::stable_sort(assets, [](const NamedAsset& a, const NamedAsset& b) {
        return a.name < b.name;
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            if (capabilitiesRules == null) {
                return capabilities;
            }
    
            DefaultMutableCapabilitiesMetadata mutableCapabilities;
            if (capabilities.asSet().isEmpty()) {
                // we must add the implicit capability here because it is assumed that if there's a rule
                // "addCapability" would effectively _add_ a capability, so the implicit one must not be forgotten
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNode.java

            Map<String, String> targetAttributes = AttributesToMapConverter.convertToMap(targetComponentVariant.getAttributes());
            List<Capability> capabilities = targetComponentVariant.getCapabilities().asSet().stream()
                .map(TransformStepNode::convertCapability)
                .collect(Collectors.toList());
    
            return new DefaultPlannedTransformStepIdentity(
                consumerBuildPath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        void forEachCapability(CapabilitiesConflictHandler capabilitiesConflictHandler, Action<? super Capability> action) {
            ImmutableSet<ImmutableCapability> capabilities = metadata.getCapabilities().asSet();
            // If there's more than one node selected for the same component, we need to add
            // the implicit capability to the list, in order to make sure we can discover conflicts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractRealisedModuleResolveMetadataSerializationHelper.java

        private static void writeCapabilities(Encoder encoder, ImmutableCapabilities capabilities) throws IOException {
            ImmutableSet<ImmutableCapability> capabilitiesSet = capabilities.asSet();
            encoder.writeSmallInt(capabilitiesSet.size());
            for (Capability capability : capabilitiesSet) {
                boolean shadowed = capability instanceof ShadowedCapability;
                if (shadowed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

          ctx, module_op));
    
      FailureOr<SmallVector<AssetFileDef>> asset_file_defs =
          quant::ConvertAssetArgs(module_op);
      if (failed(asset_file_defs)) {
        return absl::InternalError("Failed to convert asset args.");
      }
    
      return *asset_file_defs;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/Network.java

       * #incidentNodes(Object)}). If this network does not {@link #allowsParallelEdges() allow parallel
       * edges}, the resulting set will contain at most one edge (equivalent to {@code
       * edgeConnecting(nodeU, nodeV).asSet()}).
       *
       * <p>If either {@code nodeU} or {@code nodeV} are removed from the network after this method is
       * called, the {@code Set} {@code view} returned by this method will be invalidated, and will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/Network.java

       * #incidentNodes(Object)}). If this network does not {@link #allowsParallelEdges() allow parallel
       * edges}, the resulting set will contain at most one edge (equivalent to {@code
       * edgeConnecting(nodeU, nodeV).asSet()}).
       *
       * <p>If either {@code nodeU} or {@code nodeV} are removed from the network after this method is
       * called, the {@code Set} {@code view} returned by this method will be invalidated, and will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top