Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 707 for output0 (0.11 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepTest.groovy

            }
    
            then:
            1 * deleter.deleteRecursively(temporaryWorkspace)
    
            then:
            immutableWorkspace.file("output.txt").text == "output"
            0 * _
        }
    
        def "keeps failed outputs in temporary workspace"() {
            def delegateFailure = Mock(Exception)
            def delegateDuration = Duration.ofSeconds(1)
            def delegateResult = Stub(CachingResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 14:32:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

              e->dst_input());
        }
      }
    
      auto output = std::make_unique<Graph>((*graph)->op_registry());
      TF_RETURN_WITH_CONTEXT_IF_ERROR(
          EncapsulateSubgraphsInFunctions(
              kXlaClusterIdAttr, **graph, RewriteSubgraph,
              /*reuse_existing_functions=*/true, &output, flib_def),
          "EncapsulateXlaComputationsPass failed");
      graph->swap(output);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. tensorflow/c/while_loop_test.cc

      params_->body_outputs[1] = params_->body_inputs[1];
    
      // Finalize while loop
      ExpectOK();
    
      // Validate while loop outputs returned by TF_FinishWhile()
      EXPECT_TRUE(outputs_[0].oper != nullptr);
      EXPECT_GE(outputs_[0].index, 0);
      EXPECT_TRUE(outputs_[1].oper != nullptr);
      EXPECT_GE(outputs_[1].index, 0);
    
      // Check that cond and body inputs are not present
      for (int i = 0; i < params_->ninputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        if (!output_tensor_type) {
          return switchn.emitOpError()
                 << "expects outputs to have tensor type but got " << output_type;
        }
    
        // If the output type is a ref type, then the operand type should also be of
        // the same ref type. However, if the output type is a non-ref type T, then
        // the operand can be tensor of type T or T_REF.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

    // CHECK: "tf.LookupTableSizeV2"(%arg1)
    // CHECK: "tf.LookupTableFindV2"(%arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                        @Override
                        public void transform(TransformOutputs outputs) {
                            File input = getInputArtifact().get().getAsFile();
                            File output = outputs.file(input.getName() + ".txt");
    
                            try {
                                Files.write(output.toPath(), Collections.singleton(String.valueOf(input.length())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		gpcas       = regInfo{inputs: []regMask{gp | sp | sb, gp, gp}, outputs: []regMask{gp}}
    		fp01        = regInfo{inputs: nil, outputs: []regMask{fp}}
    		fp11        = regInfo{inputs: []regMask{fp}, outputs: []regMask{fp}}
    		fpgp        = regInfo{inputs: []regMask{fp}, outputs: []regMask{gp}}
    		gpfp        = regInfo{inputs: []regMask{gp}, outputs: []regMask{fp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      for (const Value original_output_value : outputs) {
        // Use the mapped values in the newly created function that correspond to
        // outputs in the original function.
        result_values.push_back(mapper.lookup(original_output_value));
      }
      builder.create<func::ReturnOp>(module_op.getLoc(), result_values);
    
      // 2) Create XlaCallModuleOp (with ops mapped).
      CreateXlaCallModuleOp(inputs, outputs, result_types, reverse_subgraph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        ${server.callFromBuild('size-transform')}
                        File output = outputs.file(input.name + parameters.suffix)
                        output.text = String.valueOf(input.length())
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top