Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 475 for Cpp (0.11 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.h"
    
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.cc

    ==============================================================================*/
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_argument_view.h"
    
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_type_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/arg_view.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/attr_view.h"
    #include "tensorflow/c/experimental/ops/gen/model/arg_spec.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

            ] + args
            generateWithTemplate(projectDir, 'build.gradle', 'build.gradle', projectArgs)
            if (projectArgs.projectType == 'exe') {
                generateWithTemplate(projectDir,'src/main/cpp/exe.cpp', 'exe.cpp', projectArgs)
            }
            testProject.sourceFiles.times { s ->
                def fName = projectNumber == -1 ? "lib${s + 1}" : "project${projectNumber}lib${s + 1}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.h

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/views/op_view.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    class OpImplementationRenderer : public Renderer {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationDependenciesIntegrationTest.groovy

                }
            """
    
            file("lib/src/main/cpp/lib.cpp") << librarySource
            file("src/main/cpp/app.cpp") << applicationSource
        }
    
        @Override
        protected void makeComponentWithIncludedBuildLibrary() {
            buildFile << """
                apply plugin: 'cpp-application'
            """
    
            file('lib/build.gradle') << """
                apply plugin: 'cpp-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageIntegrationTest.groovy

            given:
            helloWorldApp.library.headerFiles.each { it.writeToDir(file("src/shared")) }
    
            file("src/main/cpp/main.cpp") << helloWorldApp.mainSource.content
            file("src/main/cpp2/hello.cpp") << helloWorldApp.librarySources[0].content
            file("src/main/sum-sources/sum.cpp") << helloWorldApp.librarySources[1].content
    
            and:
            buildFile << """
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/internal/DefaultCppTestSuite.java

    import org.gradle.language.cpp.internal.DefaultCppComponent;
    import org.gradle.language.cpp.internal.NativeVariantIdentity;
    import org.gradle.language.internal.DefaultComponentDependencies;
    import org.gradle.language.nativeplatform.internal.Names;
    import org.gradle.nativeplatform.test.cpp.CppTestExecutable;
    import org.gradle.nativeplatform.test.cpp.CppTestSuite;
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

    model {
        components { comp ->
            helloApi(NativeLibrarySpec)
            hello(NativeLibrarySpec) {
                sources {
                    cpp.lib ${notation}
                }
            }
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib ${notation}
                    cpp.lib library: 'hello'
                }
            }
        }
    }
    """
    
            when:
            succeeds "installMainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.h"
    
    #include <iterator>
    
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/op_implementation_renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/custom-layout/groovy/build.gradle

                }
    // end::c-sources[]
            }
            main(NativeExecutableSpec) {
    // tag::cpp-sources[]
                sources {
                    cpp {
                        source {
                            srcDir "src/source"
                            include "**/*.cpp"
                        }
                    }
                }
    // end::cpp-sources[]
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1014 bytes
    - Viewed (0)
Back to top