Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for begin6_ (0.35 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

            if begin is None:
              begin = self._ssa_name('begin')
              self._emit_with_loc('\n{} = arith.constant 0 : index'.format(begin),
                                  node)
            elif begin_ty != TFRTypes.INDEX:
              begin_ = self._ssa_name('begin')
              self._emit_with_loc(
                  '\n{} = arith.index_cast {} : {} to index'.format(
                      begin_, begin, begin_ty), node)
              begin = begin_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/time/time.go

    	month = Month(day / 31)
    	end := int(daysBefore[month+1])
    	var begin int
    	if day >= end {
    		month++
    		begin = end
    	} else {
    		begin = int(daysBefore[month])
    	}
    
    	month++ // because January is 1
    	day = day - begin + 1
    	return
    }
    
    // daysBefore[m] counts the number of days in a non-leap year
    // before month m begins. There is an entry for m=12, counting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

            }
          }
        }
        auto it = simplified_ops.begin();
        while (it != simplified_ops.end()) {
          if (to_remove.contains(*it)) {
            it = simplified_ops.erase(it);
          } else {
            ++it;
          }
        }
        simplified_ops.insert(simplified_ops.end(), to_add.begin(), to_add.end());
      }
    
      // If all ops contain the same subop, then factor it out thanks to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. tensorflow/c/kernels_test.cc

                                                 status);
        EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        EXPECT_TRUE(
            std::equal(std::begin(list), std::end(list), std::begin(values)));
        TF_DeleteStatus(status);
        return static_cast<void*>(s);
      };
    
      AttrValue v;
      int64_t attr_in[] = {1, 2, 3, 4};
      SetAttrValue(gtl::ArraySlice<int64_t>(attr_in, 4), &v);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      ASSERT_EQ(clusters3.size(), 1);
    
      // clusters0 and clusters2 should be the same
      TF_EXPECT_OK(cluster_names_match(*clusters0.begin(), *clusters2.begin()));
    
      // clusters1 and clusters3 should also be the same
      TF_EXPECT_OK(cluster_names_match(*clusters1.begin(), *clusters3.begin()));
    
      // clusters0/2 should differ from clusters1/3
    }
    
    TEST(XlaCompilationTest, ClusterSessionName) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. pkg/apis/certificates/validation/validation_test.go

    Trailing non-PEM content
    `)
    
    	invalidCertificateEmptyPEM = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	// first character is invalid
    	invalidCertificateNonASN1Data = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    MIIBqDCCAU2gAwIBAgIUfbqeieihh/oERbfvRm38XvS/xHAwCgYIKoZIzj0EAwIw
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    //                               begin+step+step, ...}. The values do not
    //                               include end. step defaults to 1.
    //  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.
    //  ValuesIn(container)        - Yields values from a C-style array, an STL
    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                 tflite::SparseIndexVector_Uint16Vector) {
        const auto& inputs = sparse_index_vector.AsUint16Vector()->values;
        std::vector<int32_t> outputs(inputs.size());
        std::transform(inputs.begin(), inputs.end(), outputs.begin(),
                       [](auto x) { return static_cast<int32_t>(x); });
        return outputs;
      } else if (sparse_index_vector.type ==
                 tflite::SparseIndexVector_Uint8Vector) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // Initialize the input and output permutations to the identity.
        std::vector<int> input_permutation(args_by_src_.size());
        std::iota(input_permutation.begin(), input_permutation.end(), 0);
        std::vector<int> output_permutation(results_.size());
        std::iota(output_permutation.begin(), output_permutation.end(), 0);
    
        TF_RETURN_IF_ERROR(
            rewrite_subgraph_fn(arg_source_tensors, &graph_, &input_permutation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. .bazelrc

    # Disable XLA on mobile.
    build:xla     --define=with_xla_support=true # TODO: remove, it's on by default.
    build:android --define=with_xla_support=false
    build:ios     --define=with_xla_support=false
    
    # BEGIN TF REMOTE BUILD EXECUTION OPTIONS
    # Options when using remote execution
    # WARNING: THESE OPTIONS WONT WORK IF YOU DO NOT HAVE PROPER AUTHENTICATION AND PERMISSIONS
    
    # Allow creation of resultstore URLs for any bazel invocation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top