Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 114 for as_str (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        // CHECK: [[exe:%.*]] = tf_executor.island({{.*}}) wraps "tf.TPUExecuteAndUpdateVariables"
        %exe_control = tf_executor.island wraps "tf.TPUExecuteAndUpdateVariables"(%arg0, %arg0, %key) {
            device_var_reads_indices = [0, 1],
            device_var_updates_indices = [0, 1],
            device = "task:0"
        } : (!tf_res, !tf_res, !tf_str) -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  2. src/internal/bytealg/index_ppc64x.s

    	// R17=index value 17
    	// R18=index value 18
    	// R19=index value 1
    	// R26=LASTBYTE of string
    	// R27=LASTSTR last start byte to compare with sep
    	// R8, R9 scratch
    	// V0=sep left justified zero fill
    	// CR4=sep length >= 16
    
    #define SEPMASK V17
    #define LASTBYTE R26
    #define LASTSTR R27
    #define ONES V20
    #define SWAP V21
    #define SWAP_ VS53
    TEXT indexbody<>(SB), NOSPLIT|NOFRAME, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_arm64.s

    	MOVD	res+0(FP), res_ptr
    	MOVD	in+8(FP), a_ptr
    
    	MOVD	p256const0<>(SB), const0
    	MOVD	p256const1<>(SB), const1
    
    	// Begin point double
    	LDP	4*16(a_ptr), (x0, x1)
    	LDP	5*16(a_ptr), (x2, x3)
    	CALL	p256SqrInternal<>(SB)
    	STP	(y0, y1), zsqr(0*8)
    	STP	(y2, y3), zsqr(2*8)
    
    	LDP	0*16(a_ptr), (x0, x1)
    	LDP	1*16(a_ptr), (x2, x3)
    	p256AddInline
    	STx(m)
    
    	LDx(z1in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      include_directories.push_back(local_include_directory.c_str());
      include_directories.push_back(nullptr);
      if (!parser->Parse(contents.c_str(), include_directories.data(),
                         filename.c_str())) {
        fprintf(stderr, "Failed to parse flatbuffer schema '%s'\n",
                contents.c_str());
        return false;
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/query.go

    	if e.mPath != pq.pattern {
    		modDetail = fmt.Sprintf("for module %s, ", e.mPath)
    	}
    
    	return fmt.Sprintf("%s%s conflicts with %s",
    		modDetail,
    		argStr(pq, e.proposed.version),
    		argStr(rq, e.conflict.version))
    }
    
    func versionOkForMainModule(version string) bool {
    	return version == "upgrade" || version == "patch"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

      auto int_attr = mlir::dyn_cast_or_null<IntegerAttr>(attrs.get(attribute));
      if (!int_attr) {
        return func.emitError()
               << attribute.c_str() << " attribute is not set or not an integer";
      }
      builder->Int(attribute.c_str(), int_attr.getInt());
      return success();
    }
    
    LogicalResult ConvertSSDPostProcessFunc::AddFloatAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. tensorflow/c/tf_status_helper.cc

      status.ForEachPayload(
          [tf_status](absl::string_view key, const absl::Cord& value) {
            std::string key_str(key);
            std::string value_str(value);
            TF_SetPayload(tf_status, key_str.c_str(), value_str.c_str());
          });
    }
    
    absl::Status StatusFromTF_Status(const TF_Status* tf_status) {
      absl::Status status(StatusCodeFromTSLCode(TF_GetCode(tf_status)),
                          TF_Message(tf_status));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

        // Print tensor result.
        fprintf(stdout, "Tensor<type: %s, shape: %s, values: %s>\n",
                TfLiteTypeGetName(out.type), TfLiteTensorDimString(out).c_str(),
                TfLiteTensorString(out).c_str());
      }
    
      if (dump_state) tflite::PrintInterpreterState(interpreter.get());
    
      return 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/abi.go

    			// Parse line.
    			if len(parts) != 3 {
    				log.Fatalf(`%s:%d: invalid symabi: syntax is "%s sym abi"`, file, lineNum, parts[0])
    			}
    			sym, abistr := parts[1], parts[2]
    			abi, valid := obj.ParseABI(abistr)
    			if !valid {
    				log.Fatalf(`%s:%d: invalid symabi: unknown abi "%s"`, file, lineNum, abistr)
    			}
    
    			sym = s.canonicalize(sym)
    
    			// Record for later.
    			if parts[0] == "def" {
    				s.defs[sym] = abi
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParserTest.groovy

        }
    
        def "base version includes the first . separated parts"() {
            expect:
            def version = parse(versionStr)
            version.baseVersion == parse(baseStr)
            version.qualified == qualified
    
            where:
            versionStr        | baseStr     | qualified
            "1.2.3"           | "1.2.3"     | false
            "1.2-3"           | "1.2"       | true
            "1.2-beta_3+0000" | "1.2"       | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top