Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,281 for paid (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/min_max_value.h

    #include <utility>
    
    namespace stablehlo::quantization {
    
    // Represents the (min, max) value pair, representing the range of values after
    // calibrating for quantization.
    using MinMaxValue = std::pair<float, float>;
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 16:32:37 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/FixedAvailablePortAllocator.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util.ports
    
    import org.gradle.internal.Pair
    
    class FixedAvailablePortAllocator extends AbstractAvailablePortAllocator {
        static final String WORKER_ID_SYS_PROPERTY = "org.gradle.test.worker"
        static final String AGENT_NUM_SYS_PROPERTY = "org.gradle.ci.agentNum"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 14 16:59:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

            ExcludeSpec getAnyPair(ExcludePair pair, Function<ExcludePair, ExcludeSpec> onMiss) {
                return anyOfPairCache.computeIfAbsent(pair, onMiss);
            }
    
            ExcludeSpec getAllPair(ExcludePair pair, Function<ExcludePair, ExcludeSpec> onMiss) {
                return allOfPairCache.computeIfAbsent(pair, onMiss);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

                                      StringRef(content.data(), content.size()));
    }
    
    LogicalResult BuildOption(flexbuffers::Builder* fbb, Operation* op,
                              NamedAttribute pair) {
      const char* key = pair.getName().data();
      const auto attr = pair.getValue();
    
      if (mlir::isa<::mlir::IntegerAttr>(attr)) {
        fbb->Int(key, mlir::dyn_cast<mlir::IntegerAttr>(attr).getInt());
        return success();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/PropertyReportTask.java

    import org.gradle.api.tasks.diagnostics.internal.PropertyReportRenderer;
    import org.gradle.api.tasks.diagnostics.internal.ReportRenderer;
    import org.gradle.api.tasks.options.Option;
    import org.gradle.internal.Pair;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.TreeMap;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    }
    
    foreach pair  = [[MHLO_AndOp, CHLO_BroadcastAndOp, TF_BitwiseAndOp],
                     [MHLO_OrOp, CHLO_BroadcastOrOp, TF_BitwiseOrOp],
                     [MHLO_XorOp, CHLO_BroadcastXorOp, TF_BitwiseXorOp]] in {
      def : Pat<(pair[0] TF_IntTensor:$l, TF_IntTensor:$r), (pair[2] $l, $r)>;
      def : Pat<(pair[1] TF_IntTensor:$l, TF_IntTensor:$r, $broadcast_dimensions),
                (pair[2] $l, $r),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/VcsDependencyResolver.java

                    Collection<Pair<ModuleVersionIdentifier, ProjectComponentIdentifier>> moduleToProject = includedBuild.getAvailableModules();
                    Pair<ModuleVersionIdentifier, ProjectComponentIdentifier> entry = CollectionUtils.findFirst(moduleToProject, new Spec<Pair<ModuleVersionIdentifier, ProjectComponentIdentifier>>() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

     */
    
    package org.gradle.nativeplatform.toolchain.internal.metadata;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.Action;
    import org.gradle.internal.Pair;
    import org.gradle.internal.io.StreamByteBuffer;
    import org.gradle.platform.base.internal.toolchain.ComponentFound;
    import org.gradle.platform.base.internal.toolchain.ComponentNotFound;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_layout_helper.h

      if (reverse_permutation.empty()) return failure();
    
      (*op)->setAttr("data_format", StringAttr::get(context, target_data_format));
    
      for (auto pair : shuffle_attrs) {
        StringRef attr_name = pair.first;
        ArrayAttr attr_value = pair.second;
        (*op)->setAttr(attr_name,
                       ShuffleArrayAttr(attr_value, reverse_permutation));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/zip.kt

        normaliseFileSeparators(relativeTo(baseDir).path)
    
    
    fun zipTo(zipFile: File, entries: Sequence<Pair<String, ByteArray>>) {
        zipTo(zipFile.outputStream(), entries)
    }
    
    
    private
    fun zipTo(outputStream: OutputStream, entries: Sequence<Pair<String, ByteArray>>) {
        ZipOutputStream(outputStream).use { zos ->
            entries.forEach { entry ->
                val (path, bytes) = entry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (1)
Back to top