Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,769 for Tresults (0.14 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/aot/tests/tfcompile_test.cc

          EXPECT_EQ(muladd.result0_data()[i], results0[i]);
          EXPECT_EQ(muladd.result1(i / 2, i % 2), results1[i]);
          EXPECT_EQ(muladd.result1_data()[i], results1[i]);
        }
        EXPECT_EQ(muladd.result0_data(), muladd.results()[0]);
        EXPECT_EQ(muladd.result1_data(), muladd.results()[1]);
    
        const ::foo::bar::MatMulAndAddComp& muladd_const = muladd;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-results.png

    teamcity-results.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top