Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 454 for defs (0.04 sec)

  1. tensorflow/compiler/jit/xla_kernel_creator.cc

    #include <vector>
    
    #include "absl/memory/memory.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_format.h"
    #include "tensorflow/compiler/jit/compilability_check_util.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/kernels/xla_ops.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    #include "tensorflow/compiler/tf2xla/mlir_bridge_pass.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 22:24:01 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

                "ir/tfl_ops_interface.h.inc",
            ),
            (
                ["-gen-op-interface-defs"],
                "ir/tfl_ops_interface.cc.inc",
            ),
            (
                ["-gen-dialect-decls"],
                "ir/tfl_ops_dialect.h.inc",
            ),
            (
                ["-gen-dialect-defs"],
                "ir/tfl_ops_dialect.cc.inc",
            ),
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cpu_device.cc

    // Registers the XLA_CPU device, which is an XlaDevice instantiation that runs
    // operators using XLA via the XLA "Host" (CPU) backend.
    
    #include <array>
    
    #include "absl/memory/memory.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/kernels/xla_ops.h"
    #include "tensorflow/compiler/jit/xla_compile_on_demand_op.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. ci/official/requirements_updater/README.md

       parameter of the `python_register_multi_toolchains` function.
    
    3) In the `BUILD.bazel` file, add a load statement for the new version, e.g.
    
       ```
          load("@python//3.11:defs.bzl",
               compile_pip_requirements_3_11 = "compile_pip_requirements")
       ```
    
       Add a new entry for the loaded `compile_pip_requirements`, e.g.
    
       ```
          compile_pip_requirements_3_11(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

        String sourceType = "cpp"
        def libObjects = new CompilationOutputsFixture(file("library/build/obj/main/debug"), [".o", ".obj"])
        def appObjects = new CompilationOutputsFixture(file("app/build/obj/main/debug"), [".o", ".obj"])
    
        def install = installation("app/build/install/main/debug")
        def libraryDebug = tasks(LIBRARY).debug
        def appDebug = tasks(APP).debug
        def installApp = appDebug.install
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    				// If the cancel variable is defined outside function scope,
    				// do not analyze it.
    				if funcScope.Contains(v.Pos()) {
    					cancelvars[v] = stmt
    				}
    			} else if v, ok := pass.TypesInfo.Defs[id].(*types.Var); ok {
    				cancelvars[v] = stmt
    			}
    		}
    		return true
    	})
    
    	if len(cancelvars) == 0 {
    		return // no need to inspect CFG
    	}
    
    	// Obtain the CFG.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/BUILD

    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    
    # defs.cc/h only contains string constants, and can be included in mobile
    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  8. fastapi/openapi/models.py

        ref: Optional[str] = Field(default=None, alias="$ref")
        dynamicRef: Optional[str] = Field(default=None, alias="$dynamicRef")
        defs: Optional[Dict[str, "SchemaOrBool"]] = Field(default=None, alias="$defs")
        comment: Optional[str] = Field(default=None, alias="$comment")
        # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    			}
    			ident := idents[test.name][0]
    			def := info.Defs[ident]
    			if def == test.obj {
    				t.Fatalf("info.Defs[%s] contains the test object", test.name)
    			}
    			if orig := originObject(test.obj); def != orig {
    				t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
    			}
    			if def.Pkg() != test.obj.Pkg() {
    				t.Errorf("Pkg() = %v, want %v", def.Pkg(), test.obj.Pkg())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_gpu_device.cc

    #include <array>
    #include <set>
    
    #include "absl/memory/memory.h"
    #include "absl/strings/numbers.h"
    #include "absl/strings/str_split.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/kernels/xla_ops.h"
    #include "tensorflow/compiler/jit/xla_device.h"
    #include "tensorflow/compiler/jit/xla_device_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top