Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 133 for fmin32 (0.34 sec)

  1. src/cmd/compile/internal/test/testdata/fp_test.go

    	fail64("/", div64_ssa, a, b, 0.75)
    	fail64("neg", neg64_ssa, a, b, -7)
    
    	fail32("+", add32_ssa, c, d, 7.0)
    	fail32("*", mul32_ssa, c, d, 12.0)
    	fail32("-", sub32_ssa, c, d, -1.0)
    	fail32("/", div32_ssa, c, d, 0.75)
    	fail32("neg", neg32_ssa, c, d, -7)
    
    	// denorm-squared should underflow to zero.
    	fail32("*", mul32_ssa, tiny, tiny, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cpp/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    class Greeter {
        public:
        void LIB_FUNC hello();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 171 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibrariesWithApiDependencies.groovy

        return 0;
    }
    """)
        }
    
        final CppSourceFileElement deck = new CppSourceFileElement() {
            final SourceFileElement header = ofFile(new SourceFile("public", "deck.h", """
    #include "card.h"
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    class EXPORT_FUNC Deck {
        Card card;
    public:
        void shuffle();
        Card& draw();
    };
    """))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ExeWithLibraryUsingLibraryHelloWorldApp.groovy

                    sayHello();
                    return 0;
                }
            """)
        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "hello.h", """
                #ifdef _WIN32
                #define DLL_FUNC __declspec(dllexport)
                #else
                #define DLL_FUNC
                #endif
    
                void DLL_FUNC sayHello();
            """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            installation('build/install/main/win32/debug').assertInstalled()
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "can build library from visual studio"() {
            useMsbuildTool()
            def debugBinaryLib = staticLibrary("build/libs/main/static/win32/debug/main")
            def debugBinaryDll = sharedLibrary("build/libs/main/shared/win32/debug/main")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/util/src/util/headers/util.h

    #ifdef _WIN32
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 116 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/arith_test.go

    		-nineteenS + 1, -2*nineteenS - 5, -3*nineteenS + 3, -5*nineteenS + 4, -12345*nineteenS - 2,
    		minI32, minI32 + 1, minI32 + 2, minI32 + 3, minI32 + 4,
    		minI32 + 5, minI32 + 6, minI32 + 7, minI32 + 8,
    		minI32 + 9, minI32 + 10, minI32 + 11, minI32 + 12,
    		minI32 + 13, minI32 + 14, minI32 + 15, minI32 + 16,
    		minI32 + 17, minI32 + 18, minI32 + 19, minI32 + 20,
    		maxI32, maxI32 - 1, maxI32 - 2, maxI32 - 3, maxI32 - 4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/custom-layout/groovy/src/include/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  10. tensorflow/c/eager/gradient_checker.cc

        TF_RETURN_IF_ERROR(
            RunAndMaybeSum(ctx, forward, theta_inputs, f_outputs, use_function));
        AbstractTensorHandlePtr fMinus(f_outputs[0]);
    
        // Take Difference of both estimates: (f(theta + eps) - f(theta - eps)).
        TF_RETURN_IF_ERROR(
            ops::Sub(ctx, fPlus.get(), fMinus.get(), f_outputs, "sub_top"));
        AbstractTensorHandlePtr fDiff(f_outputs[0]);
    
        // Calculate using the difference quotient definition:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top