Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for COMPILER (0.14 sec)

  1. src/cmd/go/internal/work/exec.go

    	compiler() string
    	linker() string
    }
    
    type noToolchain struct{}
    
    func noCompiler() error {
    	log.Fatalf("unknown compiler %q", cfg.BuildContext.Compiler)
    	return nil
    }
    
    func (noToolchain) compiler() string {
    	noCompiler()
    	return ""
    }
    
    func (noToolchain) linker() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "tensorflow/compiler/mlir/lite/utils/stateful_ops_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/string_utils.h"
    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		cannot be included due to a missing tool or ambiguous directory structure.
    //	-compiler name
    //		name of compiler to use, as in runtime.Compiler (gccgo or gc).
    //	-gccgoflags '[pattern=]arg list'
    //		arguments to pass on each gccgo compiler/linker invocation.
    //	-gcflags '[pattern=]arg list'
    //		arguments to pass on each go tool compile invocation.
    //	-installsuffix suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        input-output pairs as aliases (using `tf.aliasing_output` attribute) which read
        and write to the same resource. This aliasing information can then be propagated
        to XLA compiler for input/output buffer space optimizations.
      }];
    
      let constructor = "TFDevice::CreateMarkInputOutputAliasesPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    					sb.SetType(sym.SDYNIMPORT)
    				} else if strings.HasPrefix(ldr.SymName(rs), "go:info.") {
    					// Skip go.info symbols. They are only needed to communicate
    					// DWARF info between the compiler and linker.
    					continue
    				}
    			} else if target.IsPPC64() && ldr.SymName(rs) == ".TOC." {
    				// TOC symbol doesn't have a type but we do assign a value
    				// (see the address pass) and we can resolve it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top