Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for MSVC (0.04 sec)

  1. src/internal/syscall/windows/syscall_windows.go

    	//
    	// Without this padding, TestChmod fails due to an argument validation error
    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    	// default alignment is used.” What we see here is padding rather than
    	// alignment, but maybe it is related.
    	_ uint32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\VS\VC\Tools\MSVC\14.33.31629\bin\Hostx64\x64;C:\VS\Common7\Tools;C:\VS\MSBuild\Current\Bin\", \"Machine\");
    
    # Add signtool.exe to the PATH. Note this path may need to be edited if updates
    # are made to the Windows 10 SDK.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	// Floating point arguments are passed in the XMM
    	// registers. Set them here in case any of the arguments
    	// are floating point values. For details see
    	//	https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention?view=msvc-170
    _4args:
    	MOVQ	24(SI), R9
    	MOVQ	R9, X3
    _3args:
    	MOVQ	16(SI), R8
    	MOVQ	R8, X2
    _2args:
    	MOVQ	8(SI), DX
    	MOVQ	DX, X1
    _1args:
    	MOVQ	0(SI), CX
    	MOVQ	CX, X0
    _0args:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. configure.py

      )
      return var
    
    
    def choose_compiler_Win(environ_cp):
      question = 'Do you want to use Clang to build TensorFlow?'
      yes_reply = 'Add "--config=win_clang" to compile TensorFlow with CLANG.'
      no_reply = 'MSVC will be used to compile TensorFlow.'
      var = int(
          get_var(
              environ_cp, 'TF_NEED_CLANG', None, True, question, yes_reply, no_reply
          )
      )
      return var
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. .bazelrc

    
    # On Windows, `__cplusplus` is wrongly defined without this switch
    # See https://devblogs.microsoft.com/cppblog/msvc-now-correctly-reports-__cplusplus/
    build:windows --copt=/Zc:__cplusplus
    build:windows --host_copt=/Zc:__cplusplus
    
    # Tensorflow uses M_* math constants that only get defined by MSVC headers if
    # _USE_MATH_DEFINES is defined.
    build:windows --copt=/D_USE_MATH_DEFINES
    build:windows --host_copt=/D_USE_MATH_DEFINES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    		// If the exception does not originate from go, the go runtime
    		// should not take responsibility of crashing the process.
    		return _EXCEPTION_CONTINUE_SEARCH
    	}
    
    	// VEH is called before SEH, but arm64 MSVC DLLs use SEH to trap
    	// illegal instructions during runtime initialization to determine
    	// CPU features, so if we make it to the last handler and we're
    	// arm64 and it's an illegal instruction and this is coming from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    \\??\\C:\\Windows\\system32\\conhost.exe "472490228-68470907838922115481214932-363220106-1296027029-1014590852-1678361664 7824
    "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Tools\\MSVC\\14.14.26428\\bin\\HostX64\\x86\\VCTIP.EXE"  11880
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadpe/ldpe.go

    	}
    
    	var s loader.Sym
    	var bld *loader.SymbolBuilder
    	// Microsoft's PE documentation is contradictory. It says that the symbol's complex type
    	// is stored in the pesym.Type most significant byte, but MSVC, LLVM, and mingw store it
    	// in the 4 high bits of the less significant byte.
    	switch uint8(pesym.Type&0xf0) >> 4 {
    	default:
    		return nil, 0, fmt.Errorf("%s: invalid symbol type %d", symname, pesym.Type)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.cc

          return absl::InternalError(
              absl::StrCat("parameter ", i,
                           ": codegen requires XLA parameters to "
                           "be non-tuples."));
        }
        // Please some compilers (e.g. MSVC) by avoiding the initialization of an
        // array of unknown size an empty initializer. Use "-1" for this; note that
        // this value is never used (the size attribute is set to 0 in ShapeInfo).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. tensorflow/c/eager/tape.h

      // Else, only when this is destructed.
      bool persistent_;
    };
    
    // Describes a callback for special-cased and more efficient jvp computation.
    //
    // Could just be a simple typedef in ForwardAccumulator, but MSVC chokes on
    // that.
    template <typename Gradient>
    class ForwardFunction
        : public std::function<Status(const std::vector<Gradient*>&,
                                      std::vector<Gradient*>*, bool)> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
Back to top