Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for llvm (0.07 sec)

  1. .bazelrc

    build:release_linux_base --python_path="/usr/bin/python3"
    # Set Clang as compiler. Use the actual path to clang installed in container.
    build:release_cpu_linux_base --repo_env=CC="/usr/lib/llvm-17/bin/clang"
    build:release_cpu_linux_base --repo_env=BAZEL_COMPILER="/usr/lib/llvm-17/bin/clang"
    # Test-related settings below this point.
    test:release_linux_base --build_tests_only --keep_going --test_output=errors --verbose_failures=true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. configure.py

      environ_cp[var_name] = val
      return val
    
    
    def set_clang_cuda_compiler_path(environ_cp):
      """Set CLANG_CUDA_COMPILER_PATH."""
      default_clang_path = '/usr/lib/llvm-17/bin/clang'
      if not os.path.exists(default_clang_path):
        default_clang_path = '/usr/lib/llvm-16/bin/clang'
        if not os.path.exists(default_clang_path):
          default_clang_path = which('clang') or ''
    
      clang_cuda_compiler_path = prompt_loop_or_load_from_env(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (IsPrefixTruncatedShapeEqualTo $input, $second_transpose)]>;
    
    class AllUsersAreAddOpsAndCanFuseWith<string op_to_fuse_with> : Constraint<CPred<
      "llvm::all_of($0.getUsers(), [&](Operation *user) {"
      "  if(!llvm::isa<TFL::AddOp>(user)) return false;"
      "  if(!user->getOperand(0).getDefiningOp<"#op_to_fuse_with#">()) return false;"
      "  return true;"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [%header%autowidth,compact]
    |===
    | Operating System | Tool Chain | Notes
    
    | macOS
    | http://gcc.gnu.org/[GCC] from Macports
    |
    
    | macOS
    | http://clang.llvm.org[Clang] from Macports
    |
    
    | UNIX-like
    | http://gcc.gnu.org/[GCC]
    |
    
    | UNIX-like
    | http://clang.llvm.org[Clang]
    |
    |===
    
    
    [[sec:tool_chain_installation]]
    == Tool chain installation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package demangle defines functions that demangle GCC/LLVM
    // C++ and Rust symbol names.
    // This package recognizes names that were mangled according to the C++ ABI
    // defined at http://codesourcery.com/cxx-abi/ and the Rust ABI
    // defined at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. tensorflow/BUILD

        "@gif//:__subpackages__",
        "@highwayhash//:__subpackages__",
        "@hwloc//:__subpackages__",
        "@icu//:__subpackages__",
        "@libjpeg_turbo//:__subpackages__",
        "@llvm-project//:__subpackages__",
        "@nsync//:__subpackages__",
        "@png//:__subpackages__",
        "@sobol_data//:__subpackages__",
        "@stablehlo//:__subpackages__",
        "@tf_runtime//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    // includes weak symbols.
    //
    // A bug in some versions of LLD (at least LLD 8) cause it to emit
    // several pthreads symbols as weak, but we need to import those. See
    // issue #31912 or https://bugs.llvm.org/show_bug.cgi?id=42442.
    //
    // When doing external linking, we hand everything off to the external
    // linker, which will create its own dynamic symbol tables. For
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        void ResolveBranchFunctions(::mlir::SymbolTableCollection* table,
            SmallVectorImpl<func::FuncOp> &functions) {
          functions.reserve(num_branches());
          for (int idx : llvm::seq<int>(0, num_branches()))
            functions.push_back(ResolveBranchFunction(table, idx));
        }
        // TODO(b/204997177): Deprecate and remove.
        void get_branch_functions(SmallVectorImpl<func::FuncOp> &functions) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			fmt.Fprintf(&b, "\t%s,\n", n.C)
    		} else {
    			fmt.Fprintf(&b, "\t0,\n")
    		}
    	}
    	// for the last entry, we cannot use 0, otherwise
    	// in case all __cgodebug_data is zero initialized,
    	// LLVM-based gcc will place the it in the __DATA.__common
    	// zero-filled section (our debug/macho doesn't support
    	// this)
    	fmt.Fprintf(&b, "\t1\n")
    	fmt.Fprintf(&b, "};\n")
    
    	// do the same work for floats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    						{Attr: dwarf.AttrProducer, Val: "Debian clang version 3.5.0-10 (tags/RELEASE_350/final) (based on LLVM 3.5.0)", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLanguage, Val: int64(12), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "hello.c", Class: dwarf.ClassString},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top