Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 119 for test1f (0.16 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils_test.cc

      EXPECT_TRUE(succeeded(parse_result));
    
      auto uq_requant_op = dyn_cast_or_null<TF::UniformRequantizeOp>(block.back());
      EXPECT_TRUE(uq_requant_op);
    
      return uq_requant_op;
    }
    
    TEST_F(TfToUniformAttributeUtilsTest, UniformQuantizedAddOpAttributes) {
      TfToUniformAttributeUtilsTestPeer test_peer(&ctx_);
    
      constexpr absl::string_view kAddOpExpr =
          R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 11 00:47:05 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils_test.cc

      func::FuncOp fused_lstm_func_;
      func::FuncOp fused_lstm_func_cifg_;
      func::FuncOp fused_ln_lstm_func_;
      std::unique_ptr<mlir::MLIRContext> context_;
      std::unique_ptr<mlir::Builder> builder_;
    };
    
    TEST_F(LstmUtilsTest, ConvertLSTMCellSimple) {
      mlir::TFL::ConvertLSTMCellSimpleToFusedLSTM convert(fused_lstm_func_);
    
      auto result = convert.RewriteFunc();
      EXPECT_FALSE(failed(result));
      fused_lstm_func_.dump();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    /*-----------------------------------------------------------------
     * CU_Test, CU_pTest
     *-----------------------------------------------------------------*/
    /** CUnit test case data type.
     *  CU_Test is a double linked list of unit tests.  Each test has
     *  a name, a callable test function, and a flag for whether the 
     *  test is active and thus executed during a  test run.  A test 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                        operationDisplayName "[2] bar"
                                        testDisplayName "[2] bar"
                                    }
                                }
                                testMethodSuite("test2(String)") {
                                    operationDisplayName "2nd test"
                                    testDisplayName "2nd test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. src/testing/fstest/testfs.go

    // The contents of fsys must not change concurrently with TestFS.
    //
    // If TestFS finds any misbehaviors, it returns either the first error or a
    // list of errors. Use [errors.Is] or [errors.As] to inspect.
    //
    // Typical usage inside a test is:
    //
    //	if err := fstest.TestFS(myFS, "file/that/should/be/present"); err != nil {
    //		t.Fatal(err)
    //	}
    func TestFS(fsys fs.FS, expected ...string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux_test.go

    			func(base string) error {
    				/* test1/dir points to test2 and test2/dir points to test1 */
    				if err := os.MkdirAll(filepath.Join(base, "test1"), defaultPerm); err != nil {
    					return err
    				}
    				if err := os.MkdirAll(filepath.Join(base, "test2"), defaultPerm); err != nil {
    					return err
    				}
    				if err := os.Symlink(filepath.Join(base, "test2"), filepath.Join(base, "test1/dir")); err != nil {
    					return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

        def "downloads artifacts in parallel from a Maven repo - #expression"() {
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
            def m4 = mavenRepo.module('test', 'test4', '1.0').publish()
    
            buildFile << """
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/testx.go

    	issue7978sync = 0
    	go issue7978go()
    	// test in c code, before callback
    	issue7978wait(0, 1)
    	issue7978check(t, "_Cfunc_issue7978c(", "", 1)
    	// test in go code, during callback
    	issue7978wait(2, 3)
    	issue7978check(t, "test.issue7978cb(", "test.issue7978go", 3)
    	// test in c code, after callback
    	issue7978wait(4, 5)
    	issue7978check(t, "_Cfunc_issue7978c(", "_cgoexpwrap", 1)
    	// test in go code, after return from cgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			ok = false
    		}
    	}
    	return ok
    }
    
    func isTestingType(typ types.Type, testingType string) bool {
    	// No Unalias here: I doubt "go test" recognizes
    	// "type A = *testing.T; func Test(A) {}" as a test.
    	ptr, ok := typ.(*types.Pointer)
    	if !ok {
    		return false
    	}
    	return analysisutil.IsNamedType(ptr.Elem(), "testing", testingType)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/codegen_test.cc

      // The other fields in metadata_result are tested as part of the generated
      // header test.
    
      // This specific golden test checks a binary file. It can potentially run into
      // issues due to ABIs not being stable, but has not so far.
      // If we see any ABI issues, we should reconsider this specific test case.
      CompareWithGoldenFile("tensorflow/compiler/aot/codegen_test_o.golden",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top