Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for savevr (0.1 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/string-attr.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-splatted-mlir %s -o - | FileCheck %s
    
    # CHECK: tf.Const
    # CHECK-SAME: value = dense<""> : tensor<3x!tf_type.string>
    
    node {
      name: "save/SaveV2/shape_and_slices"
      op: "Const"
      attr {
        key: "_output_shapes"
        value {
          list {
            shape {
              dim {
                size: 3
              }
            }
          }
        }
      }
      attr {
        key: "dtype"
        value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 713 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/runtime/testdata/testprogcgo/dropm.go

    import "C"
    
    import (
    	"fmt"
    	"os"
    )
    
    func init() {
    	register("EnsureDropM", EnsureDropM)
    }
    
    var savedM uintptr
    
    //export GoCheckM
    func GoCheckM() {
    	m := runtime_getm_for_test()
    	if savedM == 0 {
    		savedM = m
    	} else if savedM != m {
    		fmt.Printf("m == %x want %x\n", m, savedM)
    		os.Exit(1)
    	}
    }
    
    func EnsureDropM() {
    	C.CheckM()
    	fmt.Println("OK")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/asm_mips64x.s

    	// g (R30) and REGTMP (R23)  might be clobbered by load_g. They
    	// are callee-save in the gcc calling convention, so save them.
    	MOVV	R23, savedR23-16(SP)
    	MOVV	g, savedG-8(SP)
    
    	JAL	runtimeĀ·load_g(SB)
    	MOVV	g_m(g), R1
    	MOVV	m_curg(R1), R1
    	MOVV	(g_stack+stack_hi)(R1), R2 // return value in R2
    
    	MOVV	savedG-8(SP), g
    	MOVV	savedR23-16(SP), R23
    	RET
    
    // The top-most function running on a goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_duplicate_resource_ops.mlir

        %outputs_21, %control_22 = tf_executor.island wraps "tf.Const"() {value = dense<""> : tensor<1x!tf_type.string>} : () -> tensor<1x!tf_type.string>
        %control_23 = tf_executor.island(%control_18) wraps "tf.SaveV2"(%arg1, %outputs_19, %outputs_21, %outputs_17) : (tensor<!tf_type.string>, tensor<1x!tf_type.string>, tensor<1x!tf_type.string>, tensor<20x4096xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 04:26:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libexport/save.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libexport/save.h"
    
    #include "tensorflow/core/platform/env.h"
    
    namespace tensorflow {
    namespace libexport {
    
    Status Save(const std::string& export_dir) {
      TF_RETURN_IF_ERROR(Env::Default()->RecursivelyCreateDir(export_dir));
      return absl::OkStatus();
    }
    
    }  // namespace libexport
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 11:37:59 UTC 2024
    - 1014 bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libexport/save.h

    #include <string>
    
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace libexport {
    
    // Writes a saved model to disk.
    //
    // Writes a saved model to the given `export_dir`.
    TF_EXPORT Status Save(const std::string& export_dir);
    
    }  // namespace libexport
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:11:53 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprogcgo/bindm.go

    		started.Add(1)
    		for started.Load() < cThreadNum {
    			runtime.Gosched()
    		}
    	}
    	m := runtime_getm_for_test()
    	mutex.Lock()
    	defer mutex.Unlock()
    	if savedM, ok := cThreadToM[thread]; ok && savedM != m {
    		fmt.Printf("m == %x want %x\n", m, savedM)
    		os.Exit(1)
    	}
    	cThreadToM[thread] = m
    }
    
    func EnsureBindM() {
    	C.CheckBindM()
    	fmt.Println("OK")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top