Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 871 for output1 (0.16 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing [\${input.name}]"
                        assert ${lenient} || input.file
                        def output = outputs.file(input.name + "." + parameters.targetColor.get())
                        if (input.file) {
                            output.text = input.text + "-" + parameters.targetColor.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  2. tensorflow/c/eager/gradients.cc

            absl::StrCat("ZerosLike", ToId(t)).c_str()));
      }
      TF_RETURN_IF_ERROR(op->AddInput(t));
      int num_outputs = 1;
      std::vector<AbstractTensorHandle*> outputs(num_outputs);
      TF_RETURN_IF_ERROR(
          op->Execute(absl::Span<AbstractTensorHandle*>(outputs), &num_outputs));
      *result = outputs[0];
      return absl::OkStatus();
    }
    }  // namespace
    
    Status GradientRegistry::Register(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      }
      return absl::OkStatus();
    }
    
    Status MlirFunctionContext::Finalize(OutputList* outputs,
                                         AbstractFunction** f) {
      Block& body = func_.getBody().front();
      SmallVector<Value, 8> ret_operands;
      for (auto* output : outputs->outputs) {
        auto* operand = dyn_cast<MlirTensor>(output);
        if (!operand)
          return InvalidArgument("Capturing eager tensors is not supported yet.");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

                    @javax.inject.Inject
                    abstract FileSystemOperations getFileSystemOperations()
    
                    @Override
                    void transform(TransformOutputs outputs) {
                        File augmentedDir = outputs.dir("augmented")
    
                        System.out.println "Augmenting..."
                        fileSystemOperations.copy {
                            it.from input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

              "should have been identified by this point.");
        }
    
        shardings.push_back(std::move(sharding.value()));
      }
    
      return absl::OkStatus();
    }
    
    // Determines XlaSharding for inputs and outputs. If there are aliased
    // inputs/outputs for which no sharding was found directly, the corresponding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

            }
        }
        task utilJar {
            outputs.file("\${project.name}-util.jar")
        }
        task jar {
            outputs.file("\${project.name}.jar")
        }
        task utilClasses {
            outputs.file("\${project.name}-util.classes")
        }
        task classes {
            outputs.file("\${project.name}.classes")
        }
        task dir {
            outputs.file("\${project.name}")
        }
        task utilDir {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    }
    
    // A SavedConcreteFunction whose (inputs + captures) = functiondef inputs,
    // and whose outputs = functiondef outputs should successfully load.
    TEST_F(SavedConcreteFunctionLoadingTest, SuccessfulLoad) {
      // `saved` has 1 input, 2 captures, 3 outputs
      SavedConcreteFunction saved;
      *saved.mutable_canonicalized_input_signature() =
          testing::SingleArgInputSignature();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            // TODO - should just write this as a bean field of the outputs object, and also do this for the registered properties above
            if (task.outputs.upToDateSpec.isEmpty) {
                writeBoolean(false)
            } else {
                writeBoolean(true)
                write(task.outputs.upToDateSpec)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

            taskTypeWithOutputFileProperty()
            buildFile << """
                def taskA = tasks.create("a", FileProducer) {
                    // no output value
                }
                def taskB = tasks.create("b", FileProducer) {
                    output = file("b.txt")
                }
                tasks.register("c") {
                    dependsOn taskA.output.orElse(taskB.output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"top":      {report.Text, nil, nil, false, "Outputs top entries in text form", reportHelp("top", true, true)},
    	"traces":   {report.Traces, nil, nil, false, "Outputs all profile samples in text form", ""},
    	"tree":     {report.Tree, nil, nil, false, "Outputs a text rendering of call graph", reportHelp("tree", true, true)},
    
    	// Save binary formats to a file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top