Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for output1 (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing [\${input.name}]"
                        def output = outputs.file(input.name + ".green")
                        output.text = input.text + ".green"
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

        // Convert back to a C++ Tensor and ensure we get expected output.
        Tensor output;
        ASSERT_EQ(absl::OkStatus(), TF_TensorToTensor(dst, &output)) << line;
        ASSERT_EQ(src.NumElements(), output.NumElements()) << line;
        for (int64_t i = 0; i < src.NumElements(); ++i) {
          ASSERT_EQ(data[i], output.flat<tstring>()(i)) << line;
        }
    
        TF_DeleteTensor(dst);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "converting \${input.name} to red"
                        assert input.file
                        def output = outputs.file(input.name + ".red")
                        output.text = input.text + ".red"
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            when:
            run("count")
    
            then:
            output.count("service:") == 6
            output.count("service: created with value = 10") == 2
            output.count("service: value is 11") == 2
            output.count("service: closed with value 11")
    
            when:
            run("count")
    
            then:
            output.count("service:") == 3
            outputContains("service: created with value = 10")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                dependencies { compile files('a.jar') }
                task fileProducer {
                    outputs.file 'build/out.txt'
                    doLast {
                        file('build/out.txt').text = 'some content'
                    }
                }
                task dirProducer {
                    outputs.dir 'build/outdir'
                    doLast {
                        file('build/outdir').mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // Function with resources lifted. Can be nullptr if nothing needs to change.
      func::FuncOp lifted_callee;
      // Mapping from old resource outputs to their aliasing output inputs.
      llvm::SmallDenseMap<int64_t, int64_t> old_outputs_aliasing_old_inputs;
      // Mapping from old to new output indices in case any output is removed.
      llvm::SmallVector<int64_t, 4> old_to_new_output_indices;
      // ResourceArgUseInfo for each old resource argument.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
      Output variable = ops::Variable(root.WithOpName("variable"),
                                      PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(root.WithOpName("read"), variable);
      Output neg = ops::Negate(root.WithOpName("negate"), read);
      Output identity = ops::Negate(root.WithOpName("identity"), neg);
      Output add = ops::Add(root.WithOpName("add"), identity, neg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

      func.func @conv_with_filter_larger_than_1MB(%arg0: tensor<1x224x224x3xf32> {tf_saved_model.index_path = ["input"]}) -> (tensor<1x224x112x512xf32> {tf_saved_model.index_path = ["output"]}) attributes {tf.entry_function = {control_outputs = "", inputs = "serving_default_input:0", outputs = "PartitionedCall:0"}, tf_saved_model.exported_names = ["serving_default"]} {
        %cst = "tf.Const"() {value = dense<2> : tensor<32x32x3x512xi8>} : () -> tensor<32x32x3x512xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  9. src/testing/testing.go

    		// (This displays the logged output after the --- FAIL line.)
    		format += "%s"
    		args = append(args[:len(args):len(args)], c.output)
    		c.output = c.output[:0]
    	}
    
    	if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
    		// We're flushing to the actual output, so track that this output is
    		// associated with a specific test (and, specifically, that the next output
    		// is *not* associated with that test).
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    		return regInfo{inputs: []inputInfo{{regs: m}}, outputs: []outputInfo{{regs: m}}}
    	}
    	if op == OpArgIntReg {
    		reg := v.Block.Func.Config.intParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op == OpArgFloatReg {
    		reg := v.Block.Func.Config.floatParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op.IsCall() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top