Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for savefpr (0.18 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	// A valid call will split like {"", "savegpr0", "20"}
    	if len(s) != 3 {
    		return 0, false // Not an abi func.
    	}
    	minReg := 14 // _savegpr0_{n}, _savegpr1_{n}, _savefpr_{n}, 14 <= n <= 31
    	offMul := 4  // 1 instruction per register op.
    	switch s[1] {
    	case "savegpr0", "savegpr1", "savefpr":
    	case "restgpr0", "restgpr1", "restfpr":
    	case "savevr", "restvr":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/savedir.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    // +build ignore
    
    // Savedir archives a directory tree as a txtar archive printed to standard output.
    //
    // Usage:
    //
    //	go run savedir.go /path/to/dir >saved.txt
    //
    // Typically the tree is later extracted during a test with tg.extract("testdata/saved.txt").
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/cgo/abi_ppc64x.h

    	MOVD	R0, 8(R1)                                          \
    	MOVDU	R1, -(extra)-FIXED_FRAME-SAVE_ALL_REG_SIZE(R1)     \
    	SAVE_GPR(extra+FIXED_FRAME)                                \
    	SAVE_FPR(extra+FIXED_FRAME+SAVE_GPR_SIZE)                  \
    	SAVE_VR(extra+FIXED_FRAME+SAVE_GPR_SIZE+SAVE_FPR_SIZE, R0) \
    	MOVD	$0, R0
    
    // This unstacks the frame, restoring all callee-save registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/runtime/export_debug_amd64_test.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    type sigContext struct {
    	savedRegs sigcontext
    	// sigcontext.fpstate is a pointer, so we need to save
    	// the its value with a fpstate1 structure.
    	savedFP fpstate1
    }
    
    func sigctxtSetContextRegister(ctxt *sigctxt, x uint64) {
    	ctxt.regs().rdx = x
    }
    
    func sigctxtAtTrapInstruction(ctxt *sigctxt) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset_test.py

      """Test cases for RepresentativeDatasetSaver."""
    
      def test_save_raises_error(self):
        saver = repr_dataset.RepresentativeDatasetSaver()
        repr_ds = {'serving_default': []}
    
        with self.assertRaisesRegex(
            NotImplementedError, 'Method "save" is not implemented.'
        ):
          saver.save(repr_ds)
    
    
    class TfRecordRepresentativeDatasetTest(test.TestCase):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 04 07:35:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

        tags: Tags for the meta graph def.
        init_op_name: Name of the node for initialization.
        saver_def: `saver_pb2.SaverDef` to create a `saver.Saver` from. The created
          saver will be used to save and load variables. This may be `None` if no
          variables exist in the graph.
        checkpoint_dir: Path to checkpoint file where variable values are saved.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/make_test_graphs.py

      init_op = variables.global_variables_initializer()
      saver = saver_lib.Saver(write_version=saver_pb2.SaverDef.V1)
      with session.Session() as sess:
        sess.run(init_op)
        sess.run(y.assign(y + 42))
        # Without the checkpoint, the variable won't be set to 42.
        ckpt = os.path.join(out_dir, 'test_graph_tfadd_with_ckpt.ckpt')
        saver.save(sess, ckpt)
    
    
    def tfadd_with_ckpt_saver(out_dir):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/embed/internal/embedtest/testdata/.hidden/_more/tip.txt

    #define struct union /* Great space saver */...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 13:50:44 UTC 2020
    - 45 bytes
    - Viewed (0)
  9. src/embed/internal/embedtest/testdata/.hidden/.more/tip.txt

    #define struct union /* Great space saver */...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 13:50:44 UTC 2020
    - 45 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/README

    The path@vers prefix required of files in the zip file is added
    automatically by the proxy: the files in the archive have names without
    the prefix, like plain "go.mod", "x.go", and so on.
    
    See ../addmod.go and ../savedir.go for tools to generate txtar files,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top