Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 755 for Tresults (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-build-results.png

    teamcity-build-results.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. tests/create_test.go

    	}
    
    	var result2 User
    	if err := DB.Where("name = ?", "create_from_map_2").First(&result2).Error; err != nil || result2.Age != 19 {
    		t.Fatalf("failed to query data after create from slice of map, got error %v", err)
    	}
    
    	var result3 User
    	if err := DB.Where("name = ?", "create_from_map_3").First(&result3).Error; err != nil || result3.Age != 20 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

            then:
            TestFile results1 = testDirectory.file('build/test-results/test/TEST-org.gradle.SomeTest.xml')
            TestFile results2 = testDirectory.file('build/test-results/test/TEST-org.gradle.SomeTest2.xml')
            results1.assertIsFile()
            results2.assertIsFile()
            assertThat(results1.linesThat(containsString('VM START TIME =')).get(0), equalTo(results2.linesThat(containsString('VM START TIME =')).get(0)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. tests/joins_test.go

    		return results[i].PetID > results[j].PetID
    	})
    
    	sort.Slice(results, func(i, j int) bool {
    		return user.Pets[i].ID > user.Pets[j].ID
    	})
    
    	if len(results) != 2 || results[0].Name != user.Pets[0].Name || results[1].Name != user.Pets[1].Name {
    		t.Errorf("Should find all two pets with Join select, got %+v", results)
    	}
    }
    
    func TestJoinWithOmit(t *testing.T) {
    	user := *GetUser("joins_with_omit", Config{Pets: 2})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top