Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for inputs_ (0.74 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/import_json.json

                16
              ],
              "name": "output",
              "quantization": {
              }
            }
          ],
          "inputs": [
            0,
            1
          ],
          "outputs": [
            3
          ],
          "operators": [
            {
              "inputs": [
                0,
                1,
                -1
              ],
              "outputs": [
                3
              ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

            InputFingerprinter.Result inputs = work.getInputFingerprinter().fingerprintInputProperties(
                ImmutableSortedMap.of(),
                ImmutableSortedMap.of(),
                ImmutableSortedMap.of(),
                ImmutableSortedMap.of(),
                work::visitIdentityInputs
            );
    
            ImmutableSortedMap<String, ValueSnapshot> identityInputProperties = inputs.getValueSnapshots();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/IgnoredConfigurationInputs.kt

    import java.io.File
    
    
    /**
     * Defines specific configuration inputs that should not be included in the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    interface IgnoredConfigurationInputs {
        /**
         * Checks if the [file] should be excluded from the configuration inputs fingerprint if it participates
         * in file system checks, such as [File.exists], [File.isFile] etc.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/BinaryTasksModelRuleExtractor.java

                                binary.builtBy(task);
                            }
                        });
    
                List<ModelView<?>> inputsWithBinary = new ArrayList<ModelView<?>>(inputs.size());
                inputsWithBinary.addAll(inputs.subList(1, inputs.size()));
                inputsWithBinary.add(InstanceModelView.of(getSubject().getPath(), getSubject().getType(), binary));
    
                invoke(invoker, inputsWithBinary, cast, binary, binary);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

    // merging same input values if they're identical. These optimizations are
    // desirable but not for those TFLite ops which have variable tensors as inputs.
    // Yes, they have identical input values, but those identical values are
    // "stateful", their values can change during invocations.
    //
    // A typical example is unidirectional_sequence_lstm have two variable tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

                                       num_control_inputs_removed,
                                       num_control_inputs_added);
      }
      VLOG(2) << "Number of control inputs removed: " << num_control_inputs_removed;
      VLOG(2) << "Number of control inputs added: " << num_control_inputs_added;
      return success();
    }
    
    void UpdateControlDependenciesPass::runOnOperation() {
      ModuleOp module_op = getOperation();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildProblemReportingIntegrationTest.groovy

                // Should not be reported
                gradle.buildFinished { }
                classes {
                    inputs.property('p', project).optional(true)
                    doLast { t -> t.project }
                }
                // Should be reported
                tasks.register('broken') {
                    inputs.property('p', project).optional(true)
                    doLast { t -> t.project }
                }
                tasks.register('ok') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

        def "configuration inputs are tracked during task graph serialization"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: "a project that has a provider having undeclared configuration inputs, which is linked to a task"
            buildFile("""
                abstract class MyTask extends DefaultTask {
                    @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

        }
    
        static void assertDeclaredAsInput(String dir) {
            String inputs = System.getProperty("declaredSampleInputs")
            assert inputs: "Must declare source directory as input: 'integTest.usesJavadocCodeSnippets.set(true)'"
            assert inputs == dir
        }
    
        static void runSamplesFromFile(File file, Closure runner) {
            String text = file.text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListener.java

    public interface WorkInputListener {
        /**
         * Called when the execution of the given work item is imminent, or would have been if the primary inputs would not have been empty.
         * <p>
         *
         * @param work the identity of the unit of work to be executed
         * @param relevantBehaviors the file system inputs relevant to the task execution
         */
        void onExecute(UnitOfWork work, EnumSet<InputBehavior> relevantBehaviors);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top