Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,339 for Tresults (0.24 sec)

  1. tensorflow/compiler/jit/ops/xla_ops.cc

        .Attr("Tconstants: list(type) >= 0")
        .Input("args: Targs")
        .Attr("Targs: list(type) >= 0")
        .Input("resources: Nresources * resource")
        .Attr("Nresources: int >= 0")
        .Output("results: Tresults")
        .Attr("Tresults: list(type) >= 0")
        .Attr("function: func")
        // XLA random-number generation ops are stateful.
        // TODO(phawkins): create stateful and non-stateful variants of XlaLaunch.
        .SetIsStateful()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/kind_string.go

    	_ = x[TANY-26]
    	_ = x[TSTRING-27]
    	_ = x[TUNSAFEPTR-28]
    	_ = x[TIDEAL-29]
    	_ = x[TNIL-30]
    	_ = x[TBLANK-31]
    	_ = x[TFUNCARGS-32]
    	_ = x[TCHANARGS-33]
    	_ = x[TSSA-34]
    	_ = x[TTUPLE-35]
    	_ = x[TRESULTS-36]
    	_ = x[NTYPE-37]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:38 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tpu-merge-variables-with-execute.mlir

      // CHECK-SAME: device_var_updates_indices = [0, -1]
      %execute:2 = "tf_device.launch"() ({
        %0:2 = "tf.TPUExecute"(%read0, %read1, %read2, %compile#1) {
          Targs = [tensor<32xf32>, tensor<64xf32>, tensor<16xf32>],
          Tresults = [tensor<32xf32>, tensor<16xf32>]}
          : (tensor<32xf32>, tensor<64xf32>, tensor<16xf32>, tensor<2x!tf_type.string>) -> (tensor<32xf32>, tensor<16xf32>)
        tf_device.return %0#0, %0#1 : tensor<32xf32>, tensor<16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    		}
    		return ttup.second.Compare(xtup.second)
    
    	case TRESULTS:
    		xResults := x.extra.(*Results)
    		tResults := t.extra.(*Results)
    		xl, tl := len(xResults.Types), len(tResults.Types)
    		if tl != xl {
    			if tl < xl {
    				return CMPlt
    			}
    			return CMPgt
    		}
    		for i := 0; i < tl; i++ {
    			if c := tResults.Types[i].Compare(xResults.Types[i]); c != CMPeq {
    				return c
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      const auto get_xla_function_info =
          [](const Node& node) -> absl::StatusOr<XlaFunctionInfo> {
        XlaFunctionInfo result;
        TF_RETURN_IF_ERROR(GetNodeAttr(node.attrs(), "_variable_start_index",
                                       &result.variable_start_index));
        result.function_name = node.type_string();
        return result;
      };
      return BuildXlaLaunchOps(graph, is_xla_launch_node, get_xla_function_info,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/fmt.go

    		return
    	}
    	if t.Kind() == TTUPLE {
    		b.WriteString(t.FieldType(0).String())
    		b.WriteByte(',')
    		b.WriteString(t.FieldType(1).String())
    		return
    	}
    
    	if t.Kind() == TRESULTS {
    		tys := t.extra.(*Results).Types
    		for i, et := range tys {
    			if i > 0 {
    				b.WriteByte(',')
    			}
    			b.WriteString(et.String())
    		}
    		return
    	}
    
    	if t == AnyType || t == ByteType || t == RuneType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/size.go

    // containing pointer data. Anything after this offset is scalar data.
    //
    // PtrDataSize is only defined for actual Go types. It's an error to
    // use it on compiler-internal types (e.g., TSSA, TRESULTS).
    func PtrDataSize(t *Type) int64 {
    	CalcSize(t)
    	x := t.ptrBytes
    	if t.Kind() == TPTR && t.Elem().NotInHeap() {
    		// Note: this is done here instead of when we're setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/build/ExecutionResultTest.groovy

            expect:
            def result = successful.withFailures(otherSuccessful)
            result.value == 12
            result.failures.empty
    
            def result2 = successful.withFailures(failed)
            result2.failures == [failure1]
            result2.failure == failure1
    
            def result3 = failed.withFailures(otherFailed)
            result3.failures == [failure1, failure2]
            result3.failure instanceof MultipleBuildFailures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:42 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Result.java

            }
            return new Result<>(result.hasErrors() || hasErrors(problems), result.get(), list);
        }
    
        public static <T> Result<T> addProblems(Result<T> result, Result<?>... results) {
            final List<ModelProblem> problemsList = new ArrayList<>();
    
            for (Result<?> result1 : results) {
                for (ModelProblem modelProblem : result1.getProblems()) {
                    problemsList.add(modelProblem);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        // attribute is not empty, those shapes are used in its shape function
        // as result shapes instead of propagating operand shapes as result shapes.
        // This allows for different result shapes from operand shapes. While these
        // shapes are imported and set as a part of the result type, there is no
        // indicator differentiating between having no output shapes compared to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top