Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 234 for formaction (0.15 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorProblemsApiIntegrationTest.groovy

                import org.gradle.internal.operations.CurrentBuildOperationRef;
    
                import org.gradle.workers.WorkAction;
    
                import javax.inject.Inject;
    
                public abstract class ProblemWorkerTask implements WorkAction<ProblemsWorkerTaskParameter> {
    
                    @Inject
                    public abstract Problems getProblems();
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils.h

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    
    namespace mlir::quant::stablehlo {
    
    // Decomposes a given floating point value num into a normalized and quantized
    // fraction and an integral power of two.
    LogicalResult QuantizeMultiplier(double double_multiplier,
                                     int32_t& quantized_fraction, int32_t& shift);
    
    }  // namespace mlir::quant::stablehlo
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 07:43:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/call_to_exported.py

      # to worry about what to do with these attributes.
      # An example of where this would happen is when converting to XLA, which
      # requires eliminating mutable variables (and is thus sort of like an
      # interprocedural SSA formation, which in particular will
      # modify signatures interprocedurally).
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}(
      # CHECK-SAME:   %arg0: tensor<f32> {tf._user_specified_name = "x", tf_saved_model.index_path = [0]},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 28 19:09:38 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/math/frexp.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    // Frexp breaks f into a normalized fraction
    // and an integral power of two.
    // It returns frac and exp satisfying f == frac × 2**exp,
    // with the absolute value of frac in the interval [½, 1).
    //
    // Special cases are:
    //
    //	Frexp(±0) = ±0, 0
    //	Frexp(±Inf) = ±Inf, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 929 bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            }
        }
    
        private void assertFoundDeadSectionLinks(File file, String... sections) {
            assertFoundDeadLinks(sections.collect { DeadLink.forSection(file, it) })
        }
    
        private void assertFoundDeadJavadocLinks(File file, String... paths) {
            assertFoundDeadLinks(paths.collect { DeadLink.forJavadoc(file, it) })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 28 22:01:54 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkQueue.java

         * will be thrown from {@link #await()} or from the surrounding task action if {@link #await()} is not used.
         */
        <T extends WorkParameters> void submit(Class<? extends WorkAction<T>> workActionClass, Action<? super T> parameterAction);
    
        /**
         * Blocks until all work associated with this queue is complete.  Note that when using this method inside
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/xla_cluster_formation.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics  -tf-xla-cluster-formation | FileCheck %s
    
    // Check that we outline the partitioned call with `_xla_compile_device_type`
    // to a device cluster.
    // CHECK-LABEL: func.func @xla_must_compile_true
    // CHECK: tf_device.cluster
    // CHECK-NEXT: tf.StatefulPartitionedCall
    // CHECK-NEXT: tf_device.return
    // CHECK: _cluster_outlined_function_name = "stateful_pcall_func"
    // CHECK-SAME: allow_soft_placement = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 19:09:44 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.intellij.lang.annotations.Language
    import java.io.File
    import java.io.IOException
    import java.lang.reflect.Method
    import java.lang.reflect.Type
    import kotlin.reflect.full.memberFunctions
    import kotlin.reflect.jvm.javaMethod
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    import org.gradle.api.tasks.Input
    import org.gradle.api.tasks.TaskAction
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerExecutor
    import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry
    import org.gradle.tooling.provider.model.ToolingModelBuilder
    
    plugins {
        id 'groovy'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::object-factory[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                    void executeTask() {
                        workerExecutor.processIsolation().submit(NoOpWorkAction) { }
                    }
                }
    
                abstract class NoOpWorkAction implements WorkAction<WorkParameters.None> {
                    public void execute() {}
                }
            """
    
            when:
            succeeds("doWork")
    
            then:
            nativeDir.exists() == initialized
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top